diff --git a/eslint.config.mjs b/eslint.config.mjs index 494a10eb..ca21ce6e 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,5 +1,3 @@ import treesitter from 'eslint-config-treesitter'; -export default [ - ...treesitter, -]; +export default [...treesitter]; diff --git a/grammar.js b/grammar.js index 6cf52131..a378cde7 100644 --- a/grammar.js +++ b/grammar.js @@ -525,6 +525,14 @@ module.exports = grammar({ ctrl_try: _ctrl_try_rule(false), ctrl_try_parenthesized: _ctrl_try_rule(true), + _stmt_let_shortcut: $ => prec.left( + seq( + keyword().let, + field('name', $._variable_name), + field('type', optional($.param_type)), + ), + ), + /// Pipelines pipe_element: $ => @@ -537,6 +545,7 @@ module.exports = grammar({ seq(_env_variable_rule(false, $), $.command), $._ctrl_expression, $.where_command, + alias($._stmt_let_shortcut, $.stmt_let), ), pipe_element_parenthesized: $ => @@ -553,6 +562,7 @@ module.exports = grammar({ $._ctrl_expression_parenthesized, alias($.where_command_parenthesized, $.where_command), + alias($._stmt_let_shortcut, $.stmt_let), ), /// Scope Statements diff --git a/package-lock.json b/package-lock.json index 51c0d188..f9628e24 100644 --- a/package-lock.json +++ b/package-lock.json @@ -275,7 +275,6 @@ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "dev": true, "license": "MIT", - "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -559,7 +558,6 @@ "integrity": "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", diff --git a/src/grammar.json b/src/grammar.json index 81ef837a..606d71a8 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4535,6 +4535,43 @@ } ] }, + "_stmt_let_shortcut": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_variable_name" + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "param_type" + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, "pipe_element": { "type": "CHOICE", "members": [ @@ -4613,6 +4650,15 @@ { "type": "SYMBOL", "name": "where_command" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_stmt_let_shortcut" + }, + "named": true, + "value": "stmt_let" } ] }, @@ -4704,6 +4750,15 @@ }, "named": true, "value": "where_command" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_stmt_let_shortcut" + }, + "named": true, + "value": "stmt_let" } ] }, @@ -17430,6 +17485,14 @@ } ], "conflicts": [ + [ + "_assignment_pattern", + "_stmt_let_shortcut" + ], + [ + "_assignment_pattern_parenthesized", + "_stmt_let_shortcut" + ], [ "_binary_predicate_parenthesized" ], diff --git a/src/node-types.json b/src/node-types.json index 5721d512..b5ef6b42 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3217,6 +3217,10 @@ "type": "redirection", "named": true }, + { + "type": "stmt_let", + "named": true + }, { "type": "val_binary", "named": true @@ -3744,7 +3748,7 @@ }, "value": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "pipeline", diff --git a/src/parser.c b/src/parser.c index 4fefcce0..0c1013cf 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,16 +15,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5204 -#define LARGE_STATE_COUNT 1263 -#define SYMBOL_COUNT 483 +#define STATE_COUNT 5380 +#define LARGE_STATE_COUNT 1271 +#define SYMBOL_COUNT 484 #define ALIAS_COUNT 3 #define TOKEN_COUNT 272 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 64 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 250 +#define PRODUCTION_ID_COUNT 253 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -387,132 +387,133 @@ enum ts_symbol_identifiers { sym__match_pattern_record = 357, sym_ctrl_try = 358, sym_ctrl_try_parenthesized = 359, - sym_pipe_element = 360, - sym_pipe_element_parenthesized = 361, - sym_scope_pattern = 362, - sym_wild_card = 363, - sym__command_list_body = 364, - sym_command_list = 365, - sym_block = 366, - sym__blosure = 367, - sym__where_predicate_lhs_path_head = 368, - sym__where_predicate_lhs = 369, - sym_where_command = 370, - sym_where_command_parenthesized = 371, - sym__binary_predicate = 372, - sym__binary_predicate_parenthesized = 373, - sym_where_predicate = 374, - sym__expression = 375, - sym__expression_parenthesized = 376, - sym_expr_unary = 377, - sym__expr_unary_minus = 378, - sym_expr_binary = 379, - sym_expr_binary_parenthesized = 380, - sym__expr_binary_expression = 381, - sym__expr_binary_expression_parenthesized = 382, - sym_expr_parenthesized = 383, - sym__spread_parenthesized = 384, - sym__expr_parenthesized_immediate = 385, - sym__parenthesized_body = 386, - sym_val_range = 387, - sym__val_range = 388, - sym__immediate_decimal = 389, - sym__value = 390, - sym_val_nothing = 391, - sym_val_bool = 392, - sym__spread_variable = 393, - sym_val_variable = 394, - sym_val_cellpath = 395, - sym_val_number = 396, - sym__val_number_decimal = 397, - sym__val_number = 398, - sym_val_duration = 399, - sym_val_filesize = 400, - sym_val_binary = 401, - sym_val_string = 402, - sym__raw_str = 403, - sym_string_content = 404, - sym__str_double_quotes = 405, - sym__str_single_quotes = 406, - sym__str_back_ticks = 407, - sym_val_interpolated = 408, - sym__inter_single_quotes = 409, - sym__inter_double_quotes = 410, - sym_expr_interpolated = 411, - sym_val_list = 412, - sym__spread_list = 413, - sym_list_body = 414, - sym_val_entry = 415, - sym_val_record = 416, - sym__spread_record = 417, - sym_record_body = 418, - sym_record_entry = 419, - sym__record_key = 420, - sym__table_head = 421, - sym__table_body = 422, - sym_val_table = 423, - sym_val_closure = 424, - sym_cell_path = 425, - sym__path_suffix = 426, - sym_path = 427, - sym_env_var = 428, - sym_command = 429, - sym__command_parenthesized = 430, - sym__cmd_arg = 431, - sym_redirection = 432, - sym__flag = 433, - sym__flag_equals_value = 434, - sym_short_flag = 435, - sym_long_flag = 436, - sym_unquoted = 437, - sym__unquoted_in_list = 438, - sym__unquoted_in_record = 439, - sym__unquoted_with_expr = 440, - sym__unquoted_in_list_with_expr = 441, - sym__unquoted_in_record_with_expr = 442, - sym__unquoted_anonymous_prefix = 443, - sym_comment = 444, - aux_sym_pipeline_repeat1 = 445, - aux_sym_pipeline_parenthesized_repeat1 = 446, - aux_sym__block_body_repeat1 = 447, - aux_sym__block_body_repeat2 = 448, - aux_sym_attribute_list_repeat1 = 449, - aux_sym_attribute_repeat1 = 450, - aux_sym_decl_def_repeat1 = 451, - aux_sym__types_body_repeat1 = 452, - aux_sym__types_body_repeat2 = 453, - aux_sym__types_body_repeat3 = 454, - aux_sym_parameter_parens_repeat1 = 455, - aux_sym_parameter_repeat1 = 456, - aux_sym_parameter_repeat2 = 457, - aux_sym__collection_body_repeat1 = 458, - aux_sym__composite_argument_body_repeat1 = 459, - aux_sym__ctrl_match_body_repeat1 = 460, - aux_sym_match_pattern_repeat1 = 461, - aux_sym__match_pattern_list_body_repeat1 = 462, - aux_sym__match_pattern_record_body_repeat1 = 463, - aux_sym_pipe_element_repeat1 = 464, - aux_sym_pipe_element_repeat2 = 465, - aux_sym_pipe_element_parenthesized_repeat1 = 466, - aux_sym_pipe_element_parenthesized_repeat2 = 467, - aux_sym__command_list_body_repeat1 = 468, - aux_sym__where_predicate_lhs_repeat1 = 469, - aux_sym__parenthesized_body_repeat1 = 470, - aux_sym__parenthesized_body_repeat2 = 471, - aux_sym_val_binary_repeat1 = 472, - aux_sym_string_content_repeat1 = 473, - aux_sym__inter_single_quotes_repeat1 = 474, - aux_sym__inter_double_quotes_repeat1 = 475, - aux_sym_list_body_repeat1 = 476, - aux_sym_record_body_repeat1 = 477, - aux_sym__table_body_repeat1 = 478, - aux_sym__command_parenthesized_repeat1 = 479, - aux_sym__unquoted_with_expr_repeat1 = 480, - aux_sym__unquoted_in_list_with_expr_repeat1 = 481, - aux_sym__unquoted_in_record_with_expr_repeat1 = 482, - anon_alias_sym__head = 483, - anon_alias_sym__prefix = 484, - anon_alias_sym__unit = 485, + sym__stmt_let_shortcut = 360, + sym_pipe_element = 361, + sym_pipe_element_parenthesized = 362, + sym_scope_pattern = 363, + sym_wild_card = 364, + sym__command_list_body = 365, + sym_command_list = 366, + sym_block = 367, + sym__blosure = 368, + sym__where_predicate_lhs_path_head = 369, + sym__where_predicate_lhs = 370, + sym_where_command = 371, + sym_where_command_parenthesized = 372, + sym__binary_predicate = 373, + sym__binary_predicate_parenthesized = 374, + sym_where_predicate = 375, + sym__expression = 376, + sym__expression_parenthesized = 377, + sym_expr_unary = 378, + sym__expr_unary_minus = 379, + sym_expr_binary = 380, + sym_expr_binary_parenthesized = 381, + sym__expr_binary_expression = 382, + sym__expr_binary_expression_parenthesized = 383, + sym_expr_parenthesized = 384, + sym__spread_parenthesized = 385, + sym__expr_parenthesized_immediate = 386, + sym__parenthesized_body = 387, + sym_val_range = 388, + sym__val_range = 389, + sym__immediate_decimal = 390, + sym__value = 391, + sym_val_nothing = 392, + sym_val_bool = 393, + sym__spread_variable = 394, + sym_val_variable = 395, + sym_val_cellpath = 396, + sym_val_number = 397, + sym__val_number_decimal = 398, + sym__val_number = 399, + sym_val_duration = 400, + sym_val_filesize = 401, + sym_val_binary = 402, + sym_val_string = 403, + sym__raw_str = 404, + sym_string_content = 405, + sym__str_double_quotes = 406, + sym__str_single_quotes = 407, + sym__str_back_ticks = 408, + sym_val_interpolated = 409, + sym__inter_single_quotes = 410, + sym__inter_double_quotes = 411, + sym_expr_interpolated = 412, + sym_val_list = 413, + sym__spread_list = 414, + sym_list_body = 415, + sym_val_entry = 416, + sym_val_record = 417, + sym__spread_record = 418, + sym_record_body = 419, + sym_record_entry = 420, + sym__record_key = 421, + sym__table_head = 422, + sym__table_body = 423, + sym_val_table = 424, + sym_val_closure = 425, + sym_cell_path = 426, + sym__path_suffix = 427, + sym_path = 428, + sym_env_var = 429, + sym_command = 430, + sym__command_parenthesized = 431, + sym__cmd_arg = 432, + sym_redirection = 433, + sym__flag = 434, + sym__flag_equals_value = 435, + sym_short_flag = 436, + sym_long_flag = 437, + sym_unquoted = 438, + sym__unquoted_in_list = 439, + sym__unquoted_in_record = 440, + sym__unquoted_with_expr = 441, + sym__unquoted_in_list_with_expr = 442, + sym__unquoted_in_record_with_expr = 443, + sym__unquoted_anonymous_prefix = 444, + sym_comment = 445, + aux_sym_pipeline_repeat1 = 446, + aux_sym_pipeline_parenthesized_repeat1 = 447, + aux_sym__block_body_repeat1 = 448, + aux_sym__block_body_repeat2 = 449, + aux_sym_attribute_list_repeat1 = 450, + aux_sym_attribute_repeat1 = 451, + aux_sym_decl_def_repeat1 = 452, + aux_sym__types_body_repeat1 = 453, + aux_sym__types_body_repeat2 = 454, + aux_sym__types_body_repeat3 = 455, + aux_sym_parameter_parens_repeat1 = 456, + aux_sym_parameter_repeat1 = 457, + aux_sym_parameter_repeat2 = 458, + aux_sym__collection_body_repeat1 = 459, + aux_sym__composite_argument_body_repeat1 = 460, + aux_sym__ctrl_match_body_repeat1 = 461, + aux_sym_match_pattern_repeat1 = 462, + aux_sym__match_pattern_list_body_repeat1 = 463, + aux_sym__match_pattern_record_body_repeat1 = 464, + aux_sym_pipe_element_repeat1 = 465, + aux_sym_pipe_element_repeat2 = 466, + aux_sym_pipe_element_parenthesized_repeat1 = 467, + aux_sym_pipe_element_parenthesized_repeat2 = 468, + aux_sym__command_list_body_repeat1 = 469, + aux_sym__where_predicate_lhs_repeat1 = 470, + aux_sym__parenthesized_body_repeat1 = 471, + aux_sym__parenthesized_body_repeat2 = 472, + aux_sym_val_binary_repeat1 = 473, + aux_sym_string_content_repeat1 = 474, + aux_sym__inter_single_quotes_repeat1 = 475, + aux_sym__inter_double_quotes_repeat1 = 476, + aux_sym_list_body_repeat1 = 477, + aux_sym_record_body_repeat1 = 478, + aux_sym__table_body_repeat1 = 479, + aux_sym__command_parenthesized_repeat1 = 480, + aux_sym__unquoted_with_expr_repeat1 = 481, + aux_sym__unquoted_in_list_with_expr_repeat1 = 482, + aux_sym__unquoted_in_record_with_expr_repeat1 = 483, + anon_alias_sym__head = 484, + anon_alias_sym__prefix = 485, + anon_alias_sym__unit = 486, }; static const char * const ts_symbol_names[] = { @@ -876,6 +877,7 @@ static const char * const ts_symbol_names[] = { [sym__match_pattern_record] = "val_record", [sym_ctrl_try] = "ctrl_try", [sym_ctrl_try_parenthesized] = "ctrl_try", + [sym__stmt_let_shortcut] = "stmt_let", [sym_pipe_element] = "pipe_element", [sym_pipe_element_parenthesized] = "pipe_element", [sym_scope_pattern] = "scope_pattern", @@ -1365,6 +1367,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__match_pattern_record] = sym_val_record, [sym_ctrl_try] = sym_ctrl_try, [sym_ctrl_try_parenthesized] = sym_ctrl_try, + [sym__stmt_let_shortcut] = sym_stmt_let, [sym_pipe_element] = sym_pipe_element, [sym_pipe_element_parenthesized] = sym_pipe_element, [sym_scope_pattern] = sym_scope_pattern, @@ -2934,6 +2937,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__stmt_let_shortcut] = { + .visible = true, + .named = true, + }, [sym_pipe_element] = { .visible = true, .named = true, @@ -3578,249 +3585,252 @@ static const char * const ts_field_names[] = { static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 3}, [2] = {.index = 3, .length = 1}, - [3] = {.index = 4, .length = 1}, - [5] = {.index = 5, .length = 1}, - [6] = {.index = 6, .length = 1}, - [7] = {.index = 7, .length = 1}, - [8] = {.index = 8, .length = 5}, - [9] = {.index = 13, .length = 1}, - [10] = {.index = 14, .length = 1}, - [11] = {.index = 15, .length = 1}, - [12] = {.index = 16, .length = 2}, - [13] = {.index = 18, .length = 1}, - [14] = {.index = 19, .length = 1}, - [15] = {.index = 20, .length = 1}, - [16] = {.index = 21, .length = 1}, - [17] = {.index = 22, .length = 2}, - [18] = {.index = 24, .length = 1}, - [19] = {.index = 25, .length = 6}, + [3] = {.index = 4, .length = 4}, + [4] = {.index = 8, .length = 1}, + [6] = {.index = 9, .length = 1}, + [7] = {.index = 10, .length = 1}, + [8] = {.index = 11, .length = 1}, + [9] = {.index = 12, .length = 5}, + [10] = {.index = 17, .length = 3}, + [11] = {.index = 20, .length = 1}, + [12] = {.index = 21, .length = 1}, + [13] = {.index = 22, .length = 1}, + [14] = {.index = 23, .length = 2}, + [15] = {.index = 25, .length = 1}, + [16] = {.index = 26, .length = 1}, + [17] = {.index = 27, .length = 1}, + [18] = {.index = 28, .length = 1}, + [19] = {.index = 29, .length = 2}, [20] = {.index = 31, .length = 1}, - [21] = {.index = 32, .length = 1}, - [22] = {.index = 32, .length = 1}, - [23] = {.index = 33, .length = 4}, - [24] = {.index = 37, .length = 1}, - [25] = {.index = 38, .length = 1}, - [26] = {.index = 39, .length = 2}, - [27] = {.index = 41, .length = 6}, - [28] = {.index = 47, .length = 1}, - [29] = {.index = 47, .length = 1}, - [30] = {.index = 48, .length = 2}, - [31] = {.index = 50, .length = 5}, - [32] = {.index = 55, .length = 1}, - [33] = {.index = 56, .length = 2}, - [34] = {.index = 58, .length = 1}, - [35] = {.index = 59, .length = 2}, - [36] = {.index = 61, .length = 2}, - [37] = {.index = 63, .length = 1}, - [38] = {.index = 64, .length = 1}, - [40] = {.index = 65, .length = 3}, - [41] = {.index = 68, .length = 3}, - [42] = {.index = 71, .length = 2}, - [43] = {.index = 73, .length = 2}, - [44] = {.index = 75, .length = 6}, - [45] = {.index = 81, .length = 1}, - [46] = {.index = 82, .length = 1}, - [47] = {.index = 83, .length = 1}, - [48] = {.index = 84, .length = 2}, - [49] = {.index = 86, .length = 2}, - [50] = {.index = 88, .length = 6}, - [51] = {.index = 94, .length = 1}, - [52] = {.index = 95, .length = 4}, - [53] = {.index = 99, .length = 1}, - [54] = {.index = 100, .length = 1}, - [55] = {.index = 101, .length = 1}, - [56] = {.index = 102, .length = 1}, - [57] = {.index = 103, .length = 1}, - [58] = {.index = 104, .length = 1}, - [59] = {.index = 105, .length = 1}, - [60] = {.index = 106, .length = 2}, - [61] = {.index = 108, .length = 7}, - [62] = {.index = 115, .length = 1}, - [63] = {.index = 116, .length = 1}, - [64] = {.index = 117, .length = 2}, - [65] = {.index = 119, .length = 5}, - [66] = {.index = 124, .length = 1}, - [67] = {.index = 125, .length = 1}, - [68] = {.index = 126, .length = 1}, - [69] = {.index = 127, .length = 2}, - [70] = {.index = 129, .length = 10}, - [71] = {.index = 139, .length = 3}, - [72] = {.index = 139, .length = 3}, - [73] = {.index = 142, .length = 2}, - [74] = {.index = 142, .length = 2}, - [75] = {.index = 142, .length = 2}, - [76] = {.index = 142, .length = 2}, - [77] = {.index = 144, .length = 2}, - [78] = {.index = 146, .length = 3}, - [79] = {.index = 149, .length = 3}, - [80] = {.index = 152, .length = 3}, - [81] = {.index = 155, .length = 4}, - [82] = {.index = 159, .length = 1}, - [83] = {.index = 160, .length = 1}, - [84] = {.index = 161, .length = 1}, - [85] = {.index = 162, .length = 2}, - [86] = {.index = 164, .length = 1}, - [87] = {.index = 164, .length = 1}, - [88] = {.index = 165, .length = 1}, - [89] = {.index = 166, .length = 4}, - [90] = {.index = 170, .length = 3}, - [91] = {.index = 173, .length = 4}, - [92] = {.index = 177, .length = 2}, - [93] = {.index = 179, .length = 1}, - [94] = {.index = 180, .length = 1}, - [96] = {.index = 179, .length = 1}, - [97] = {.index = 181, .length = 1}, - [98] = {.index = 182, .length = 2}, - [99] = {.index = 184, .length = 1}, - [100] = {.index = 185, .length = 2}, - [101] = {.index = 187, .length = 2}, - [103] = {.index = 189, .length = 2}, - [104] = {.index = 191, .length = 1}, - [105] = {.index = 192, .length = 4}, - [106] = {.index = 196, .length = 1}, - [107] = {.index = 197, .length = 2}, - [108] = {.index = 199, .length = 1}, - [109] = {.index = 200, .length = 2}, - [110] = {.index = 202, .length = 2}, - [111] = {.index = 204, .length = 1}, - [112] = {.index = 197, .length = 2}, - [113] = {.index = 205, .length = 2}, - [114] = {.index = 205, .length = 2}, - [115] = {.index = 205, .length = 2}, - [116] = {.index = 205, .length = 2}, - [117] = {.index = 207, .length = 9}, - [118] = {.index = 216, .length = 6}, - [119] = {.index = 222, .length = 6}, - [120] = {.index = 228, .length = 2}, - [121] = {.index = 230, .length = 1}, - [122] = {.index = 231, .length = 2}, - [123] = {.index = 233, .length = 1}, - [124] = {.index = 234, .length = 2}, - [125] = {.index = 234, .length = 2}, - [126] = {.index = 234, .length = 2}, - [127] = {.index = 234, .length = 2}, - [128] = {.index = 236, .length = 3}, - [129] = {.index = 239, .length = 4}, - [130] = {.index = 243, .length = 4}, - [131] = {.index = 247, .length = 1}, - [132] = {.index = 248, .length = 2}, - [133] = {.index = 250, .length = 5}, - [134] = {.index = 255, .length = 5}, - [135] = {.index = 260, .length = 4}, - [136] = {.index = 264, .length = 3}, - [137] = {.index = 267, .length = 3}, - [138] = {.index = 270, .length = 6}, - [139] = {.index = 276, .length = 6}, - [140] = {.index = 282, .length = 5}, - [141] = {.index = 287, .length = 3}, - [142] = {.index = 290, .length = 3}, - [143] = {.index = 293, .length = 2}, - [144] = {.index = 295, .length = 2}, - [145] = {.index = 297, .length = 2}, - [146] = {.index = 299, .length = 3}, - [147] = {.index = 299, .length = 3}, - [148] = {.index = 302, .length = 3}, - [149] = {.index = 302, .length = 3}, - [150] = {.index = 305, .length = 1}, - [151] = {.index = 306, .length = 1}, - [152] = {.index = 307, .length = 3}, - [153] = {.index = 310, .length = 3}, - [154] = {.index = 313, .length = 3}, - [155] = {.index = 313, .length = 3}, - [156] = {.index = 313, .length = 3}, - [157] = {.index = 313, .length = 3}, - [158] = {.index = 313, .length = 3}, - [159] = {.index = 313, .length = 3}, - [160] = {.index = 313, .length = 3}, - [161] = {.index = 313, .length = 3}, - [162] = {.index = 316, .length = 5}, - [163] = {.index = 321, .length = 4}, - [164] = {.index = 325, .length = 4}, - [165] = {.index = 329, .length = 3}, - [166] = {.index = 332, .length = 1}, - [167] = {.index = 333, .length = 2}, - [168] = {.index = 335, .length = 1}, - [169] = {.index = 336, .length = 1}, - [170] = {.index = 337, .length = 1}, - [171] = {.index = 338, .length = 2}, - [172] = {.index = 340, .length = 2}, - [173] = {.index = 342, .length = 5}, - [174] = {.index = 347, .length = 6}, - [175] = {.index = 353, .length = 1}, - [176] = {.index = 354, .length = 1}, - [177] = {.index = 355, .length = 2}, - [178] = {.index = 357, .length = 2}, - [179] = {.index = 359, .length = 2}, - [180] = {.index = 361, .length = 2}, - [181] = {.index = 363, .length = 2}, - [182] = {.index = 365, .length = 9}, - [183] = {.index = 374, .length = 6}, - [184] = {.index = 380, .length = 9}, - [185] = {.index = 389, .length = 6}, - [186] = {.index = 395, .length = 6}, - [187] = {.index = 401, .length = 6}, - [188] = {.index = 407, .length = 3}, - [189] = {.index = 407, .length = 3}, - [190] = {.index = 410, .length = 1}, - [191] = {.index = 411, .length = 4}, - [192] = {.index = 415, .length = 5}, - [193] = {.index = 420, .length = 5}, - [194] = {.index = 425, .length = 4}, - [195] = {.index = 429, .length = 3}, - [196] = {.index = 432, .length = 3}, - [197] = {.index = 435, .length = 3}, - [198] = {.index = 438, .length = 6}, - [199] = {.index = 444, .length = 2}, - [200] = {.index = 446, .length = 1}, - [201] = {.index = 447, .length = 2}, - [202] = {.index = 449, .length = 2}, - [203] = {.index = 451, .length = 2}, - [204] = {.index = 453, .length = 3}, - [205] = {.index = 456, .length = 3}, - [206] = {.index = 459, .length = 3}, - [207] = {.index = 462, .length = 3}, - [208] = {.index = 465, .length = 3}, - [209] = {.index = 468, .length = 3}, - [210] = {.index = 471, .length = 2}, - [211] = {.index = 473, .length = 2}, - [212] = {.index = 475, .length = 9}, - [213] = {.index = 484, .length = 6}, - [214] = {.index = 490, .length = 6}, - [215] = {.index = 496, .length = 1}, - [216] = {.index = 497, .length = 4}, - [217] = {.index = 501, .length = 5}, - [218] = {.index = 506, .length = 6}, - [219] = {.index = 512, .length = 3}, - [220] = {.index = 515, .length = 3}, - [221] = {.index = 518, .length = 3}, - [222] = {.index = 521, .length = 3}, - [223] = {.index = 524, .length = 3}, - [224] = {.index = 527, .length = 3}, - [225] = {.index = 530, .length = 3}, - [226] = {.index = 533, .length = 3}, - [227] = {.index = 536, .length = 3}, - [228] = {.index = 539, .length = 2}, - [229] = {.index = 541, .length = 2}, - [230] = {.index = 543, .length = 5}, - [231] = {.index = 548, .length = 4}, - [232] = {.index = 552, .length = 3}, - [233] = {.index = 555, .length = 3}, - [234] = {.index = 558, .length = 3}, - [235] = {.index = 561, .length = 3}, - [236] = {.index = 564, .length = 3}, - [237] = {.index = 567, .length = 3}, - [238] = {.index = 570, .length = 3}, - [239] = {.index = 573, .length = 3}, - [240] = {.index = 576, .length = 2}, - [241] = {.index = 578, .length = 5}, - [242] = {.index = 583, .length = 3}, - [243] = {.index = 586, .length = 3}, - [244] = {.index = 589, .length = 3}, - [245] = {.index = 592, .length = 3}, - [246] = {.index = 595, .length = 3}, - [247] = {.index = 598, .length = 3}, - [248] = {.index = 601, .length = 3}, - [249] = {.index = 604, .length = 3}, + [21] = {.index = 32, .length = 6}, + [22] = {.index = 38, .length = 1}, + [23] = {.index = 39, .length = 1}, + [24] = {.index = 39, .length = 1}, + [25] = {.index = 40, .length = 4}, + [26] = {.index = 44, .length = 1}, + [27] = {.index = 45, .length = 1}, + [28] = {.index = 46, .length = 2}, + [29] = {.index = 48, .length = 6}, + [30] = {.index = 54, .length = 1}, + [31] = {.index = 54, .length = 1}, + [32] = {.index = 55, .length = 2}, + [33] = {.index = 57, .length = 5}, + [34] = {.index = 62, .length = 1}, + [35] = {.index = 63, .length = 2}, + [36] = {.index = 65, .length = 4}, + [37] = {.index = 69, .length = 1}, + [38] = {.index = 70, .length = 2}, + [39] = {.index = 72, .length = 2}, + [40] = {.index = 74, .length = 1}, + [41] = {.index = 75, .length = 1}, + [43] = {.index = 76, .length = 3}, + [44] = {.index = 79, .length = 3}, + [45] = {.index = 82, .length = 2}, + [46] = {.index = 84, .length = 2}, + [47] = {.index = 86, .length = 6}, + [48] = {.index = 92, .length = 1}, + [49] = {.index = 93, .length = 1}, + [50] = {.index = 94, .length = 1}, + [51] = {.index = 95, .length = 2}, + [52] = {.index = 97, .length = 2}, + [53] = {.index = 99, .length = 6}, + [54] = {.index = 105, .length = 1}, + [55] = {.index = 106, .length = 4}, + [56] = {.index = 110, .length = 1}, + [57] = {.index = 111, .length = 1}, + [58] = {.index = 112, .length = 1}, + [59] = {.index = 113, .length = 1}, + [60] = {.index = 114, .length = 1}, + [61] = {.index = 115, .length = 1}, + [62] = {.index = 116, .length = 1}, + [63] = {.index = 117, .length = 2}, + [64] = {.index = 119, .length = 7}, + [65] = {.index = 126, .length = 1}, + [66] = {.index = 127, .length = 1}, + [67] = {.index = 128, .length = 2}, + [68] = {.index = 130, .length = 5}, + [69] = {.index = 135, .length = 1}, + [70] = {.index = 136, .length = 1}, + [71] = {.index = 137, .length = 1}, + [72] = {.index = 138, .length = 2}, + [73] = {.index = 140, .length = 10}, + [74] = {.index = 150, .length = 3}, + [75] = {.index = 150, .length = 3}, + [76] = {.index = 153, .length = 2}, + [77] = {.index = 153, .length = 2}, + [78] = {.index = 153, .length = 2}, + [79] = {.index = 153, .length = 2}, + [80] = {.index = 155, .length = 2}, + [81] = {.index = 157, .length = 3}, + [82] = {.index = 160, .length = 3}, + [83] = {.index = 163, .length = 3}, + [84] = {.index = 166, .length = 4}, + [85] = {.index = 170, .length = 1}, + [86] = {.index = 171, .length = 1}, + [87] = {.index = 172, .length = 1}, + [88] = {.index = 173, .length = 2}, + [89] = {.index = 175, .length = 1}, + [90] = {.index = 175, .length = 1}, + [91] = {.index = 176, .length = 1}, + [92] = {.index = 177, .length = 4}, + [93] = {.index = 181, .length = 3}, + [94] = {.index = 184, .length = 4}, + [95] = {.index = 188, .length = 2}, + [96] = {.index = 190, .length = 1}, + [97] = {.index = 191, .length = 1}, + [99] = {.index = 190, .length = 1}, + [100] = {.index = 192, .length = 1}, + [101] = {.index = 193, .length = 2}, + [102] = {.index = 195, .length = 1}, + [103] = {.index = 196, .length = 2}, + [104] = {.index = 198, .length = 2}, + [106] = {.index = 200, .length = 2}, + [107] = {.index = 202, .length = 1}, + [108] = {.index = 203, .length = 4}, + [109] = {.index = 207, .length = 1}, + [110] = {.index = 208, .length = 2}, + [111] = {.index = 210, .length = 1}, + [112] = {.index = 211, .length = 2}, + [113] = {.index = 213, .length = 2}, + [114] = {.index = 215, .length = 1}, + [115] = {.index = 208, .length = 2}, + [116] = {.index = 216, .length = 2}, + [117] = {.index = 216, .length = 2}, + [118] = {.index = 216, .length = 2}, + [119] = {.index = 216, .length = 2}, + [120] = {.index = 218, .length = 9}, + [121] = {.index = 227, .length = 6}, + [122] = {.index = 233, .length = 6}, + [123] = {.index = 239, .length = 2}, + [124] = {.index = 241, .length = 1}, + [125] = {.index = 242, .length = 2}, + [126] = {.index = 244, .length = 1}, + [127] = {.index = 245, .length = 2}, + [128] = {.index = 245, .length = 2}, + [129] = {.index = 245, .length = 2}, + [130] = {.index = 245, .length = 2}, + [131] = {.index = 247, .length = 3}, + [132] = {.index = 250, .length = 4}, + [133] = {.index = 254, .length = 4}, + [134] = {.index = 258, .length = 1}, + [135] = {.index = 259, .length = 2}, + [136] = {.index = 261, .length = 5}, + [137] = {.index = 266, .length = 5}, + [138] = {.index = 271, .length = 4}, + [139] = {.index = 275, .length = 3}, + [140] = {.index = 278, .length = 3}, + [141] = {.index = 281, .length = 6}, + [142] = {.index = 287, .length = 6}, + [143] = {.index = 293, .length = 5}, + [144] = {.index = 298, .length = 3}, + [145] = {.index = 301, .length = 3}, + [146] = {.index = 304, .length = 2}, + [147] = {.index = 306, .length = 2}, + [148] = {.index = 308, .length = 2}, + [149] = {.index = 310, .length = 3}, + [150] = {.index = 310, .length = 3}, + [151] = {.index = 313, .length = 3}, + [152] = {.index = 313, .length = 3}, + [153] = {.index = 316, .length = 1}, + [154] = {.index = 317, .length = 1}, + [155] = {.index = 318, .length = 3}, + [156] = {.index = 321, .length = 3}, + [157] = {.index = 324, .length = 3}, + [158] = {.index = 324, .length = 3}, + [159] = {.index = 324, .length = 3}, + [160] = {.index = 324, .length = 3}, + [161] = {.index = 324, .length = 3}, + [162] = {.index = 324, .length = 3}, + [163] = {.index = 324, .length = 3}, + [164] = {.index = 324, .length = 3}, + [165] = {.index = 327, .length = 5}, + [166] = {.index = 332, .length = 4}, + [167] = {.index = 336, .length = 4}, + [168] = {.index = 340, .length = 3}, + [169] = {.index = 343, .length = 1}, + [170] = {.index = 344, .length = 2}, + [171] = {.index = 346, .length = 1}, + [172] = {.index = 347, .length = 1}, + [173] = {.index = 348, .length = 1}, + [174] = {.index = 349, .length = 2}, + [175] = {.index = 351, .length = 2}, + [176] = {.index = 353, .length = 5}, + [177] = {.index = 358, .length = 6}, + [178] = {.index = 364, .length = 1}, + [179] = {.index = 365, .length = 1}, + [180] = {.index = 366, .length = 2}, + [181] = {.index = 368, .length = 2}, + [182] = {.index = 370, .length = 2}, + [183] = {.index = 372, .length = 2}, + [184] = {.index = 374, .length = 2}, + [185] = {.index = 376, .length = 9}, + [186] = {.index = 385, .length = 6}, + [187] = {.index = 391, .length = 9}, + [188] = {.index = 400, .length = 6}, + [189] = {.index = 406, .length = 6}, + [190] = {.index = 412, .length = 6}, + [191] = {.index = 418, .length = 3}, + [192] = {.index = 418, .length = 3}, + [193] = {.index = 421, .length = 1}, + [194] = {.index = 422, .length = 4}, + [195] = {.index = 426, .length = 5}, + [196] = {.index = 431, .length = 5}, + [197] = {.index = 436, .length = 4}, + [198] = {.index = 440, .length = 3}, + [199] = {.index = 443, .length = 3}, + [200] = {.index = 446, .length = 3}, + [201] = {.index = 449, .length = 6}, + [202] = {.index = 455, .length = 2}, + [203] = {.index = 457, .length = 1}, + [204] = {.index = 458, .length = 2}, + [205] = {.index = 460, .length = 2}, + [206] = {.index = 462, .length = 2}, + [207] = {.index = 464, .length = 3}, + [208] = {.index = 467, .length = 3}, + [209] = {.index = 470, .length = 3}, + [210] = {.index = 473, .length = 3}, + [211] = {.index = 476, .length = 3}, + [212] = {.index = 479, .length = 3}, + [213] = {.index = 482, .length = 2}, + [214] = {.index = 484, .length = 2}, + [215] = {.index = 486, .length = 9}, + [216] = {.index = 495, .length = 6}, + [217] = {.index = 501, .length = 6}, + [218] = {.index = 507, .length = 1}, + [219] = {.index = 508, .length = 4}, + [220] = {.index = 512, .length = 5}, + [221] = {.index = 517, .length = 6}, + [222] = {.index = 523, .length = 3}, + [223] = {.index = 526, .length = 3}, + [224] = {.index = 529, .length = 3}, + [225] = {.index = 532, .length = 3}, + [226] = {.index = 535, .length = 3}, + [227] = {.index = 538, .length = 3}, + [228] = {.index = 541, .length = 3}, + [229] = {.index = 544, .length = 3}, + [230] = {.index = 547, .length = 3}, + [231] = {.index = 550, .length = 2}, + [232] = {.index = 552, .length = 2}, + [233] = {.index = 554, .length = 5}, + [234] = {.index = 559, .length = 4}, + [235] = {.index = 563, .length = 3}, + [236] = {.index = 566, .length = 3}, + [237] = {.index = 569, .length = 3}, + [238] = {.index = 572, .length = 3}, + [239] = {.index = 575, .length = 3}, + [240] = {.index = 578, .length = 3}, + [241] = {.index = 581, .length = 3}, + [242] = {.index = 584, .length = 3}, + [243] = {.index = 587, .length = 2}, + [244] = {.index = 589, .length = 5}, + [245] = {.index = 594, .length = 3}, + [246] = {.index = 597, .length = 3}, + [247] = {.index = 600, .length = 3}, + [248] = {.index = 603, .length = 3}, + [249] = {.index = 606, .length = 3}, + [250] = {.index = 609, .length = 3}, + [251] = {.index = 612, .length = 3}, + [252] = {.index = 615, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3831,164 +3841,178 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [3] = {field_head, 0}, [4] = + {field_dollar_name, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_var_name, 0, .inherited = true}, + [8] = {field_expr, 0, .inherited = true}, - [5] = + [9] = {field_unquoted_name, 0}, - [6] = + [10] = {field_quoted_name, 0}, - [7] = + [11] = {field_var_name, 0}, - [8] = + [12] = {field_dollar_name, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_type, 1, .inherited = true}, {field_value, 1, .inherited = true}, {field_var_name, 1, .inherited = true}, - [13] = + [17] = + {field_dollar_name, 1, .inherited = true}, + {field_name, 1}, + {field_var_name, 1, .inherited = true}, + [20] = {field_dollar_name, 0}, - [14] = + [21] = {field_module, 1}, - [15] = + [22] = {field_body, 1}, - [16] = + [23] = {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [18] = + [25] = {field_try_branch, 1}, - [19] = + [26] = {field_type, 1}, - [20] = + [27] = {field_item, 0}, - [21] = + [28] = {field_spread, 0}, - [22] = + [29] = {field_name, 0, .inherited = true}, {field_spread, 0}, - [24] = + [31] = {field_entry, 0}, - [25] = + [32] = {field_arg, 0, .inherited = true}, {field_arg_spread, 0, .inherited = true}, {field_arg_str, 0, .inherited = true}, {field_flag, 0, .inherited = true}, {field_head, 0, .inherited = true}, {field_redir, 0, .inherited = true}, - [31] = + [38] = {field_name, 1}, - [32] = + [39] = {field_end, 1}, - [33] = + [40] = {field_lhs, 1, .inherited = true}, {field_opr, 1, .inherited = true}, {field_predicate, 1}, {field_rhs, 1, .inherited = true}, - [37] = + [44] = {field_predicate, 1}, - [38] = + [45] = {field_expr, 0}, - [39] = + [46] = {field_head, 0}, {field_head, 1}, - [41] = + [48] = {field_arg, 1, .inherited = true}, {field_arg_spread, 1, .inherited = true}, {field_arg_str, 1, .inherited = true}, {field_flag, 1, .inherited = true}, {field_head, 0}, {field_redir, 1, .inherited = true}, - [47] = + [54] = {field_start, 0}, - [48] = + [55] = {field_unit, 1}, {field_value, 0}, - [50] = + [57] = {field_dollar_name, 2, .inherited = true}, {field_name, 2, .inherited = true}, {field_type, 2, .inherited = true}, {field_value, 2, .inherited = true}, {field_var_name, 2, .inherited = true}, - [55] = + [62] = {field_module, 2}, - [56] = + [63] = {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [58] = + [65] = + {field_dollar_name, 1, .inherited = true}, + {field_name, 1}, + {field_type, 2}, + {field_var_name, 1, .inherited = true}, + [69] = {field_value, 1, .inherited = true}, - [59] = + [70] = {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [61] = + [72] = {field_import_pattern, 2}, {field_module, 1}, - [63] = + [74] = {field_wildcard, 0}, - [64] = + [75] = {field_command_list, 0}, - [65] = + [76] = {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [68] = + [79] = {field_body, 2}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [71] = + [82] = {field_body, 2}, {field_condition, 1}, - [73] = + [84] = {field_condition, 1}, {field_then_branch, 2}, - [75] = + [86] = {field_arg, 2, .inherited = true}, {field_arg_spread, 2, .inherited = true}, {field_arg_str, 2, .inherited = true}, {field_flag, 2, .inherited = true}, {field_redir, 2, .inherited = true}, {field_type, 1}, - [81] = + [92] = {field_head, 1, .inherited = true}, - [82] = + [93] = {field_row, 0}, - [83] = + [94] = {field_entry, 1}, - [84] = + [95] = {field_entry, 0, .inherited = true}, {field_entry, 1}, - [86] = + [97] = {field_entry, 0, .inherited = true}, {field_entry, 1, .inherited = true}, - [88] = + [99] = {field_arg, 1, .inherited = true}, {field_arg_spread, 1, .inherited = true}, {field_arg_str, 1, .inherited = true}, {field_flag, 1, .inherited = true}, {field_head, 1, .inherited = true}, {field_redir, 1, .inherited = true}, - [94] = + [105] = {field_param_name, 0}, - [95] = + [106] = {field_param_name, 0, .inherited = true}, {field_param_optional, 0, .inherited = true}, {field_param_rest, 0, .inherited = true}, {field_param_short_flag, 0, .inherited = true}, - [99] = + [110] = {field_param_rest, 0}, - [100] = + [111] = {field_param_optional, 0}, - [101] = + [112] = {field_param_long_flag, 0}, - [102] = + [113] = {field_param_short_flag, 0}, - [103] = + [114] = {field_parameters, 1}, - [104] = + [115] = {field_digit, 0}, - [105] = + [116] = {field_expr, 1, .inherited = true}, - [106] = + [117] = {field_expr, 0, .inherited = true}, {field_expr, 1, .inherited = true}, - [108] = + [119] = {field_arg, 2, .inherited = true}, {field_arg_spread, 2, .inherited = true}, {field_arg_str, 2, .inherited = true}, @@ -3996,29 +4020,29 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_head, 0}, {field_head, 1}, {field_redir, 2, .inherited = true}, - [115] = + [126] = {field_arg, 0}, - [116] = + [127] = {field_arg_spread, 0}, - [117] = + [128] = {field_arg_spread, 0}, {field_name, 0, .inherited = true}, - [119] = + [130] = {field_arg, 1, .inherited = true}, {field_arg_spread, 1, .inherited = true}, {field_arg_str, 1, .inherited = true}, {field_flag, 1, .inherited = true}, {field_redir, 1, .inherited = true}, - [124] = + [135] = {field_redir, 0}, - [125] = + [136] = {field_flag, 0}, - [126] = + [137] = {field_arg_str, 0}, - [127] = + [138] = {field_value, 2}, {field_variable, 0}, - [129] = + [140] = {field_arg, 0, .inherited = true}, {field_arg, 1, .inherited = true}, {field_arg_spread, 0, .inherited = true}, @@ -4029,109 +4053,109 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_flag, 1, .inherited = true}, {field_redir, 0, .inherited = true}, {field_redir, 1, .inherited = true}, - [139] = + [150] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 2}, - [142] = + [153] = {field_end, 2}, {field_start, 0}, - [144] = + [155] = {field_import_pattern, 3}, {field_module, 2}, - [146] = + [157] = {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [149] = + [160] = {field_body, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [152] = + [163] = {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_value, 3}, - [155] = + [166] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_value, 2}, {field_var_name, 0, .inherited = true}, - [159] = + [170] = {field_flat_type, 0}, - [160] = + [171] = {field_type, 1, .inherited = true}, - [161] = + [172] = {field_type, 0}, - [162] = + [173] = {field_name, 1}, {field_value, 2, .inherited = true}, - [164] = + [175] = {field_value, 1}, - [165] = + [176] = {field_type, 0, .inherited = true}, - [166] = + [177] = {field_body, 3}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [170] = + [181] = {field_cmd, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [173] = + [184] = {field_body, 3}, {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [177] = + [188] = {field_catch_branch, 3}, {field_try_branch, 1}, - [179] = + [190] = {field_scrutinee, 1}, - [180] = + [191] = {field_rest, 0, .inherited = true}, - [181] = + [192] = {field_head, 1}, - [182] = + [193] = {field_head, 1, .inherited = true}, {field_row, 2, .inherited = true}, - [184] = + [195] = {field_row, 1}, - [185] = + [196] = {field_row, 0, .inherited = true}, {field_row, 1}, - [187] = + [198] = {field_row, 0, .inherited = true}, {field_row, 1, .inherited = true}, - [189] = + [200] = {field_entry, 1, .inherited = true}, {field_entry, 2}, - [191] = + [202] = {field_try_branch, 2}, - [192] = + [203] = {field_lhs, 2, .inherited = true}, {field_opr, 2, .inherited = true}, {field_predicate, 2}, {field_rhs, 2, .inherited = true}, - [196] = + [207] = {field_predicate, 2}, - [197] = + [208] = {field_key, 0}, {field_value, 2}, - [199] = + [210] = {field_name, 0}, - [200] = + [211] = {field_param_name, 0}, {field_param_name, 1}, - [202] = + [213] = {field_flag_capsule, 1}, {field_param_long_flag, 0}, - [204] = + [215] = {field_parameters, 2}, - [205] = + [216] = {field_end, 3}, {field_step, 1}, - [207] = + [218] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 2, .inherited = true}, @@ -4141,208 +4165,208 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [216] = + [227] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 1}, {field_rhs, 0, .inherited = true}, {field_rhs, 2}, - [222] = + [233] = {field_lhs, 0}, {field_lhs, 2, .inherited = true}, {field_opr, 1}, {field_opr, 2, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [228] = + [239] = {field_digit, 0}, {field_digit, 1}, - [230] = + [241] = {field_digit, 2, .inherited = true}, - [231] = + [242] = {field_digit, 0, .inherited = true}, {field_digit, 1, .inherited = true}, - [233] = + [244] = {field_file_path, 2}, - [234] = + [245] = {field_start, 0}, {field_step, 2}, - [236] = + [247] = {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_value, 4}, - [239] = + [250] = {field_body, 4}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [243] = + [254] = {field_body, 4}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [247] = + [258] = {field_type, 2, .inherited = true}, - [248] = + [259] = {field_completion, 2}, {field_type, 1, .inherited = true}, - [250] = + [261] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_type, 1}, {field_value, 3}, {field_var_name, 0, .inherited = true}, - [255] = + [266] = {field_body, 4}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 3}, {field_unquoted_name, 1, .inherited = true}, - [260] = + [271] = {field_body, 4}, {field_parameters, 3}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [264] = + [275] = {field_cmd, 1, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [267] = + [278] = {field_cmd, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [270] = + [281] = {field_cmd, 0, .inherited = true}, {field_cmd, 1}, {field_quoted_name, 0, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [276] = + [287] = {field_cmd, 0, .inherited = true}, {field_cmd, 1, .inherited = true}, {field_quoted_name, 0, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [282] = + [293] = {field_body, 4}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [287] = + [298] = {field_condition, 1}, {field_else_branch, 4}, {field_then_branch, 2}, - [290] = + [301] = {field_condition, 1}, {field_else_block, 4}, {field_then_branch, 2}, - [293] = + [304] = {field_row, 1, .inherited = true}, {field_row, 2}, - [295] = + [306] = {field_condition, 2}, {field_then_branch, 3}, - [297] = + [308] = {field_condition, 1}, {field_then_branch, 3}, - [299] = + [310] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 3}, - [302] = + [313] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 3}, - [305] = + [316] = {field_name, 2}, - [306] = + [317] = {field_param_value, 1}, - [307] = + [318] = {field_key, 0}, {field_key, 1}, {field_value, 3}, - [310] = + [321] = {field_quoted_name, 3, .inherited = true}, {field_signature, 4}, {field_unquoted_name, 3, .inherited = true}, - [313] = + [324] = {field_end, 4}, {field_start, 0}, {field_step, 2}, - [316] = + [327] = {field_body, 5}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 2, .inherited = true}, - [321] = + [332] = {field_body, 5}, {field_parameters, 4}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [325] = + [336] = {field_body, 5}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [329] = + [340] = {field_completion, 0, .inherited = true}, {field_key, 0, .inherited = true}, {field_type, 0, .inherited = true}, - [332] = + [343] = {field_key, 0}, - [333] = + [344] = {field_completion, 3}, {field_type, 2, .inherited = true}, - [335] = + [346] = {field_command, 1}, - [336] = + [347] = {field_constant, 1}, - [337] = + [348] = {field_type, 3, .inherited = true}, - [338] = + [349] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [340] = + [351] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [342] = + [353] = {field_body, 5}, {field_parameters, 3}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 1, .inherited = true}, - [347] = + [358] = {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}, - [353] = + [364] = {field_rest, 1}, - [354] = + [365] = {field_entry, 1, .inherited = true}, - [355] = + [366] = {field_default_pattern, 0}, {field_expression, 2}, - [357] = + [368] = {field_expression, 2}, {field_pattern, 0}, - [359] = + [370] = {field_condition, 2}, {field_then_branch, 4}, - [361] = + [372] = {field_catch_branch, 4}, {field_try_branch, 2}, - [363] = + [374] = {field_catch_branch, 4}, {field_try_branch, 1}, - [365] = + [376] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4352,14 +4376,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [374] = + [385] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 1}, {field_rhs, 0, .inherited = true}, {field_rhs, 3}, - [380] = + [391] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4369,119 +4393,119 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [389] = + [400] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 2}, {field_rhs, 0, .inherited = true}, {field_rhs, 3}, - [395] = + [406] = {field_lhs, 0}, {field_lhs, 3, .inherited = true}, {field_opr, 1}, {field_opr, 3, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [401] = + [412] = {field_lhs, 0}, {field_lhs, 3, .inherited = true}, {field_opr, 2}, {field_opr, 3, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [407] = + [418] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 4}, - [410] = + [421] = {field_param_value, 2}, - [411] = + [422] = {field_body, 5}, {field_quoted_name, 3, .inherited = true}, {field_signature, 4}, {field_unquoted_name, 3, .inherited = true}, - [415] = + [426] = {field_body, 6}, {field_parameters, 4}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 2, .inherited = true}, - [420] = + [431] = {field_body, 6}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 3, .inherited = true}, - [425] = + [436] = {field_body, 6}, {field_parameters, 5}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [429] = + [440] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [432] = + [443] = {field_completion, 1, .inherited = true}, {field_key, 0}, {field_type, 1, .inherited = true}, - [435] = + [446] = {field_completion, 1, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 1, .inherited = true}, - [438] = + [449] = {field_completion, 0, .inherited = true}, {field_completion, 1, .inherited = true}, {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [444] = + [455] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [446] = + [457] = {field_completion, 2}, - [447] = + [458] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [449] = + [460] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [451] = + [462] = {field_entry, 1, .inherited = true}, {field_rest, 2}, - [453] = + [464] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [456] = + [467] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [459] = + [470] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [462] = + [473] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [465] = + [476] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [468] = + [479] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [471] = + [482] = {field_catch_branch, 5}, {field_try_branch, 2}, - [473] = + [484] = {field_catch_branch, 5}, {field_try_branch, 1}, - [475] = + [486] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4491,163 +4515,163 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [484] = + [495] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 2}, {field_rhs, 0, .inherited = true}, {field_rhs, 4}, - [490] = + [501] = {field_lhs, 0}, {field_lhs, 4, .inherited = true}, {field_opr, 2}, {field_opr, 4, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [496] = + [507] = {field_param_value, 3}, - [497] = + [508] = {field_body, 6}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [501] = + [512] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 3, .inherited = true}, - [506] = + [517] = {field_completion, 1, .inherited = true}, {field_completion, 2, .inherited = true}, {field_key, 1, .inherited = true}, {field_key, 2, .inherited = true}, {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [512] = + [523] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [515] = + [526] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [518] = + [529] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [521] = + [532] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [524] = + [535] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [527] = + [538] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [530] = + [541] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [533] = + [544] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [536] = + [547] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [539] = + [550] = {field_catch_branch, 6}, {field_try_branch, 2}, - [541] = + [552] = {field_catch_branch, 6}, {field_try_branch, 1}, - [543] = + [554] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 4, .inherited = true}, - [548] = + [559] = {field_body, 7}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [552] = + [563] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [555] = + [566] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [558] = + [569] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [561] = + [572] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [564] = + [575] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [567] = + [578] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [570] = + [581] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [573] = + [584] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [576] = + [587] = {field_catch_branch, 7}, {field_try_branch, 2}, - [578] = + [589] = {field_body, 8}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 7}, {field_unquoted_name, 4, .inherited = true}, - [583] = + [594] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [586] = + [597] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [589] = + [600] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [592] = + [603] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [595] = + [606] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [598] = + [609] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [601] = + [612] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [604] = + [615] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, @@ -4655,123 +4679,123 @@ static const TSFieldMapEntry ts_field_map_entries[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [4] = { + [5] = { [0] = anon_alias_sym__prefix, }, - [22] = { + [24] = { [1] = sym_val_number, }, - [23] = { + [25] = { [1] = sym_where_predicate, }, - [29] = { + [31] = { [0] = sym_val_number, }, - [30] = { + [32] = { [0] = sym_val_number, }, - [39] = { + [42] = { [1] = anon_alias_sym__unit, }, - [68] = { + [71] = { [0] = sym_val_string, }, - [69] = { + [72] = { [0] = sym_identifier, }, - [72] = { + [75] = { [2] = sym_val_string, }, - [74] = { + [77] = { [2] = sym_val_number, }, - [75] = { + [78] = { [0] = sym_val_number, }, - [76] = { + [79] = { [0] = sym_val_number, [2] = sym_val_number, }, - [87] = { + [90] = { [1] = sym_val_string, }, - [95] = { + [98] = { [0] = sym_val_string, }, - [96] = { + [99] = { [1] = sym_val_string, }, - [102] = { + [105] = { [0] = anon_alias_sym__head, }, - [105] = { + [108] = { [2] = sym_where_predicate, }, - [107] = { + [110] = { [0] = sym_identifier, }, - [114] = { + [117] = { [3] = sym_val_number, }, - [115] = { + [118] = { [1] = sym_val_number, }, - [116] = { + [119] = { [1] = sym_val_number, [3] = sym_val_number, }, - [125] = { + [128] = { [2] = sym_val_number, }, - [126] = { + [129] = { [0] = sym_val_number, }, - [127] = { + [130] = { [0] = sym_val_number, [2] = sym_val_number, }, - [147] = { + [150] = { [3] = sym_val_string, }, - [149] = { + [152] = { [3] = sym_val_string, }, - [152] = { + [155] = { [0] = sym_identifier, }, - [155] = { + [158] = { [4] = sym_val_number, }, - [156] = { + [159] = { [2] = sym_val_number, }, - [157] = { + [160] = { [2] = sym_val_number, [4] = sym_val_number, }, - [158] = { + [161] = { [0] = sym_val_number, }, - [159] = { + [162] = { [0] = sym_val_number, [4] = sym_val_number, }, - [160] = { + [163] = { [0] = sym_val_number, [2] = sym_val_number, }, - [161] = { + [164] = { [0] = sym_val_number, [2] = sym_val_number, [4] = sym_val_number, }, - [166] = { + [169] = { [0] = sym_identifier, }, - [189] = { + [192] = { [4] = sym_val_string, }, - [196] = { + [199] = { [0] = sym_identifier, }, }; @@ -4818,28 +4842,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 4, - [5] = 4, - [6] = 3, - [7] = 4, - [8] = 3, - [9] = 4, - [10] = 4, - [11] = 4, - [12] = 4, - [13] = 4, - [14] = 4, - [15] = 4, + [5] = 3, + [6] = 4, + [7] = 3, + [8] = 4, + [9] = 3, + [10] = 3, + [11] = 3, + [12] = 3, + [13] = 3, + [14] = 3, + [15] = 3, [16] = 16, [17] = 16, - [18] = 16, - [19] = 16, + [18] = 18, + [19] = 18, [20] = 16, - [21] = 21, - [22] = 22, - [23] = 16, - [24] = 22, + [21] = 16, + [22] = 16, + [23] = 23, + [24] = 23, [25] = 16, - [26] = 21, + [26] = 16, [27] = 27, [28] = 27, [29] = 27, @@ -4851,163 +4875,163 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [35] = 35, [36] = 36, [37] = 37, - [38] = 38, - [39] = 36, - [40] = 37, - [41] = 38, + [38] = 37, + [39] = 39, + [40] = 35, + [41] = 39, [42] = 42, - [43] = 35, - [44] = 44, - [45] = 42, + [43] = 43, + [44] = 36, + [45] = 37, [46] = 35, - [47] = 36, - [48] = 38, - [49] = 42, - [50] = 35, - [51] = 36, - [52] = 36, - [53] = 42, - [54] = 35, - [55] = 44, + [47] = 42, + [48] = 43, + [49] = 36, + [50] = 42, + [51] = 37, + [52] = 52, + [53] = 37, + [54] = 42, + [55] = 43, [56] = 36, - [57] = 42, - [58] = 35, - [59] = 44, + [57] = 37, + [58] = 42, + [59] = 43, [60] = 36, - [61] = 42, - [62] = 35, - [63] = 44, - [64] = 42, - [65] = 35, - [66] = 44, - [67] = 35, - [68] = 35, - [69] = 44, - [70] = 35, - [71] = 71, - [72] = 36, - [73] = 44, + [61] = 37, + [62] = 42, + [63] = 43, + [64] = 36, + [65] = 42, + [66] = 43, + [67] = 36, + [68] = 43, + [69] = 43, + [70] = 43, + [71] = 43, + [72] = 37, + [73] = 43, [74] = 74, [75] = 75, - [76] = 74, + [76] = 76, [77] = 77, - [78] = 75, - [79] = 74, - [80] = 80, - [81] = 80, + [78] = 76, + [79] = 75, + [80] = 75, + [81] = 77, [82] = 82, [83] = 83, - [84] = 82, + [84] = 83, [85] = 85, - [86] = 85, - [87] = 82, + [86] = 86, + [87] = 83, [88] = 88, - [89] = 85, - [90] = 90, + [89] = 88, + [90] = 88, [91] = 91, [92] = 92, [93] = 93, - [94] = 92, + [94] = 94, [95] = 92, [96] = 93, [97] = 93, - [98] = 98, + [98] = 92, [99] = 99, - [100] = 92, - [101] = 93, + [100] = 93, + [101] = 92, [102] = 99, - [103] = 103, - [104] = 93, + [103] = 93, + [104] = 92, [105] = 105, - [106] = 106, - [107] = 98, + [106] = 99, + [107] = 107, [108] = 108, [109] = 109, - [110] = 92, - [111] = 99, - [112] = 98, + [110] = 94, + [111] = 94, + [112] = 94, [113] = 99, - [114] = 98, + [114] = 114, [115] = 115, - [116] = 115, - [117] = 105, - [118] = 106, - [119] = 99, - [120] = 120, - [121] = 115, - [122] = 98, - [123] = 108, - [124] = 108, - [125] = 105, - [126] = 106, - [127] = 108, - [128] = 103, - [129] = 105, - [130] = 92, - [131] = 93, - [132] = 115, - [133] = 106, - [134] = 108, - [135] = 98, - [136] = 115, - [137] = 105, - [138] = 106, - [139] = 99, - [140] = 105, - [141] = 115, + [116] = 109, + [117] = 94, + [118] = 108, + [119] = 107, + [120] = 108, + [121] = 99, + [122] = 107, + [123] = 114, + [124] = 114, + [125] = 108, + [126] = 107, + [127] = 109, + [128] = 93, + [129] = 129, + [130] = 115, + [131] = 92, + [132] = 109, + [133] = 114, + [134] = 107, + [135] = 114, + [136] = 94, + [137] = 108, + [138] = 99, + [139] = 109, + [140] = 107, + [141] = 114, [142] = 108, - [143] = 106, + [143] = 109, [144] = 144, - [145] = 144, - [146] = 144, + [145] = 145, + [146] = 146, [147] = 147, - [148] = 144, - [149] = 147, - [150] = 147, - [151] = 147, + [148] = 145, + [149] = 149, + [150] = 150, + [151] = 151, [152] = 152, - [153] = 153, - [154] = 153, + [153] = 146, + [154] = 152, [155] = 155, - [156] = 152, - [157] = 157, + [156] = 149, + [157] = 149, [158] = 158, - [159] = 159, - [160] = 157, - [161] = 161, - [162] = 162, - [163] = 163, - [164] = 164, - [165] = 158, - [166] = 153, - [167] = 155, - [168] = 152, - [169] = 157, - [170] = 158, - [171] = 161, - [172] = 144, - [173] = 147, - [174] = 153, - [175] = 155, - [176] = 152, - [177] = 157, - [178] = 158, - [179] = 162, - [180] = 159, - [181] = 163, - [182] = 164, - [183] = 155, - [184] = 184, - [185] = 184, + [159] = 149, + [160] = 144, + [161] = 158, + [162] = 150, + [163] = 150, + [164] = 151, + [165] = 144, + [166] = 152, + [167] = 151, + [168] = 146, + [169] = 152, + [170] = 146, + [171] = 158, + [172] = 150, + [173] = 158, + [174] = 144, + [175] = 175, + [176] = 151, + [177] = 177, + [178] = 155, + [179] = 175, + [180] = 177, + [181] = 147, + [182] = 182, + [183] = 183, + [184] = 182, + [185] = 182, [186] = 186, - [187] = 187, - [188] = 184, - [189] = 144, - [190] = 147, - [191] = 184, - [192] = 187, - [193] = 193, - [194] = 103, + [187] = 158, + [188] = 188, + [189] = 182, + [190] = 144, + [191] = 188, + [192] = 158, + [193] = 144, + [194] = 115, [195] = 195, [196] = 196, [197] = 197, @@ -5017,11 +5041,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [201] = 201, [202] = 202, [203] = 203, - [204] = 204, + [204] = 195, [205] = 205, [206] = 206, [207] = 207, - [208] = 195, + [208] = 208, [209] = 209, [210] = 210, [211] = 211, @@ -5031,121 +5055,121 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [215] = 215, [216] = 216, [217] = 217, - [218] = 196, - [219] = 219, + [218] = 218, + [219] = 196, [220] = 197, - [221] = 205, - [222] = 222, - [223] = 198, - [224] = 199, - [225] = 200, - [226] = 201, - [227] = 202, - [228] = 203, - [229] = 204, - [230] = 222, - [231] = 206, - [232] = 207, - [233] = 195, - [234] = 219, - [235] = 210, - [236] = 211, - [237] = 212, - [238] = 213, - [239] = 214, - [240] = 215, - [241] = 216, - [242] = 217, + [221] = 197, + [222] = 198, + [223] = 199, + [224] = 200, + [225] = 201, + [226] = 202, + [227] = 203, + [228] = 205, + [229] = 206, + [230] = 207, + [231] = 208, + [232] = 209, + [233] = 210, + [234] = 211, + [235] = 212, + [236] = 236, + [237] = 213, + [238] = 214, + [239] = 215, + [240] = 216, + [241] = 217, + [242] = 218, [243] = 196, - [244] = 219, - [245] = 197, - [246] = 205, - [247] = 222, - [248] = 198, - [249] = 199, - [250] = 200, - [251] = 201, - [252] = 202, - [253] = 203, - [254] = 204, - [255] = 206, - [256] = 207, - [257] = 209, - [258] = 210, - [259] = 211, - [260] = 212, - [261] = 213, - [262] = 214, - [263] = 215, - [264] = 216, - [265] = 217, - [266] = 209, + [244] = 198, + [245] = 199, + [246] = 200, + [247] = 201, + [248] = 202, + [249] = 203, + [250] = 195, + [251] = 205, + [252] = 206, + [253] = 207, + [254] = 208, + [255] = 209, + [256] = 210, + [257] = 211, + [258] = 212, + [259] = 236, + [260] = 213, + [261] = 214, + [262] = 215, + [263] = 216, + [264] = 217, + [265] = 218, + [266] = 236, [267] = 92, [268] = 93, [269] = 92, [270] = 93, - [271] = 93, - [272] = 92, - [273] = 98, + [271] = 92, + [272] = 93, + [273] = 99, [274] = 274, - [275] = 275, - [276] = 274, - [277] = 92, - [278] = 93, + [275] = 99, + [276] = 94, + [277] = 94, + [278] = 278, [279] = 99, [280] = 280, - [281] = 280, - [282] = 99, - [283] = 275, - [284] = 98, - [285] = 274, - [286] = 99, - [287] = 280, + [281] = 94, + [282] = 278, + [283] = 280, + [284] = 93, + [285] = 278, + [286] = 280, + [287] = 92, [288] = 274, - [289] = 275, + [289] = 274, [290] = 280, - [291] = 274, - [292] = 280, - [293] = 98, - [294] = 115, - [295] = 99, - [296] = 93, - [297] = 108, - [298] = 105, - [299] = 108, - [300] = 106, - [301] = 106, - [302] = 106, - [303] = 105, - [304] = 108, - [305] = 105, - [306] = 115, - [307] = 115, - [308] = 92, - [309] = 98, - [310] = 98, - [311] = 115, - [312] = 105, - [313] = 106, - [314] = 108, - [315] = 99, - [316] = 105, - [317] = 106, + [291] = 278, + [292] = 278, + [293] = 280, + [294] = 93, + [295] = 94, + [296] = 92, + [297] = 109, + [298] = 107, + [299] = 107, + [300] = 108, + [301] = 108, + [302] = 109, + [303] = 107, + [304] = 99, + [305] = 114, + [306] = 114, + [307] = 114, + [308] = 108, + [309] = 109, + [310] = 94, + [311] = 99, + [312] = 109, + [313] = 108, + [314] = 107, + [315] = 114, + [316] = 114, + [317] = 107, [318] = 108, - [319] = 115, + [319] = 109, [320] = 320, [321] = 320, [322] = 320, - [323] = 147, + [323] = 158, [324] = 144, [325] = 144, - [326] = 147, - [327] = 147, - [328] = 144, - [329] = 147, + [326] = 144, + [327] = 158, + [328] = 158, + [329] = 158, [330] = 144, - [331] = 144, - [332] = 147, + [331] = 158, + [332] = 144, [333] = 333, [334] = 334, [335] = 333, @@ -5153,175 +5177,175 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [337] = 336, [338] = 338, [339] = 339, - [340] = 340, - [341] = 341, + [340] = 338, + [341] = 338, [342] = 342, [343] = 343, - [344] = 341, - [345] = 345, - [346] = 342, - [347] = 345, - [348] = 345, + [344] = 338, + [345] = 338, + [346] = 346, + [347] = 347, + [348] = 348, [349] = 349, - [350] = 345, + [350] = 350, [351] = 351, - [352] = 349, - [353] = 353, - [354] = 345, - [355] = 340, - [356] = 345, - [357] = 357, - [358] = 345, - [359] = 345, + [352] = 338, + [353] = 346, + [354] = 347, + [355] = 348, + [356] = 349, + [357] = 350, + [358] = 338, + [359] = 351, [360] = 360, - [361] = 360, - [362] = 345, + [361] = 338, + [362] = 338, [363] = 338, - [364] = 353, + [364] = 342, [365] = 343, - [366] = 345, - [367] = 345, - [368] = 368, - [369] = 369, - [370] = 333, - [371] = 371, - [372] = 334, - [373] = 369, - [374] = 336, - [375] = 342, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 376, - [380] = 380, - [381] = 338, - [382] = 353, - [383] = 376, - [384] = 380, - [385] = 339, - [386] = 380, - [387] = 380, - [388] = 351, - [389] = 389, - [390] = 357, - [391] = 343, - [392] = 360, - [393] = 340, - [394] = 341, - [395] = 349, - [396] = 380, - [397] = 397, + [366] = 338, + [367] = 367, + [368] = 333, + [369] = 336, + [370] = 370, + [371] = 334, + [372] = 372, + [373] = 373, + [374] = 373, + [375] = 375, + [376] = 347, + [377] = 375, + [378] = 350, + [379] = 339, + [380] = 342, + [381] = 381, + [382] = 375, + [383] = 375, + [384] = 351, + [385] = 375, + [386] = 348, + [387] = 387, + [388] = 375, + [389] = 349, + [390] = 375, + [391] = 391, + [392] = 381, + [393] = 375, + [394] = 375, + [395] = 360, + [396] = 346, + [397] = 343, [398] = 398, - [399] = 399, + [399] = 381, [400] = 400, - [401] = 389, - [402] = 334, + [401] = 367, + [402] = 402, [403] = 403, - [404] = 369, - [405] = 368, - [406] = 336, + [404] = 404, + [405] = 373, + [406] = 372, [407] = 407, [408] = 408, - [409] = 409, + [409] = 336, [410] = 410, [411] = 411, [412] = 412, - [413] = 357, - [414] = 333, - [415] = 343, - [416] = 398, - [417] = 339, - [418] = 407, - [419] = 377, - [420] = 353, - [421] = 92, + [413] = 398, + [414] = 414, + [415] = 334, + [416] = 416, + [417] = 348, + [418] = 410, + [419] = 400, + [420] = 333, + [421] = 347, [422] = 93, - [423] = 338, + [423] = 92, [424] = 360, - [425] = 334, - [426] = 340, - [427] = 341, - [428] = 342, + [425] = 414, + [426] = 346, + [427] = 342, + [428] = 372, [429] = 349, - [430] = 378, + [430] = 350, [431] = 431, [432] = 351, - [433] = 92, - [434] = 434, - [435] = 98, - [436] = 99, - [437] = 351, + [433] = 367, + [434] = 334, + [435] = 387, + [436] = 339, + [437] = 343, [438] = 438, - [439] = 434, - [440] = 369, - [441] = 339, - [442] = 442, - [443] = 400, - [444] = 444, - [445] = 434, - [446] = 446, - [447] = 357, - [448] = 408, - [449] = 409, - [450] = 410, - [451] = 411, - [452] = 403, - [453] = 368, - [454] = 93, - [455] = 455, - [456] = 456, - [457] = 455, - [458] = 455, + [439] = 439, + [440] = 93, + [441] = 441, + [442] = 373, + [443] = 92, + [444] = 367, + [445] = 411, + [446] = 99, + [447] = 447, + [448] = 339, + [449] = 94, + [450] = 408, + [451] = 447, + [452] = 412, + [453] = 453, + [454] = 447, + [455] = 407, + [456] = 403, + [457] = 416, + [458] = 360, [459] = 459, [460] = 460, - [461] = 460, - [462] = 106, - [463] = 446, + [461] = 107, + [462] = 460, + [463] = 438, [464] = 464, [465] = 465, - [466] = 466, - [467] = 105, - [468] = 460, - [469] = 99, - [470] = 470, - [471] = 438, - [472] = 98, - [473] = 108, - [474] = 434, + [466] = 108, + [467] = 460, + [468] = 109, + [469] = 94, + [470] = 460, + [471] = 471, + [472] = 460, + [473] = 460, + [474] = 99, [475] = 460, - [476] = 105, - [477] = 442, - [478] = 399, - [479] = 340, - [480] = 343, - [481] = 444, - [482] = 342, - [483] = 349, - [484] = 484, + [476] = 460, + [477] = 477, + [478] = 439, + [479] = 477, + [480] = 477, + [481] = 447, + [482] = 482, + [483] = 483, + [484] = 350, [485] = 485, - [486] = 486, - [487] = 360, - [488] = 341, - [489] = 489, - [490] = 490, + [486] = 333, + [487] = 351, + [488] = 488, + [489] = 107, + [490] = 336, [491] = 491, - [492] = 368, + [492] = 404, [493] = 493, - [494] = 412, - [495] = 108, - [496] = 333, + [494] = 402, + [495] = 495, + [496] = 372, [497] = 497, [498] = 498, - [499] = 106, - [500] = 500, - [501] = 501, - [502] = 336, + [499] = 108, + [500] = 348, + [501] = 109, + [502] = 346, [503] = 503, - [504] = 504, + [504] = 347, [505] = 505, - [506] = 506, - [507] = 507, - [508] = 508, + [506] = 349, + [507] = 453, + [508] = 441, [509] = 509, [510] = 510, [511] = 511, @@ -5330,14 +5354,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [514] = 514, [515] = 515, [516] = 516, - [517] = 353, - [518] = 338, + [517] = 517, + [518] = 518, [519] = 519, [520] = 520, [521] = 521, [522] = 522, [523] = 523, - [524] = 504, + [524] = 524, [525] = 525, [526] = 526, [527] = 527, @@ -5354,32 +5378,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [538] = 538, [539] = 539, [540] = 540, - [541] = 526, - [542] = 529, - [543] = 532, - [544] = 533, - [545] = 534, - [546] = 536, - [547] = 537, - [548] = 538, - [549] = 539, - [550] = 527, - [551] = 528, - [552] = 535, - [553] = 553, - [554] = 553, - [555] = 527, - [556] = 519, - [557] = 520, - [558] = 521, - [559] = 522, - [560] = 523, - [561] = 538, - [562] = 525, - [563] = 530, - [564] = 531, + [541] = 541, + [542] = 537, + [543] = 543, + [544] = 524, + [545] = 525, + [546] = 541, + [547] = 547, + [548] = 548, + [549] = 549, + [550] = 521, + [551] = 522, + [552] = 523, + [553] = 531, + [554] = 536, + [555] = 513, + [556] = 556, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 564, [565] = 565, - [566] = 566, + [566] = 520, [567] = 567, [568] = 568, [569] = 569, @@ -5388,152 +5412,152 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [572] = 572, [573] = 573, [574] = 574, - [575] = 575, + [575] = 512, [576] = 576, [577] = 577, [578] = 578, [579] = 579, [580] = 580, [581] = 581, - [582] = 528, - [583] = 535, - [584] = 553, - [585] = 585, - [586] = 505, - [587] = 506, - [588] = 507, - [589] = 508, - [590] = 509, - [591] = 510, - [592] = 511, - [593] = 512, - [594] = 513, - [595] = 514, - [596] = 515, - [597] = 516, - [598] = 565, - [599] = 566, - [600] = 567, - [601] = 568, - [602] = 569, - [603] = 570, - [604] = 571, - [605] = 572, - [606] = 573, - [607] = 574, - [608] = 575, - [609] = 576, - [610] = 577, - [611] = 578, - [612] = 579, - [613] = 580, - [614] = 581, - [615] = 459, - [616] = 519, - [617] = 520, - [618] = 618, - [619] = 521, - [620] = 522, - [621] = 523, - [622] = 504, - [623] = 525, - [624] = 530, - [625] = 625, - [626] = 531, - [627] = 565, - [628] = 566, - [629] = 629, - [630] = 630, - [631] = 585, - [632] = 505, - [633] = 506, - [634] = 507, - [635] = 508, - [636] = 509, - [637] = 539, - [638] = 510, - [639] = 511, - [640] = 512, - [641] = 513, - [642] = 642, - [643] = 567, - [644] = 514, - [645] = 645, - [646] = 568, - [647] = 515, - [648] = 569, - [649] = 570, - [650] = 516, - [651] = 571, - [652] = 572, - [653] = 573, - [654] = 574, - [655] = 537, - [656] = 575, - [657] = 657, - [658] = 576, - [659] = 577, - [660] = 578, - [661] = 579, - [662] = 580, - [663] = 581, - [664] = 470, - [665] = 526, - [666] = 529, - [667] = 532, - [668] = 533, - [669] = 534, - [670] = 536, - [671] = 585, - [672] = 444, - [673] = 645, - [674] = 674, - [675] = 675, - [676] = 676, - [677] = 677, - [678] = 500, - [679] = 679, - [680] = 503, + [582] = 514, + [583] = 334, + [584] = 584, + [585] = 533, + [586] = 534, + [587] = 535, + [588] = 515, + [589] = 540, + [590] = 539, + [591] = 540, + [592] = 513, + [593] = 514, + [594] = 515, + [595] = 516, + [596] = 517, + [597] = 518, + [598] = 519, + [599] = 599, + [600] = 547, + [601] = 464, + [602] = 548, + [603] = 549, + [604] = 543, + [605] = 516, + [606] = 343, + [607] = 556, + [608] = 557, + [609] = 558, + [610] = 559, + [611] = 560, + [612] = 567, + [613] = 568, + [614] = 569, + [615] = 570, + [616] = 571, + [617] = 517, + [618] = 561, + [619] = 518, + [620] = 519, + [621] = 572, + [622] = 342, + [623] = 562, + [624] = 573, + [625] = 574, + [626] = 512, + [627] = 576, + [628] = 563, + [629] = 537, + [630] = 543, + [631] = 524, + [632] = 525, + [633] = 541, + [634] = 547, + [635] = 548, + [636] = 549, + [637] = 521, + [638] = 522, + [639] = 523, + [640] = 531, + [641] = 536, + [642] = 577, + [643] = 578, + [644] = 579, + [645] = 580, + [646] = 581, + [647] = 556, + [648] = 557, + [649] = 558, + [650] = 559, + [651] = 560, + [652] = 561, + [653] = 562, + [654] = 563, + [655] = 564, + [656] = 565, + [657] = 520, + [658] = 567, + [659] = 568, + [660] = 569, + [661] = 570, + [662] = 571, + [663] = 572, + [664] = 573, + [665] = 574, + [666] = 564, + [667] = 576, + [668] = 577, + [669] = 578, + [670] = 579, + [671] = 580, + [672] = 581, + [673] = 565, + [674] = 482, + [675] = 533, + [676] = 534, + [677] = 535, + [678] = 538, + [679] = 539, + [680] = 538, [681] = 681, - [682] = 682, + [682] = 526, [683] = 683, - [684] = 490, + [684] = 684, [685] = 685, [686] = 686, [687] = 687, [688] = 688, - [689] = 689, + [689] = 488, [690] = 690, [691] = 691, [692] = 692, - [693] = 642, - [694] = 694, + [693] = 441, + [694] = 528, [695] = 695, - [696] = 442, + [696] = 696, [697] = 697, - [698] = 698, + [698] = 453, [699] = 699, [700] = 700, - [701] = 369, - [702] = 702, + [701] = 701, + [702] = 339, [703] = 703, [704] = 704, [705] = 705, - [706] = 334, + [706] = 706, [707] = 707, [708] = 708, [709] = 709, [710] = 710, [711] = 711, - [712] = 712, + [712] = 367, [713] = 713, [714] = 714, - [715] = 713, - [716] = 716, + [715] = 715, + [716] = 510, [717] = 717, - [718] = 718, - [719] = 719, - [720] = 720, + [718] = 497, + [719] = 373, + [720] = 360, [721] = 721, [722] = 722, [723] = 723, @@ -5542,7 +5566,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [726] = 726, [727] = 727, [728] = 728, - [729] = 357, + [729] = 729, [730] = 730, [731] = 731, [732] = 732, @@ -5558,62 +5582,62 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [742] = 742, [743] = 743, [744] = 744, - [745] = 714, + [745] = 745, [746] = 746, [747] = 747, [748] = 748, [749] = 749, [750] = 750, - [751] = 725, - [752] = 731, - [753] = 732, - [754] = 733, - [755] = 734, - [756] = 714, - [757] = 713, - [758] = 716, - [759] = 717, - [760] = 718, - [761] = 493, - [762] = 716, - [763] = 763, - [764] = 764, - [765] = 717, - [766] = 766, - [767] = 767, - [768] = 718, + [751] = 503, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 732, + [760] = 733, + [761] = 734, + [762] = 738, + [763] = 740, + [764] = 754, + [765] = 765, + [766] = 725, + [767] = 765, + [768] = 768, [769] = 769, - [770] = 770, + [770] = 724, [771] = 771, [772] = 772, - [773] = 773, + [773] = 725, [774] = 774, [775] = 775, [776] = 776, [777] = 777, [778] = 778, - [779] = 444, + [779] = 779, [780] = 780, [781] = 781, [782] = 782, - [783] = 339, - [784] = 351, - [785] = 485, - [786] = 442, - [787] = 486, - [788] = 788, - [789] = 789, - [790] = 484, - [791] = 444, - [792] = 792, + [783] = 783, + [784] = 441, + [785] = 785, + [786] = 786, + [787] = 787, + [788] = 485, + [789] = 495, + [790] = 453, + [791] = 791, + [792] = 493, [793] = 793, [794] = 794, - [795] = 470, - [796] = 734, + [795] = 795, + [796] = 441, [797] = 797, [798] = 798, - [799] = 799, - [800] = 800, + [799] = 464, + [800] = 482, [801] = 801, [802] = 802, [803] = 803, @@ -5624,26 +5648,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [808] = 808, [809] = 809, [810] = 810, - [811] = 748, - [812] = 749, - [813] = 750, - [814] = 725, - [815] = 731, - [816] = 732, - [817] = 733, - [818] = 734, - [819] = 714, - [820] = 713, - [821] = 716, - [822] = 717, - [823] = 718, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 827, + [811] = 811, + [812] = 812, + [813] = 813, + [814] = 814, + [815] = 755, + [816] = 756, + [817] = 757, + [818] = 758, + [819] = 732, + [820] = 733, + [821] = 734, + [822] = 738, + [823] = 740, + [824] = 754, + [825] = 765, + [826] = 724, + [827] = 725, [828] = 828, - [829] = 829, - [830] = 497, + [829] = 505, + [830] = 830, [831] = 831, [832] = 832, [833] = 833, @@ -5651,21 +5675,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [835] = 835, [836] = 836, [837] = 837, - [838] = 748, - [839] = 749, - [840] = 750, - [841] = 725, - [842] = 731, - [843] = 732, - [844] = 733, - [845] = 734, - [846] = 714, - [847] = 713, - [848] = 716, - [849] = 717, - [850] = 718, - [851] = 851, - [852] = 852, + [838] = 838, + [839] = 839, + [840] = 755, + [841] = 756, + [842] = 757, + [843] = 758, + [844] = 732, + [845] = 733, + [846] = 734, + [847] = 738, + [848] = 740, + [849] = 754, + [850] = 765, + [851] = 724, + [852] = 725, [853] = 853, [854] = 854, [855] = 855, @@ -5677,134 +5701,134 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [861] = 861, [862] = 862, [863] = 863, - [864] = 489, - [865] = 748, - [866] = 749, - [867] = 750, - [868] = 725, - [869] = 731, - [870] = 732, - [871] = 733, - [872] = 734, - [873] = 714, - [874] = 713, - [875] = 716, - [876] = 717, - [877] = 718, - [878] = 878, - [879] = 879, - [880] = 733, + [864] = 864, + [865] = 865, + [866] = 509, + [867] = 867, + [868] = 755, + [869] = 756, + [870] = 757, + [871] = 758, + [872] = 732, + [873] = 733, + [874] = 734, + [875] = 738, + [876] = 740, + [877] = 754, + [878] = 765, + [879] = 724, + [880] = 725, [881] = 881, - [882] = 748, - [883] = 749, - [884] = 750, - [885] = 885, - [886] = 886, + [882] = 882, + [883] = 755, + [884] = 756, + [885] = 757, + [886] = 758, [887] = 887, [888] = 888, - [889] = 748, - [890] = 749, - [891] = 750, - [892] = 725, - [893] = 731, - [894] = 732, - [895] = 459, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, + [889] = 889, + [890] = 890, + [891] = 755, + [892] = 756, + [893] = 757, + [894] = 758, + [895] = 732, + [896] = 733, + [897] = 734, + [898] = 738, + [899] = 740, + [900] = 754, + [901] = 765, + [902] = 724, [903] = 903, [904] = 904, - [905] = 500, + [905] = 905, [906] = 906, - [907] = 503, - [908] = 490, - [909] = 909, + [907] = 907, + [908] = 908, + [909] = 497, [910] = 910, - [911] = 911, - [912] = 912, + [911] = 510, + [912] = 488, [913] = 913, [914] = 914, [915] = 915, [916] = 916, [917] = 917, - [918] = 692, + [918] = 918, [919] = 919, - [920] = 675, + [920] = 686, [921] = 921, [922] = 922, - [923] = 923, - [924] = 924, + [923] = 687, + [924] = 704, [925] = 925, [926] = 926, [927] = 927, - [928] = 697, - [929] = 698, + [928] = 928, + [929] = 688, [930] = 930, [931] = 931, - [932] = 465, - [933] = 368, - [934] = 705, - [935] = 466, + [932] = 932, + [933] = 713, + [934] = 934, + [935] = 690, [936] = 936, - [937] = 937, - [938] = 491, - [939] = 700, - [940] = 470, - [941] = 941, - [942] = 498, - [943] = 943, - [944] = 944, + [937] = 527, + [938] = 483, + [939] = 939, + [940] = 940, + [941] = 498, + [942] = 942, + [943] = 464, + [944] = 491, [945] = 945, [946] = 946, [947] = 947, [948] = 948, [949] = 949, - [950] = 704, + [950] = 700, [951] = 951, - [952] = 712, - [953] = 953, + [952] = 703, + [953] = 723, [954] = 954, [955] = 955, - [956] = 709, - [957] = 459, + [956] = 956, + [957] = 957, [958] = 958, - [959] = 959, + [959] = 482, [960] = 960, [961] = 961, - [962] = 921, - [963] = 921, - [964] = 540, + [962] = 962, + [963] = 471, + [964] = 918, [965] = 965, - [966] = 691, + [966] = 966, [967] = 967, - [968] = 710, - [969] = 674, - [970] = 500, - [971] = 971, - [972] = 679, - [973] = 503, - [974] = 686, - [975] = 490, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 918, + [972] = 372, + [973] = 973, + [974] = 691, + [975] = 721, [976] = 976, [977] = 977, - [978] = 978, - [979] = 979, - [980] = 980, - [981] = 681, + [978] = 497, + [979] = 510, + [980] = 488, + [981] = 705, [982] = 982, - [983] = 983, + [983] = 683, [984] = 984, [985] = 985, [986] = 986, [987] = 987, [988] = 988, [989] = 989, - [990] = 990, - [991] = 991, + [990] = 684, + [991] = 982, [992] = 992, [993] = 993, [994] = 994, @@ -5818,35 +5842,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1002] = 1002, [1003] = 1003, [1004] = 1004, - [1005] = 978, - [1006] = 1006, + [1005] = 1005, + [1006] = 708, [1007] = 1007, [1008] = 1008, [1009] = 1009, [1010] = 1010, [1011] = 1011, - [1012] = 682, + [1012] = 1012, [1013] = 1013, [1014] = 1014, [1015] = 1015, - [1016] = 687, + [1016] = 1016, [1017] = 1017, [1018] = 1018, - [1019] = 1019, + [1019] = 685, [1020] = 1020, - [1021] = 971, + [1021] = 1021, [1022] = 1022, [1023] = 1023, - [1024] = 1024, - [1025] = 886, - [1026] = 960, - [1027] = 1027, - [1028] = 937, + [1024] = 888, + [1025] = 962, + [1026] = 1026, + [1027] = 942, + [1028] = 973, [1029] = 1029, - [1030] = 1030, + [1030] = 697, [1031] = 1031, [1032] = 1032, - [1033] = 688, + [1033] = 1033, [1034] = 1034, [1035] = 1035, [1036] = 1036, @@ -5860,34 +5884,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1044] = 1044, [1045] = 1045, [1046] = 1046, - [1047] = 941, + [1047] = 1047, [1048] = 1048, - [1049] = 961, - [1050] = 931, + [1049] = 1049, + [1050] = 1050, [1051] = 1051, [1052] = 1052, - [1053] = 1053, + [1053] = 945, [1054] = 1054, - [1055] = 1055, - [1056] = 1056, + [1055] = 965, + [1056] = 966, [1057] = 1057, - [1058] = 1058, + [1058] = 956, [1059] = 1059, [1060] = 1060, [1061] = 1061, - [1062] = 1062, - [1063] = 948, + [1062] = 958, + [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 954, + [1068] = 1068, [1069] = 1069, [1070] = 1070, - [1071] = 683, + [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1074, + [1074] = 960, [1075] = 1075, [1076] = 1076, [1077] = 1077, @@ -5896,14 +5920,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1080] = 1080, [1081] = 1081, [1082] = 1082, - [1083] = 958, + [1083] = 961, [1084] = 1084, [1085] = 1085, - [1086] = 689, + [1086] = 1086, [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 959, + [1090] = 1090, [1091] = 1091, [1092] = 1092, [1093] = 1093, @@ -5921,46 +5945,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1105] = 1105, [1106] = 1106, [1107] = 1107, - [1108] = 1108, - [1109] = 985, - [1110] = 987, - [1111] = 988, - [1112] = 1112, + [1108] = 714, + [1109] = 1109, + [1110] = 722, + [1111] = 1111, + [1112] = 717, [1113] = 1113, - [1114] = 1043, + [1114] = 1114, [1115] = 1115, [1116] = 1116, - [1117] = 1117, + [1117] = 977, [1118] = 1118, - [1119] = 702, + [1119] = 1119, [1120] = 1120, - [1121] = 707, - [1122] = 444, - [1123] = 708, - [1124] = 703, - [1125] = 971, - [1126] = 711, - [1127] = 677, - [1128] = 690, - [1129] = 978, + [1121] = 1050, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 701, + [1126] = 706, + [1127] = 441, + [1128] = 709, + [1129] = 710, [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 1133, - [1134] = 1134, - [1135] = 1135, - [1136] = 1136, - [1137] = 1137, + [1131] = 1115, + [1132] = 696, + [1133] = 1116, + [1134] = 973, + [1135] = 711, + [1136] = 692, + [1137] = 982, [1138] = 1138, [1139] = 1139, [1140] = 1140, [1141] = 1141, [1142] = 1142, - [1143] = 1143, + [1143] = 1120, [1144] = 1144, [1145] = 1145, [1146] = 1146, - [1147] = 1147, + [1147] = 681, [1148] = 1148, [1149] = 1149, [1150] = 1150, @@ -5976,16 +6000,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1160] = 1160, [1161] = 1161, [1162] = 1162, - [1163] = 1112, + [1163] = 1163, [1164] = 1164, [1165] = 1165, [1166] = 1166, - [1167] = 1167, + [1167] = 1050, [1168] = 1168, - [1169] = 699, + [1169] = 1169, [1170] = 1170, [1171] = 1171, - [1172] = 1113, + [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, @@ -6004,8 +6028,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1188] = 1188, [1189] = 1189, [1190] = 1190, - [1191] = 1191, - [1192] = 1192, + [1191] = 1119, + [1192] = 1120, [1193] = 1193, [1194] = 1194, [1195] = 1195, @@ -6013,14 +6037,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1197] = 1197, [1198] = 1198, [1199] = 1199, - [1200] = 1200, + [1200] = 1061, [1201] = 1201, [1202] = 1202, [1203] = 1203, [1204] = 1204, - [1205] = 967, + [1205] = 1205, [1206] = 1206, - [1207] = 1043, + [1207] = 1207, [1208] = 1208, [1209] = 1209, [1210] = 1210, @@ -6033,16 +6057,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1217] = 1217, [1218] = 1218, [1219] = 1219, - [1220] = 685, + [1220] = 1220, [1221] = 1221, [1222] = 1222, - [1223] = 676, + [1223] = 1223, [1224] = 1224, [1225] = 1225, [1226] = 1226, - [1227] = 1227, + [1227] = 715, [1228] = 1228, - [1229] = 1229, + [1229] = 1141, [1230] = 1230, [1231] = 1231, [1232] = 1232, @@ -6050,17 +6074,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1234] = 1234, [1235] = 1235, [1236] = 1236, - [1237] = 1151, + [1237] = 1237, [1238] = 1238, - [1239] = 1112, - [1240] = 1230, + [1239] = 1239, + [1240] = 1240, [1241] = 1241, - [1242] = 1113, + [1242] = 1242, [1243] = 1243, [1244] = 1244, [1245] = 1245, [1246] = 1246, - [1247] = 1247, + [1247] = 695, [1248] = 1248, [1249] = 1249, [1250] = 1250, @@ -6069,279 +6093,279 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1253] = 1253, [1254] = 1254, [1255] = 1255, - [1256] = 1232, - [1257] = 1232, - [1258] = 1232, - [1259] = 1232, - [1260] = 1149, - [1261] = 1261, - [1262] = 1262, - [1263] = 764, - [1264] = 888, - [1265] = 730, - [1266] = 955, - [1267] = 1133, - [1268] = 944, - [1269] = 721, - [1270] = 898, - [1271] = 722, - [1272] = 936, - [1273] = 724, - [1274] = 899, - [1275] = 1275, - [1276] = 1142, - [1277] = 887, - [1278] = 1136, - [1279] = 735, - [1280] = 917, - [1281] = 911, - [1282] = 913, - [1283] = 1140, - [1284] = 922, - [1285] = 947, - [1286] = 1145, - [1287] = 1287, - [1288] = 1203, - [1289] = 695, - [1290] = 927, - [1291] = 1291, - [1292] = 923, - [1293] = 924, - [1294] = 945, - [1295] = 926, - [1296] = 914, - [1297] = 949, - [1298] = 726, - [1299] = 897, - [1300] = 727, - [1301] = 915, - [1302] = 909, - [1303] = 943, - [1304] = 694, - [1305] = 953, - [1306] = 728, + [1256] = 1142, + [1257] = 1257, + [1258] = 1119, + [1259] = 1259, + [1260] = 1260, + [1261] = 1160, + [1262] = 1161, + [1263] = 1263, + [1264] = 1264, + [1265] = 1265, + [1266] = 1266, + [1267] = 1142, + [1268] = 1142, + [1269] = 1142, + [1270] = 1270, + [1271] = 907, + [1272] = 1272, + [1273] = 932, + [1274] = 928, + [1275] = 949, + [1276] = 752, + [1277] = 931, + [1278] = 747, + [1279] = 748, + [1280] = 1156, + [1281] = 1153, + [1282] = 930, + [1283] = 737, + [1284] = 957, + [1285] = 905, + [1286] = 947, + [1287] = 1150, + [1288] = 1288, + [1289] = 1155, + [1290] = 948, + [1291] = 917, + [1292] = 915, + [1293] = 739, + [1294] = 1152, + [1295] = 946, + [1296] = 741, + [1297] = 927, + [1298] = 699, + [1299] = 730, + [1300] = 736, + [1301] = 925, + [1302] = 955, + [1303] = 735, + [1304] = 707, + [1305] = 919, + [1306] = 749, [1307] = 906, - [1308] = 1138, - [1309] = 746, - [1310] = 747, - [1311] = 723, - [1312] = 903, - [1313] = 904, - [1314] = 1147, - [1315] = 1144, - [1316] = 719, - [1317] = 902, - [1318] = 896, - [1319] = 763, - [1320] = 930, - [1321] = 910, - [1322] = 946, - [1323] = 1247, - [1324] = 720, - [1325] = 743, - [1326] = 744, - [1327] = 900, - [1328] = 1328, - [1329] = 1329, - [1330] = 1251, - [1331] = 1331, - [1332] = 916, - [1333] = 951, - [1334] = 901, - [1335] = 1254, - [1336] = 736, - [1337] = 737, - [1338] = 1328, - [1339] = 738, - [1340] = 739, - [1341] = 740, - [1342] = 741, - [1343] = 742, - [1344] = 925, - [1345] = 919, - [1346] = 1346, - [1347] = 1347, - [1348] = 1348, - [1349] = 1348, - [1350] = 1350, - [1351] = 1351, - [1352] = 1352, - [1353] = 1353, + [1308] = 1154, + [1309] = 753, + [1310] = 889, + [1311] = 726, + [1312] = 904, + [1313] = 922, + [1314] = 913, + [1315] = 728, + [1316] = 731, + [1317] = 750, + [1318] = 954, + [1319] = 768, + [1320] = 769, + [1321] = 1157, + [1322] = 1322, + [1323] = 936, + [1324] = 926, + [1325] = 1260, + [1326] = 1326, + [1327] = 951, + [1328] = 1265, + [1329] = 914, + [1330] = 921, + [1331] = 967, + [1332] = 1332, + [1333] = 890, + [1334] = 1140, + [1335] = 934, + [1336] = 968, + [1337] = 742, + [1338] = 939, + [1339] = 743, + [1340] = 729, + [1341] = 1332, + [1342] = 744, + [1343] = 969, + [1344] = 910, + [1345] = 1345, + [1346] = 970, + [1347] = 1146, + [1348] = 940, + [1349] = 1149, + [1350] = 745, + [1351] = 908, + [1352] = 746, + [1353] = 727, [1354] = 1354, - [1355] = 540, - [1356] = 1356, + [1355] = 1355, + [1356] = 527, [1357] = 1357, [1358] = 1358, - [1359] = 691, + [1359] = 1359, [1360] = 1360, [1361] = 1361, [1362] = 1362, - [1363] = 1363, + [1363] = 1360, [1364] = 1364, - [1365] = 1362, + [1365] = 1365, [1366] = 1366, - [1367] = 1354, - [1368] = 1356, - [1369] = 1358, - [1370] = 1357, - [1371] = 1350, - [1372] = 1372, - [1373] = 1362, - [1374] = 1362, - [1375] = 1362, - [1376] = 1376, - [1377] = 1377, + [1367] = 1367, + [1368] = 1368, + [1369] = 1369, + [1370] = 1362, + [1371] = 1371, + [1372] = 1364, + [1373] = 1366, + [1374] = 1357, + [1375] = 1367, + [1376] = 696, + [1377] = 1366, [1378] = 1378, - [1379] = 389, - [1380] = 1366, - [1381] = 1381, - [1382] = 1382, + [1379] = 1365, + [1380] = 1380, + [1381] = 1366, + [1382] = 1366, [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 389, - [1387] = 407, + [1386] = 1386, + [1387] = 1387, [1388] = 398, - [1389] = 1389, + [1389] = 1371, [1390] = 1390, [1391] = 1391, [1392] = 1392, [1393] = 1393, - [1394] = 1394, + [1394] = 410, [1395] = 1395, - [1396] = 398, - [1397] = 407, - [1398] = 1398, - [1399] = 1399, - [1400] = 92, - [1401] = 93, - [1402] = 93, - [1403] = 98, - [1404] = 1404, - [1405] = 540, - [1406] = 446, - [1407] = 1407, - [1408] = 92, + [1396] = 1396, + [1397] = 1397, + [1398] = 414, + [1399] = 398, + [1400] = 1400, + [1401] = 410, + [1402] = 1402, + [1403] = 1403, + [1404] = 414, + [1405] = 93, + [1406] = 1406, + [1407] = 92, + [1408] = 1408, [1409] = 1409, - [1410] = 99, + [1410] = 438, [1411] = 1411, - [1412] = 1412, - [1413] = 98, - [1414] = 444, - [1415] = 446, - [1416] = 691, + [1412] = 92, + [1413] = 527, + [1414] = 93, + [1415] = 94, + [1416] = 1416, [1417] = 1417, - [1418] = 1418, - [1419] = 442, - [1420] = 1420, - [1421] = 106, - [1422] = 99, - [1423] = 108, + [1418] = 99, + [1419] = 438, + [1420] = 99, + [1421] = 1421, + [1422] = 696, + [1423] = 94, [1424] = 1424, - [1425] = 105, - [1426] = 442, - [1427] = 444, - [1428] = 106, - [1429] = 470, - [1430] = 105, - [1431] = 459, + [1425] = 1425, + [1426] = 453, + [1427] = 1427, + [1428] = 109, + [1429] = 441, + [1430] = 107, + [1431] = 1431, [1432] = 108, - [1433] = 500, - [1434] = 645, - [1435] = 503, - [1436] = 642, - [1437] = 490, - [1438] = 470, - [1439] = 459, - [1440] = 444, - [1441] = 642, - [1442] = 442, - [1443] = 645, - [1444] = 500, - [1445] = 1445, - [1446] = 1446, - [1447] = 1447, - [1448] = 503, - [1449] = 490, - [1450] = 1446, - [1451] = 459, - [1452] = 470, - [1453] = 1453, + [1433] = 1433, + [1434] = 109, + [1435] = 464, + [1436] = 107, + [1437] = 482, + [1438] = 441, + [1439] = 108, + [1440] = 453, + [1441] = 482, + [1442] = 510, + [1443] = 464, + [1444] = 528, + [1445] = 526, + [1446] = 497, + [1447] = 488, + [1448] = 497, + [1449] = 510, + [1450] = 488, + [1451] = 441, + [1452] = 1452, + [1453] = 528, [1454] = 1454, - [1455] = 1445, - [1456] = 442, - [1457] = 1454, - [1458] = 1447, - [1459] = 444, - [1460] = 937, - [1461] = 500, - [1462] = 961, - [1463] = 503, - [1464] = 1464, - [1465] = 931, - [1466] = 1466, - [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 941, - [1471] = 959, - [1472] = 886, + [1455] = 1455, + [1456] = 526, + [1457] = 453, + [1458] = 1458, + [1459] = 453, + [1460] = 441, + [1461] = 1461, + [1462] = 482, + [1463] = 1454, + [1464] = 1458, + [1465] = 1455, + [1466] = 464, + [1467] = 1452, + [1468] = 958, + [1469] = 945, + [1470] = 1470, + [1471] = 510, + [1472] = 1472, [1473] = 1473, [1474] = 1474, - [1475] = 1475, - [1476] = 470, - [1477] = 490, - [1478] = 1478, - [1479] = 948, + [1475] = 966, + [1476] = 1476, + [1477] = 965, + [1478] = 962, + [1479] = 942, [1480] = 1480, - [1481] = 459, - [1482] = 960, - [1483] = 1483, + [1481] = 956, + [1482] = 1482, + [1483] = 482, [1484] = 1484, [1485] = 1485, - [1486] = 954, - [1487] = 958, - [1488] = 1043, - [1489] = 1489, - [1490] = 960, - [1491] = 1491, - [1492] = 886, - [1493] = 1112, - [1494] = 961, - [1495] = 941, - [1496] = 1496, - [1497] = 931, - [1498] = 1498, - [1499] = 503, - [1500] = 490, - [1501] = 937, - [1502] = 958, - [1503] = 967, - [1504] = 959, - [1505] = 954, - [1506] = 948, - [1507] = 500, - [1508] = 1113, - [1509] = 1509, + [1486] = 1486, + [1487] = 1487, + [1488] = 960, + [1489] = 488, + [1490] = 464, + [1491] = 961, + [1492] = 1492, + [1493] = 1493, + [1494] = 497, + [1495] = 888, + [1496] = 960, + [1497] = 945, + [1498] = 888, + [1499] = 1499, + [1500] = 956, + [1501] = 962, + [1502] = 965, + [1503] = 1120, + [1504] = 1119, + [1505] = 497, + [1506] = 1050, + [1507] = 966, + [1508] = 1508, + [1509] = 961, [1510] = 1510, - [1511] = 1112, - [1512] = 1113, - [1513] = 1513, - [1514] = 1514, - [1515] = 1515, + [1511] = 942, + [1512] = 510, + [1513] = 958, + [1514] = 488, + [1515] = 1061, [1516] = 1516, - [1517] = 1517, - [1518] = 1043, - [1519] = 389, - [1520] = 967, + [1517] = 1148, + [1518] = 1518, + [1519] = 1119, + [1520] = 1120, [1521] = 1521, [1522] = 1522, [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1528, + [1526] = 1050, + [1527] = 398, + [1528] = 1061, [1529] = 1529, [1530] = 1530, [1531] = 1531, @@ -6353,1204 +6377,1204 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1537] = 1537, [1538] = 1538, [1539] = 1539, - [1540] = 1509, + [1540] = 1540, [1541] = 1541, [1542] = 1542, [1543] = 1543, - [1544] = 1535, - [1545] = 1536, - [1546] = 1526, - [1547] = 1527, - [1548] = 1528, - [1549] = 1529, - [1550] = 1530, - [1551] = 1531, - [1552] = 1532, - [1553] = 1513, - [1554] = 1514, - [1555] = 1516, - [1556] = 1517, - [1557] = 1521, + [1544] = 1544, + [1545] = 1545, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, + [1550] = 1550, + [1551] = 1533, + [1552] = 1534, + [1553] = 1535, + [1554] = 1536, + [1555] = 1539, + [1556] = 1549, + [1557] = 1550, [1558] = 1522, [1559] = 1523, [1560] = 1524, - [1561] = 1533, - [1562] = 1534, - [1563] = 1537, - [1564] = 1176, - [1565] = 1262, - [1566] = 1250, - [1567] = 1255, - [1568] = 1135, - [1569] = 1158, - [1570] = 1182, - [1571] = 1221, - [1572] = 1226, - [1573] = 1235, - [1574] = 1241, - [1575] = 1245, - [1576] = 1538, - [1577] = 1530, - [1578] = 1187, - [1579] = 1243, - [1580] = 1156, - [1581] = 1175, - [1582] = 1193, - [1583] = 1222, - [1584] = 1168, - [1585] = 1173, - [1586] = 1180, - [1587] = 1190, - [1588] = 1197, - [1589] = 1234, - [1590] = 1244, - [1591] = 1261, - [1592] = 1159, - [1593] = 1178, - [1594] = 1183, - [1595] = 1188, - [1596] = 1196, - [1597] = 1201, - [1598] = 1211, - [1599] = 1217, - [1600] = 1225, - [1601] = 1236, - [1602] = 1249, - [1603] = 1253, - [1604] = 1539, - [1605] = 1154, - [1606] = 1161, - [1607] = 1164, - [1608] = 1171, - [1609] = 1174, - [1610] = 1185, - [1611] = 1192, - [1612] = 1195, - [1613] = 1199, - [1614] = 1209, - [1615] = 1213, - [1616] = 1215, - [1617] = 1219, - [1618] = 1224, - [1619] = 1228, - [1620] = 1231, - [1621] = 1233, - [1622] = 1238, - [1623] = 1246, - [1624] = 1248, - [1625] = 1132, - [1626] = 1134, - [1627] = 1137, - [1628] = 1139, - [1629] = 1141, - [1630] = 1143, - [1631] = 1146, - [1632] = 1148, - [1633] = 1150, - [1634] = 1152, - [1635] = 1155, - [1636] = 1157, - [1637] = 1160, - [1638] = 1162, - [1639] = 1165, - [1640] = 1167, - [1641] = 1170, - [1642] = 1177, - [1643] = 1179, - [1644] = 1181, - [1645] = 1184, - [1646] = 1186, - [1647] = 1189, - [1648] = 1191, - [1649] = 1194, - [1650] = 1198, - [1651] = 1200, - [1652] = 1131, - [1653] = 1204, - [1654] = 1206, - [1655] = 1208, - [1656] = 1210, - [1657] = 1212, - [1658] = 1216, - [1659] = 1218, - [1660] = 1227, - [1661] = 1229, - [1662] = 1541, - [1663] = 1542, - [1664] = 1543, - [1665] = 1247, - [1666] = 1251, - [1667] = 1254, - [1668] = 1203, - [1669] = 1133, - [1670] = 1136, - [1671] = 1138, - [1672] = 1140, - [1673] = 1142, - [1674] = 1144, - [1675] = 1145, - [1676] = 1147, - [1677] = 1530, - [1678] = 1214, - [1679] = 398, - [1680] = 1680, - [1681] = 1247, - [1682] = 1251, - [1683] = 1254, - [1684] = 1203, - [1685] = 1133, - [1686] = 1136, - [1687] = 1138, - [1688] = 1688, - [1689] = 1140, - [1690] = 1142, - [1691] = 1144, - [1692] = 1145, - [1693] = 1147, - [1694] = 1680, - [1695] = 389, - [1696] = 1510, - [1697] = 407, - [1698] = 1698, - [1699] = 1699, - [1700] = 1700, - [1701] = 1699, - [1702] = 1702, - [1703] = 1703, - [1704] = 92, - [1705] = 378, - [1706] = 93, - [1707] = 407, + [1561] = 1525, + [1562] = 1529, + [1563] = 1530, + [1564] = 1531, + [1565] = 1532, + [1566] = 1537, + [1567] = 1538, + [1568] = 1159, + [1569] = 1165, + [1570] = 1173, + [1571] = 1177, + [1572] = 1195, + [1573] = 1196, + [1574] = 1205, + [1575] = 1216, + [1576] = 1248, + [1577] = 1250, + [1578] = 1251, + [1579] = 1254, + [1580] = 1539, + [1581] = 1139, + [1582] = 1169, + [1583] = 1171, + [1584] = 1175, + [1585] = 1180, + [1586] = 1184, + [1587] = 1197, + [1588] = 1215, + [1589] = 1217, + [1590] = 1219, + [1591] = 1225, + [1592] = 1230, + [1593] = 1233, + [1594] = 1237, + [1595] = 1240, + [1596] = 1242, + [1597] = 1249, + [1598] = 1252, + [1599] = 1255, + [1600] = 1257, + [1601] = 1259, + [1602] = 1263, + [1603] = 1264, + [1604] = 1266, + [1605] = 1211, + [1606] = 1145, + [1607] = 1539, + [1608] = 1151, + [1609] = 1541, + [1610] = 1162, + [1611] = 1163, + [1612] = 1164, + [1613] = 1166, + [1614] = 1168, + [1615] = 1170, + [1616] = 1172, + [1617] = 1174, + [1618] = 1542, + [1619] = 1178, + [1620] = 1179, + [1621] = 1181, + [1622] = 1182, + [1623] = 1183, + [1624] = 1185, + [1625] = 1186, + [1626] = 1187, + [1627] = 1188, + [1628] = 1189, + [1629] = 1190, + [1630] = 1193, + [1631] = 1194, + [1632] = 1198, + [1633] = 1199, + [1634] = 1201, + [1635] = 1202, + [1636] = 1203, + [1637] = 1204, + [1638] = 1206, + [1639] = 1207, + [1640] = 1208, + [1641] = 1209, + [1642] = 1210, + [1643] = 1270, + [1644] = 1212, + [1645] = 1213, + [1646] = 1214, + [1647] = 1218, + [1648] = 1220, + [1649] = 1221, + [1650] = 1222, + [1651] = 1223, + [1652] = 1224, + [1653] = 1226, + [1654] = 1228, + [1655] = 1231, + [1656] = 1232, + [1657] = 1234, + [1658] = 1235, + [1659] = 1236, + [1660] = 1238, + [1661] = 1239, + [1662] = 1241, + [1663] = 1243, + [1664] = 1244, + [1665] = 1245, + [1666] = 1246, + [1667] = 1667, + [1668] = 1260, + [1669] = 1265, + [1670] = 1140, + [1671] = 1146, + [1672] = 1149, + [1673] = 1150, + [1674] = 1152, + [1675] = 1153, + [1676] = 1154, + [1677] = 1155, + [1678] = 1156, + [1679] = 1157, + [1680] = 1539, + [1681] = 1543, + [1682] = 1544, + [1683] = 1539, + [1684] = 1539, + [1685] = 1539, + [1686] = 1545, + [1687] = 1546, + [1688] = 1547, + [1689] = 1548, + [1690] = 1540, + [1691] = 414, + [1692] = 410, + [1693] = 1693, + [1694] = 1260, + [1695] = 1265, + [1696] = 1140, + [1697] = 1146, + [1698] = 1149, + [1699] = 1150, + [1700] = 1152, + [1701] = 1153, + [1702] = 1154, + [1703] = 1155, + [1704] = 1704, + [1705] = 1156, + [1706] = 1157, + [1707] = 1518, [1708] = 398, - [1709] = 1698, + [1709] = 1693, [1710] = 1710, - [1711] = 377, - [1712] = 1700, - [1713] = 1710, - [1714] = 1702, - [1715] = 400, + [1711] = 1711, + [1712] = 1712, + [1713] = 93, + [1714] = 92, + [1715] = 1715, [1716] = 1716, - [1717] = 403, - [1718] = 446, - [1719] = 1719, - [1720] = 93, - [1721] = 1721, - [1722] = 98, - [1723] = 411, - [1724] = 1724, - [1725] = 99, - [1726] = 1726, - [1727] = 412, - [1728] = 408, - [1729] = 409, - [1730] = 410, - [1731] = 1719, - [1732] = 1719, - [1733] = 336, - [1734] = 399, - [1735] = 333, - [1736] = 92, + [1717] = 387, + [1718] = 414, + [1719] = 410, + [1720] = 400, + [1721] = 1711, + [1722] = 1715, + [1723] = 1712, + [1724] = 1716, + [1725] = 1725, + [1726] = 1725, + [1727] = 99, + [1728] = 1728, + [1729] = 404, + [1730] = 416, + [1731] = 1731, + [1732] = 403, + [1733] = 402, + [1734] = 333, + [1735] = 336, + [1736] = 94, [1737] = 1737, - [1738] = 412, - [1739] = 446, + [1738] = 438, + [1739] = 1739, [1740] = 1740, - [1741] = 399, - [1742] = 338, - [1743] = 353, - [1744] = 92, - [1745] = 1737, - [1746] = 1746, - [1747] = 444, - [1748] = 93, - [1749] = 343, - [1750] = 360, - [1751] = 340, - [1752] = 341, + [1741] = 411, + [1742] = 93, + [1743] = 92, + [1744] = 408, + [1745] = 412, + [1746] = 407, + [1747] = 1728, + [1748] = 1728, + [1749] = 1728, + [1750] = 1750, + [1751] = 92, + [1752] = 1752, [1753] = 1753, - [1754] = 349, - [1755] = 1755, - [1756] = 1753, - [1757] = 108, - [1758] = 1737, - [1759] = 105, - [1760] = 106, - [1761] = 99, - [1762] = 98, - [1763] = 1763, - [1764] = 1764, - [1765] = 442, - [1766] = 1755, + [1754] = 346, + [1755] = 347, + [1756] = 348, + [1757] = 349, + [1758] = 350, + [1759] = 351, + [1760] = 1760, + [1761] = 404, + [1762] = 1752, + [1763] = 1753, + [1764] = 402, + [1765] = 1765, + [1766] = 336, [1767] = 1767, - [1768] = 1740, + [1768] = 94, [1769] = 1769, [1770] = 1770, - [1771] = 1767, - [1772] = 336, - [1773] = 1755, - [1774] = 333, - [1775] = 1755, - [1776] = 342, - [1777] = 108, - [1778] = 1778, + [1771] = 333, + [1772] = 1765, + [1773] = 1767, + [1774] = 438, + [1775] = 1753, + [1776] = 453, + [1777] = 342, + [1778] = 1765, [1779] = 1779, [1780] = 343, - [1781] = 1781, - [1782] = 1782, - [1783] = 1783, - [1784] = 1784, - [1785] = 1785, - [1786] = 360, - [1787] = 340, - [1788] = 1788, + [1781] = 1765, + [1782] = 93, + [1783] = 1753, + [1784] = 107, + [1785] = 1769, + [1786] = 441, + [1787] = 108, + [1788] = 109, [1789] = 1789, - [1790] = 1790, - [1791] = 1791, + [1790] = 99, + [1791] = 349, [1792] = 1792, [1793] = 1793, - [1794] = 1791, - [1795] = 334, - [1796] = 105, - [1797] = 1797, - [1798] = 106, - [1799] = 1779, - [1800] = 341, - [1801] = 470, - [1802] = 342, - [1803] = 459, - [1804] = 442, - [1805] = 444, - [1806] = 349, - [1807] = 1807, - [1808] = 1808, - [1809] = 1790, - [1810] = 1810, - [1811] = 1810, - [1812] = 338, - [1813] = 353, - [1814] = 1788, - [1815] = 1789, - [1816] = 369, - [1817] = 1817, - [1818] = 1778, - [1819] = 1785, - [1820] = 1817, - [1821] = 1817, - [1822] = 1817, - [1823] = 99, - [1824] = 98, - [1825] = 339, - [1826] = 645, - [1827] = 642, - [1828] = 1828, - [1829] = 500, - [1830] = 1830, - [1831] = 1831, - [1832] = 334, - [1833] = 351, - [1834] = 503, - [1835] = 490, - [1836] = 470, - [1837] = 369, + [1794] = 1794, + [1795] = 1795, + [1796] = 1796, + [1797] = 441, + [1798] = 1795, + [1799] = 1799, + [1800] = 342, + [1801] = 1795, + [1802] = 1802, + [1803] = 343, + [1804] = 1804, + [1805] = 1805, + [1806] = 346, + [1807] = 347, + [1808] = 348, + [1809] = 334, + [1810] = 350, + [1811] = 351, + [1812] = 1812, + [1813] = 1813, + [1814] = 94, + [1815] = 1815, + [1816] = 373, + [1817] = 99, + [1818] = 1793, + [1819] = 1804, + [1820] = 1794, + [1821] = 1821, + [1822] = 1794, + [1823] = 107, + [1824] = 108, + [1825] = 109, + [1826] = 1794, + [1827] = 464, + [1828] = 1796, + [1829] = 482, + [1830] = 1804, + [1831] = 1796, + [1832] = 1804, + [1833] = 1833, + [1834] = 1834, + [1835] = 1792, + [1836] = 1836, + [1837] = 1795, [1838] = 1838, - [1839] = 459, - [1840] = 108, - [1841] = 1841, - [1842] = 105, - [1843] = 106, - [1844] = 357, - [1845] = 342, + [1839] = 1796, + [1840] = 1795, + [1841] = 1834, + [1842] = 453, + [1843] = 1834, + [1844] = 1794, + [1845] = 1834, [1846] = 1846, - [1847] = 500, - [1848] = 503, - [1849] = 490, - [1850] = 642, - [1851] = 1851, - [1852] = 685, - [1853] = 1853, - [1854] = 743, - [1855] = 645, - [1856] = 744, - [1857] = 339, - [1858] = 368, - [1859] = 93, - [1860] = 746, - [1861] = 747, - [1862] = 465, - [1863] = 1851, - [1864] = 442, - [1865] = 764, - [1866] = 466, - [1867] = 351, - [1868] = 357, - [1869] = 343, - [1870] = 360, - [1871] = 340, - [1872] = 676, - [1873] = 341, - [1874] = 349, - [1875] = 1830, - [1876] = 1473, - [1877] = 1846, - [1878] = 92, - [1879] = 444, - [1880] = 763, - [1881] = 744, - [1882] = 336, - [1883] = 497, - [1884] = 342, - [1885] = 747, - [1886] = 343, - [1887] = 746, - [1888] = 486, - [1889] = 676, - [1890] = 340, - [1891] = 341, - [1892] = 442, - [1893] = 92, - [1894] = 489, - [1895] = 444, - [1896] = 368, - [1897] = 1897, - [1898] = 466, - [1899] = 459, - [1900] = 1897, - [1901] = 484, - [1902] = 93, - [1903] = 1489, - [1904] = 470, - [1905] = 98, - [1906] = 763, - [1907] = 764, - [1908] = 465, - [1909] = 493, - [1910] = 349, - [1911] = 333, - [1912] = 99, - [1913] = 685, - [1914] = 360, - [1915] = 743, - [1916] = 485, - [1917] = 459, - [1918] = 948, - [1919] = 954, - [1920] = 886, - [1921] = 1921, - [1922] = 1922, - [1923] = 1923, - [1924] = 958, - [1925] = 959, - [1926] = 1926, - [1927] = 960, - [1928] = 937, - [1929] = 470, - [1930] = 1930, - [1931] = 1931, - [1932] = 961, - [1933] = 931, - [1934] = 1498, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1938, - [1939] = 99, - [1940] = 1940, - [1941] = 349, - [1942] = 98, - [1943] = 1936, - [1944] = 108, - [1945] = 105, - [1946] = 106, - [1947] = 338, - [1948] = 353, - [1949] = 500, - [1950] = 503, - [1951] = 490, - [1952] = 941, - [1953] = 343, - [1954] = 360, - [1955] = 700, - [1956] = 709, - [1957] = 705, - [1958] = 340, - [1959] = 697, - [1960] = 704, - [1961] = 692, - [1962] = 675, - [1963] = 698, - [1964] = 341, - [1965] = 342, - [1966] = 712, - [1967] = 948, - [1968] = 1968, - [1969] = 937, - [1970] = 540, - [1971] = 500, - [1972] = 503, - [1973] = 490, - [1974] = 941, - [1975] = 1975, + [1847] = 1838, + [1848] = 1796, + [1849] = 1804, + [1850] = 1794, + [1851] = 1795, + [1852] = 1846, + [1853] = 1796, + [1854] = 1804, + [1855] = 482, + [1856] = 526, + [1857] = 1857, + [1858] = 1858, + [1859] = 1859, + [1860] = 528, + [1861] = 1861, + [1862] = 497, + [1863] = 1863, + [1864] = 510, + [1865] = 339, + [1866] = 360, + [1867] = 334, + [1868] = 367, + [1869] = 488, + [1870] = 464, + [1871] = 107, + [1872] = 108, + [1873] = 109, + [1874] = 373, + [1875] = 348, + [1876] = 1876, + [1877] = 769, + [1878] = 488, + [1879] = 753, + [1880] = 483, + [1881] = 1472, + [1882] = 1861, + [1883] = 1883, + [1884] = 372, + [1885] = 453, + [1886] = 349, + [1887] = 1887, + [1888] = 350, + [1889] = 360, + [1890] = 351, + [1891] = 1887, + [1892] = 497, + [1893] = 752, + [1894] = 510, + [1895] = 749, + [1896] = 367, + [1897] = 750, + [1898] = 339, + [1899] = 471, + [1900] = 347, + [1901] = 441, + [1902] = 1876, + [1903] = 346, + [1904] = 768, + [1905] = 93, + [1906] = 715, + [1907] = 526, + [1908] = 528, + [1909] = 92, + [1910] = 695, + [1911] = 750, + [1912] = 695, + [1913] = 485, + [1914] = 336, + [1915] = 1510, + [1916] = 495, + [1917] = 509, + [1918] = 1918, + [1919] = 92, + [1920] = 94, + [1921] = 471, + [1922] = 453, + [1923] = 99, + [1924] = 503, + [1925] = 441, + [1926] = 349, + [1927] = 346, + [1928] = 752, + [1929] = 372, + [1930] = 715, + [1931] = 464, + [1932] = 1918, + [1933] = 347, + [1934] = 93, + [1935] = 483, + [1936] = 753, + [1937] = 493, + [1938] = 482, + [1939] = 768, + [1940] = 505, + [1941] = 769, + [1942] = 350, + [1943] = 333, + [1944] = 749, + [1945] = 351, + [1946] = 348, + [1947] = 1947, + [1948] = 482, + [1949] = 958, + [1950] = 713, + [1951] = 1516, + [1952] = 107, + [1953] = 346, + [1954] = 99, + [1955] = 347, + [1956] = 1956, + [1957] = 704, + [1958] = 723, + [1959] = 690, + [1960] = 94, + [1961] = 960, + [1962] = 1962, + [1963] = 348, + [1964] = 1964, + [1965] = 349, + [1966] = 350, + [1967] = 961, + [1968] = 351, + [1969] = 700, + [1970] = 686, + [1971] = 1971, + [1972] = 688, + [1973] = 108, + [1974] = 497, + [1975] = 1964, [1976] = 1976, - [1977] = 333, - [1978] = 954, - [1979] = 1979, - [1980] = 1980, + [1977] = 1977, + [1978] = 945, + [1979] = 888, + [1980] = 510, [1981] = 1981, - [1982] = 1176, - [1983] = 1262, - [1984] = 1250, - [1985] = 1255, - [1986] = 1135, - [1987] = 1158, - [1988] = 1182, - [1989] = 1221, - [1990] = 1990, - [1991] = 1226, - [1992] = 1235, - [1993] = 1241, - [1994] = 1245, - [1995] = 1995, - [1996] = 1187, - [1997] = 1243, - [1998] = 1156, - [1999] = 1175, - [2000] = 1193, - [2001] = 1222, - [2002] = 1168, - [2003] = 1173, - [2004] = 1180, - [2005] = 1190, - [2006] = 1197, - [2007] = 1214, - [2008] = 1234, - [2009] = 1244, - [2010] = 1261, - [2011] = 1159, - [2012] = 1178, - [2013] = 1183, - [2014] = 1188, - [2015] = 1196, - [2016] = 1201, - [2017] = 1211, - [2018] = 1217, - [2019] = 1225, - [2020] = 1236, - [2021] = 1249, - [2022] = 1253, - [2023] = 1154, - [2024] = 1161, - [2025] = 1164, - [2026] = 1171, - [2027] = 1174, - [2028] = 1185, - [2029] = 1192, - [2030] = 1195, - [2031] = 1199, - [2032] = 1209, - [2033] = 1213, - [2034] = 1215, - [2035] = 1219, - [2036] = 1224, - [2037] = 1228, - [2038] = 1231, - [2039] = 1233, - [2040] = 1238, - [2041] = 1246, - [2042] = 1248, - [2043] = 1132, - [2044] = 1134, - [2045] = 1137, - [2046] = 1139, - [2047] = 1141, - [2048] = 1143, - [2049] = 1146, - [2050] = 1148, - [2051] = 1150, - [2052] = 1152, - [2053] = 1155, - [2054] = 1157, - [2055] = 1160, - [2056] = 1162, - [2057] = 1165, - [2058] = 1167, - [2059] = 1170, - [2060] = 1177, - [2061] = 1179, - [2062] = 1181, - [2063] = 1184, - [2064] = 1186, - [2065] = 1189, - [2066] = 1191, - [2067] = 1194, - [2068] = 1198, - [2069] = 1200, - [2070] = 1131, - [2071] = 1204, - [2072] = 1206, - [2073] = 1208, - [2074] = 1210, - [2075] = 1212, - [2076] = 1216, - [2077] = 1218, - [2078] = 1227, - [2079] = 1229, - [2080] = 108, - [2081] = 2081, - [2082] = 2082, - [2083] = 2083, - [2084] = 958, - [2085] = 1976, - [2086] = 2086, - [2087] = 2087, - [2088] = 1515, - [2089] = 2089, - [2090] = 105, - [2091] = 1473, - [2092] = 959, - [2093] = 886, - [2094] = 334, - [2095] = 369, - [2096] = 960, - [2097] = 961, - [2098] = 967, - [2099] = 1976, - [2100] = 931, - [2101] = 1976, - [2102] = 1473, - [2103] = 1976, - [2104] = 2104, - [2105] = 2105, - [2106] = 1981, - [2107] = 1976, - [2108] = 2108, - [2109] = 106, - [2110] = 2110, - [2111] = 351, - [2112] = 1489, - [2113] = 1489, - [2114] = 960, - [2115] = 967, - [2116] = 937, - [2117] = 1498, - [2118] = 2118, - [2119] = 961, - [2120] = 2120, - [2121] = 1498, - [2122] = 931, - [2123] = 2123, - [2124] = 2124, - [2125] = 967, - [2126] = 699, - [2127] = 357, - [2128] = 2123, - [2129] = 2124, - [2130] = 2123, - [2131] = 2124, - [2132] = 886, - [2133] = 339, - [2134] = 691, - [2135] = 926, - [2136] = 1515, - [2137] = 1251, - [2138] = 1254, - [2139] = 1203, - [2140] = 1133, - [2141] = 1136, - [2142] = 1138, - [2143] = 1140, - [2144] = 1142, - [2145] = 1144, - [2146] = 1145, - [2147] = 1147, - [2148] = 2148, - [2149] = 2149, - [2150] = 899, - [2151] = 2149, - [2152] = 930, - [2153] = 1515, - [2154] = 676, - [2155] = 763, - [2156] = 764, + [1982] = 962, + [1983] = 942, + [1984] = 1984, + [1985] = 1985, + [1986] = 109, + [1987] = 1987, + [1988] = 703, + [1989] = 488, + [1990] = 342, + [1991] = 966, + [1992] = 464, + [1993] = 343, + [1994] = 965, + [1995] = 956, + [1996] = 687, + [1997] = 1180, + [1998] = 956, + [1999] = 958, + [2000] = 960, + [2001] = 961, + [2002] = 888, + [2003] = 2003, + [2004] = 962, + [2005] = 965, + [2006] = 966, + [2007] = 2007, + [2008] = 2008, + [2009] = 497, + [2010] = 510, + [2011] = 488, + [2012] = 527, + [2013] = 2013, + [2014] = 333, + [2015] = 2015, + [2016] = 1472, + [2017] = 2017, + [2018] = 2018, + [2019] = 1159, + [2020] = 1165, + [2021] = 1173, + [2022] = 1177, + [2023] = 2023, + [2024] = 1195, + [2025] = 2025, + [2026] = 1196, + [2027] = 1205, + [2028] = 1216, + [2029] = 1248, + [2030] = 1250, + [2031] = 1251, + [2032] = 1254, + [2033] = 2033, + [2034] = 1139, + [2035] = 1169, + [2036] = 1171, + [2037] = 1175, + [2038] = 1184, + [2039] = 1197, + [2040] = 1215, + [2041] = 1217, + [2042] = 1219, + [2043] = 1225, + [2044] = 1230, + [2045] = 1233, + [2046] = 1237, + [2047] = 1240, + [2048] = 1242, + [2049] = 1249, + [2050] = 1252, + [2051] = 1255, + [2052] = 1257, + [2053] = 1259, + [2054] = 1263, + [2055] = 1264, + [2056] = 1266, + [2057] = 1211, + [2058] = 1145, + [2059] = 1148, + [2060] = 1151, + [2061] = 1162, + [2062] = 1163, + [2063] = 1164, + [2064] = 1166, + [2065] = 1168, + [2066] = 1170, + [2067] = 1172, + [2068] = 1174, + [2069] = 2069, + [2070] = 1178, + [2071] = 1179, + [2072] = 1181, + [2073] = 1182, + [2074] = 1183, + [2075] = 1185, + [2076] = 1186, + [2077] = 1187, + [2078] = 1188, + [2079] = 1189, + [2080] = 1190, + [2081] = 1193, + [2082] = 1194, + [2083] = 1198, + [2084] = 1199, + [2085] = 945, + [2086] = 1202, + [2087] = 1203, + [2088] = 1204, + [2089] = 1206, + [2090] = 1207, + [2091] = 1208, + [2092] = 1209, + [2093] = 1210, + [2094] = 1270, + [2095] = 1212, + [2096] = 1213, + [2097] = 1214, + [2098] = 1218, + [2099] = 1220, + [2100] = 1221, + [2101] = 1222, + [2102] = 1223, + [2103] = 1224, + [2104] = 1226, + [2105] = 1228, + [2106] = 2008, + [2107] = 1231, + [2108] = 1232, + [2109] = 1234, + [2110] = 1235, + [2111] = 1236, + [2112] = 1238, + [2113] = 1239, + [2114] = 1241, + [2115] = 1243, + [2116] = 1244, + [2117] = 1245, + [2118] = 1246, + [2119] = 2119, + [2120] = 107, + [2121] = 2013, + [2122] = 2122, + [2123] = 1472, + [2124] = 109, + [2125] = 334, + [2126] = 2126, + [2127] = 108, + [2128] = 373, + [2129] = 1061, + [2130] = 2130, + [2131] = 2131, + [2132] = 2132, + [2133] = 2013, + [2134] = 2134, + [2135] = 1521, + [2136] = 2013, + [2137] = 2013, + [2138] = 2013, + [2139] = 2013, + [2140] = 942, + [2141] = 1201, + [2142] = 962, + [2143] = 1061, + [2144] = 942, + [2145] = 2145, + [2146] = 2146, + [2147] = 2147, + [2148] = 1510, + [2149] = 1510, + [2150] = 681, + [2151] = 339, + [2152] = 696, + [2153] = 1516, + [2154] = 965, + [2155] = 966, + [2156] = 888, [2157] = 2157, - [2158] = 498, - [2159] = 2157, - [2160] = 343, - [2161] = 2149, - [2162] = 360, - [2163] = 340, - [2164] = 695, - [2165] = 341, - [2166] = 342, - [2167] = 349, - [2168] = 743, - [2169] = 1247, - [2170] = 1251, - [2171] = 943, - [2172] = 1254, - [2173] = 2173, - [2174] = 2174, - [2175] = 1203, + [2158] = 360, + [2159] = 1516, + [2160] = 2157, + [2161] = 2145, + [2162] = 1061, + [2163] = 2157, + [2164] = 2145, + [2165] = 367, + [2166] = 906, + [2167] = 940, + [2168] = 2168, + [2169] = 921, + [2170] = 739, + [2171] = 905, + [2172] = 749, + [2173] = 750, + [2174] = 768, + [2175] = 769, [2176] = 2176, - [2177] = 1133, - [2178] = 694, - [2179] = 744, - [2180] = 491, - [2181] = 887, - [2182] = 368, - [2183] = 951, - [2184] = 1136, - [2185] = 1138, - [2186] = 1140, - [2187] = 1142, - [2188] = 1144, - [2189] = 1145, - [2190] = 1147, - [2191] = 2191, - [2192] = 2149, - [2193] = 924, - [2194] = 746, - [2195] = 2149, - [2196] = 730, - [2197] = 747, - [2198] = 949, - [2199] = 2149, - [2200] = 2149, - [2201] = 540, - [2202] = 2157, - [2203] = 735, - [2204] = 916, - [2205] = 724, - [2206] = 897, - [2207] = 936, - [2208] = 685, - [2209] = 923, - [2210] = 719, - [2211] = 898, - [2212] = 1247, - [2213] = 2213, - [2214] = 2213, - [2215] = 2213, - [2216] = 2213, - [2217] = 2217, - [2218] = 2213, - [2219] = 691, - [2220] = 2213, - [2221] = 2217, - [2222] = 1473, - [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 540, - [2227] = 2227, - [2228] = 343, - [2229] = 341, - [2230] = 342, - [2231] = 2231, + [2177] = 752, + [2178] = 346, + [2179] = 1260, + [2180] = 1265, + [2181] = 1140, + [2182] = 1146, + [2183] = 1149, + [2184] = 1150, + [2185] = 1152, + [2186] = 1153, + [2187] = 1154, + [2188] = 1155, + [2189] = 1156, + [2190] = 1157, + [2191] = 753, + [2192] = 1521, + [2193] = 527, + [2194] = 2194, + [2195] = 347, + [2196] = 348, + [2197] = 349, + [2198] = 2194, + [2199] = 350, + [2200] = 1521, + [2201] = 2176, + [2202] = 351, + [2203] = 2203, + [2204] = 699, + [2205] = 715, + [2206] = 946, + [2207] = 741, + [2208] = 707, + [2209] = 372, + [2210] = 889, + [2211] = 954, + [2212] = 1260, + [2213] = 1265, + [2214] = 1140, + [2215] = 1146, + [2216] = 1149, + [2217] = 695, + [2218] = 1150, + [2219] = 1152, + [2220] = 939, + [2221] = 1153, + [2222] = 1154, + [2223] = 2194, + [2224] = 1155, + [2225] = 2176, + [2226] = 1156, + [2227] = 1157, + [2228] = 2194, + [2229] = 2229, + [2230] = 2230, + [2231] = 2194, [2232] = 2232, - [2233] = 349, - [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 1981, - [2238] = 2238, - [2239] = 1489, - [2240] = 2240, - [2241] = 1498, - [2242] = 360, - [2243] = 340, - [2244] = 691, - [2245] = 1473, - [2246] = 2246, - [2247] = 1498, - [2248] = 1489, - [2249] = 2249, - [2250] = 2250, - [2251] = 1515, - [2252] = 2252, - [2253] = 1515, + [2233] = 949, + [2234] = 2194, + [2235] = 2194, + [2236] = 932, + [2237] = 2176, + [2238] = 928, + [2239] = 491, + [2240] = 931, + [2241] = 498, + [2242] = 726, + [2243] = 731, + [2244] = 970, + [2245] = 2194, + [2246] = 696, + [2247] = 2247, + [2248] = 2248, + [2249] = 2247, + [2250] = 2247, + [2251] = 2247, + [2252] = 2247, + [2253] = 2247, [2254] = 2254, [2255] = 2255, [2256] = 2256, [2257] = 2257, - [2258] = 368, - [2259] = 2259, - [2260] = 2260, - [2261] = 2255, - [2262] = 2254, - [2263] = 336, + [2258] = 2248, + [2259] = 527, + [2260] = 1472, + [2261] = 2261, + [2262] = 2262, + [2263] = 2263, [2264] = 2264, - [2265] = 2265, - [2266] = 2266, - [2267] = 2267, - [2268] = 2268, + [2265] = 2008, + [2266] = 346, + [2267] = 1510, + [2268] = 347, [2269] = 2269, - [2270] = 2270, + [2270] = 1516, [2271] = 2271, [2272] = 2272, - [2273] = 333, - [2274] = 2274, - [2275] = 2275, - [2276] = 2276, - [2277] = 2277, - [2278] = 2278, - [2279] = 2279, + [2273] = 696, + [2274] = 349, + [2275] = 350, + [2276] = 1472, + [2277] = 351, + [2278] = 348, + [2279] = 1521, [2280] = 2280, - [2281] = 2281, - [2282] = 2268, - [2283] = 389, - [2284] = 2284, + [2281] = 1516, + [2282] = 2282, + [2283] = 2283, + [2284] = 1510, [2285] = 2285, [2286] = 2286, - [2287] = 2287, + [2287] = 1521, [2288] = 2288, [2289] = 2289, - [2290] = 338, - [2291] = 353, - [2292] = 412, - [2293] = 399, - [2294] = 2294, + [2290] = 2290, + [2291] = 2291, + [2292] = 2286, + [2293] = 372, + [2294] = 2288, [2295] = 2295, - [2296] = 369, - [2297] = 377, - [2298] = 389, - [2299] = 407, - [2300] = 398, - [2301] = 407, - [2302] = 2302, - [2303] = 2303, - [2304] = 398, - [2305] = 2302, - [2306] = 400, - [2307] = 408, - [2308] = 409, - [2309] = 410, + [2296] = 336, + [2297] = 2297, + [2298] = 2297, + [2299] = 2299, + [2300] = 2300, + [2301] = 2301, + [2302] = 333, + [2303] = 398, + [2304] = 2304, + [2305] = 2305, + [2306] = 2306, + [2307] = 2307, + [2308] = 2308, + [2309] = 2309, [2310] = 2310, [2311] = 2311, - [2312] = 2303, - [2313] = 389, - [2314] = 377, + [2312] = 2312, + [2313] = 2313, + [2314] = 2314, [2315] = 2315, [2316] = 2316, - [2317] = 2315, - [2318] = 2316, - [2319] = 2310, - [2320] = 2311, - [2321] = 92, - [2322] = 93, - [2323] = 410, - [2324] = 98, - [2325] = 377, - [2326] = 389, - [2327] = 93, - [2328] = 92, + [2317] = 2317, + [2318] = 2318, + [2319] = 2319, + [2320] = 2320, + [2321] = 2321, + [2322] = 2322, + [2323] = 342, + [2324] = 343, + [2325] = 404, + [2326] = 402, + [2327] = 2327, + [2328] = 2328, [2329] = 398, - [2330] = 407, - [2331] = 446, - [2332] = 408, - [2333] = 400, - [2334] = 409, - [2335] = 99, - [2336] = 108, - [2337] = 442, - [2338] = 446, - [2339] = 106, - [2340] = 377, - [2341] = 400, - [2342] = 105, - [2343] = 408, - [2344] = 409, - [2345] = 410, - [2346] = 407, - [2347] = 98, - [2348] = 444, - [2349] = 486, - [2350] = 93, - [2351] = 493, - [2352] = 92, - [2353] = 398, - [2354] = 99, - [2355] = 108, - [2356] = 410, + [2330] = 373, + [2331] = 410, + [2332] = 400, + [2333] = 414, + [2334] = 408, + [2335] = 2335, + [2336] = 93, + [2337] = 2337, + [2338] = 2338, + [2339] = 2339, + [2340] = 92, + [2341] = 2338, + [2342] = 414, + [2343] = 2339, + [2344] = 410, + [2345] = 400, + [2346] = 2346, + [2347] = 411, + [2348] = 2335, + [2349] = 412, + [2350] = 407, + [2351] = 2351, + [2352] = 398, + [2353] = 2337, + [2354] = 2351, + [2355] = 2346, + [2356] = 438, [2357] = 92, - [2358] = 400, - [2359] = 336, - [2360] = 470, - [2361] = 1473, - [2362] = 2362, - [2363] = 446, - [2364] = 412, - [2365] = 442, - [2366] = 459, - [2367] = 399, - [2368] = 93, - [2369] = 444, - [2370] = 2370, - [2371] = 99, - [2372] = 2372, - [2373] = 2373, - [2374] = 336, - [2375] = 105, - [2376] = 2376, - [2377] = 408, - [2378] = 389, - [2379] = 106, - [2380] = 98, - [2381] = 409, - [2382] = 333, - [2383] = 398, - [2384] = 442, - [2385] = 1489, - [2386] = 1498, - [2387] = 338, - [2388] = 399, - [2389] = 2389, + [2358] = 99, + [2359] = 93, + [2360] = 94, + [2361] = 414, + [2362] = 400, + [2363] = 411, + [2364] = 398, + [2365] = 410, + [2366] = 408, + [2367] = 412, + [2368] = 407, + [2369] = 93, + [2370] = 109, + [2371] = 411, + [2372] = 94, + [2373] = 410, + [2374] = 414, + [2375] = 438, + [2376] = 453, + [2377] = 333, + [2378] = 99, + [2379] = 346, + [2380] = 408, + [2381] = 412, + [2382] = 407, + [2383] = 347, + [2384] = 495, + [2385] = 348, + [2386] = 503, + [2387] = 441, + [2388] = 336, + [2389] = 400, [2390] = 349, - [2391] = 106, - [2392] = 377, - [2393] = 99, - [2394] = 333, + [2391] = 336, + [2392] = 107, + [2393] = 350, + [2394] = 351, [2395] = 92, - [2396] = 93, - [2397] = 446, - [2398] = 500, - [2399] = 98, - [2400] = 503, - [2401] = 490, - [2402] = 2402, - [2403] = 342, - [2404] = 336, - [2405] = 470, - [2406] = 642, - [2407] = 353, - [2408] = 340, - [2409] = 645, - [2410] = 108, - [2411] = 341, - [2412] = 412, - [2413] = 497, - [2414] = 484, - [2415] = 485, - [2416] = 489, + [2396] = 108, + [2397] = 333, + [2398] = 464, + [2399] = 404, + [2400] = 2400, + [2401] = 1472, + [2402] = 398, + [2403] = 99, + [2404] = 2404, + [2405] = 107, + [2406] = 453, + [2407] = 408, + [2408] = 412, + [2409] = 438, + [2410] = 441, + [2411] = 93, + [2412] = 2412, + [2413] = 482, + [2414] = 342, + [2415] = 402, + [2416] = 108, [2417] = 2417, - [2418] = 407, - [2419] = 459, - [2420] = 343, - [2421] = 105, - [2422] = 360, - [2423] = 444, - [2424] = 490, - [2425] = 333, - [2426] = 106, - [2427] = 408, - [2428] = 409, - [2429] = 410, - [2430] = 338, - [2431] = 444, - [2432] = 412, - [2433] = 642, - [2434] = 353, - [2435] = 442, - [2436] = 645, - [2437] = 400, - [2438] = 503, - [2439] = 1515, - [2440] = 105, - [2441] = 349, - [2442] = 99, - [2443] = 442, + [2418] = 2418, + [2419] = 411, + [2420] = 94, + [2421] = 92, + [2422] = 109, + [2423] = 407, + [2424] = 343, + [2425] = 453, + [2426] = 93, + [2427] = 2427, + [2428] = 92, + [2429] = 94, + [2430] = 404, + [2431] = 2431, + [2432] = 497, + [2433] = 99, + [2434] = 510, + [2435] = 1510, + [2436] = 488, + [2437] = 333, + [2438] = 1516, + [2439] = 402, + [2440] = 373, + [2441] = 107, + [2442] = 464, + [2443] = 526, [2444] = 2444, - [2445] = 334, - [2446] = 360, - [2447] = 444, - [2448] = 1841, - [2449] = 459, - [2450] = 108, - [2451] = 341, - [2452] = 98, - [2453] = 500, - [2454] = 343, - [2455] = 336, - [2456] = 399, - [2457] = 340, - [2458] = 342, - [2459] = 369, - [2460] = 470, - [2461] = 369, - [2462] = 360, - [2463] = 342, - [2464] = 2464, - [2465] = 349, - [2466] = 489, - [2467] = 2467, - [2468] = 500, - [2469] = 1841, - [2470] = 484, - [2471] = 459, - [2472] = 343, - [2473] = 106, - [2474] = 485, - [2475] = 2475, - [2476] = 351, - [2477] = 486, - [2478] = 697, - [2479] = 497, - [2480] = 444, - [2481] = 2481, - [2482] = 442, - [2483] = 108, - [2484] = 2464, - [2485] = 2464, - [2486] = 341, - [2487] = 490, - [2488] = 444, - [2489] = 338, - [2490] = 340, - [2491] = 399, - [2492] = 353, - [2493] = 470, - [2494] = 333, - [2495] = 2464, - [2496] = 2496, - [2497] = 2497, - [2498] = 412, - [2499] = 470, - [2500] = 704, - [2501] = 692, - [2502] = 675, - [2503] = 698, - [2504] = 442, - [2505] = 642, - [2506] = 369, - [2507] = 105, - [2508] = 357, - [2509] = 645, - [2510] = 459, - [2511] = 339, - [2512] = 334, - [2513] = 493, - [2514] = 503, - [2515] = 937, - [2516] = 485, + [2445] = 336, + [2446] = 528, + [2447] = 482, + [2448] = 109, + [2449] = 108, + [2450] = 414, + [2451] = 400, + [2452] = 410, + [2453] = 505, + [2454] = 493, + [2455] = 334, + [2456] = 485, + [2457] = 509, + [2458] = 373, + [2459] = 342, + [2460] = 343, + [2461] = 438, + [2462] = 441, + [2463] = 488, + [2464] = 336, + [2465] = 528, + [2466] = 342, + [2467] = 453, + [2468] = 404, + [2469] = 343, + [2470] = 349, + [2471] = 350, + [2472] = 351, + [2473] = 94, + [2474] = 99, + [2475] = 441, + [2476] = 108, + [2477] = 497, + [2478] = 408, + [2479] = 526, + [2480] = 412, + [2481] = 407, + [2482] = 510, + [2483] = 346, + [2484] = 347, + [2485] = 411, + [2486] = 109, + [2487] = 402, + [2488] = 333, + [2489] = 1521, + [2490] = 464, + [2491] = 107, + [2492] = 2492, + [2493] = 1863, + [2494] = 482, + [2495] = 441, + [2496] = 453, + [2497] = 367, + [2498] = 348, + [2499] = 339, + [2500] = 360, + [2501] = 687, + [2502] = 333, + [2503] = 2503, + [2504] = 464, + [2505] = 441, + [2506] = 2506, + [2507] = 503, + [2508] = 404, + [2509] = 2509, + [2510] = 441, + [2511] = 2511, + [2512] = 2512, + [2513] = 348, + [2514] = 109, + [2515] = 336, + [2516] = 342, [2517] = 2517, - [2518] = 369, - [2519] = 489, - [2520] = 2497, - [2521] = 2521, - [2522] = 886, - [2523] = 941, - [2524] = 961, - [2525] = 459, - [2526] = 2526, - [2527] = 960, - [2528] = 948, - [2529] = 503, + [2518] = 2518, + [2519] = 334, + [2520] = 505, + [2521] = 453, + [2522] = 485, + [2523] = 108, + [2524] = 373, + [2525] = 495, + [2526] = 493, + [2527] = 402, + [2528] = 1863, + [2529] = 482, [2530] = 2530, - [2531] = 500, - [2532] = 357, - [2533] = 954, - [2534] = 958, - [2535] = 959, - [2536] = 341, - [2537] = 2537, - [2538] = 2538, + [2531] = 350, + [2532] = 351, + [2533] = 2533, + [2534] = 333, + [2535] = 2530, + [2536] = 2536, + [2537] = 497, + [2538] = 509, [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 339, - [2543] = 442, - [2544] = 342, - [2545] = 2545, - [2546] = 931, + [2540] = 528, + [2541] = 343, + [2542] = 510, + [2543] = 488, + [2544] = 2544, + [2545] = 464, + [2546] = 453, [2547] = 2547, - [2548] = 343, - [2549] = 2549, - [2550] = 444, - [2551] = 334, - [2552] = 349, - [2553] = 497, - [2554] = 493, - [2555] = 470, - [2556] = 338, - [2557] = 486, - [2558] = 500, - [2559] = 490, - [2560] = 645, - [2561] = 360, - [2562] = 2475, - [2563] = 2537, - [2564] = 697, - [2565] = 642, - [2566] = 351, - [2567] = 2567, - [2568] = 340, - [2569] = 503, - [2570] = 2570, - [2571] = 490, - [2572] = 459, - [2573] = 484, - [2574] = 2481, - [2575] = 353, - [2576] = 704, - [2577] = 470, - [2578] = 692, - [2579] = 675, - [2580] = 698, - [2581] = 2581, - [2582] = 444, - [2583] = 503, - [2584] = 2584, - [2585] = 2538, - [2586] = 459, - [2587] = 937, - [2588] = 503, - [2589] = 490, - [2590] = 2590, - [2591] = 490, - [2592] = 2592, - [2593] = 2567, - [2594] = 493, - [2595] = 500, - [2596] = 491, - [2597] = 2597, - [2598] = 2598, - [2599] = 489, - [2600] = 948, - [2601] = 465, - [2602] = 497, - [2603] = 954, - [2604] = 697, - [2605] = 704, - [2606] = 692, - [2607] = 675, - [2608] = 698, - [2609] = 351, - [2610] = 500, - [2611] = 339, - [2612] = 642, - [2613] = 2547, - [2614] = 958, - [2615] = 466, - [2616] = 491, - [2617] = 486, - [2618] = 959, - [2619] = 960, - [2620] = 967, + [2548] = 347, + [2549] = 713, + [2550] = 2550, + [2551] = 2530, + [2552] = 700, + [2553] = 686, + [2554] = 346, + [2555] = 688, + [2556] = 2530, + [2557] = 107, + [2558] = 482, + [2559] = 526, + [2560] = 349, + [2561] = 503, + [2562] = 958, + [2563] = 960, + [2564] = 2564, + [2565] = 2565, + [2566] = 510, + [2567] = 961, + [2568] = 346, + [2569] = 493, + [2570] = 488, + [2571] = 333, + [2572] = 2572, + [2573] = 2573, + [2574] = 488, + [2575] = 339, + [2576] = 346, + [2577] = 441, + [2578] = 464, + [2579] = 464, + [2580] = 2580, + [2581] = 2544, + [2582] = 2582, + [2583] = 360, + [2584] = 347, + [2585] = 497, + [2586] = 348, + [2587] = 2587, + [2588] = 2536, + [2589] = 526, + [2590] = 962, + [2591] = 2591, + [2592] = 495, + [2593] = 349, + [2594] = 349, + [2595] = 350, + [2596] = 2596, + [2597] = 336, + [2598] = 485, + [2599] = 2599, + [2600] = 509, + [2601] = 482, + [2602] = 351, + [2603] = 367, + [2604] = 482, + [2605] = 713, + [2606] = 2596, + [2607] = 888, + [2608] = 342, + [2609] = 343, + [2610] = 965, + [2611] = 966, + [2612] = 485, + [2613] = 942, + [2614] = 350, + [2615] = 351, + [2616] = 2616, + [2617] = 2617, + [2618] = 2618, + [2619] = 510, + [2620] = 2620, [2621] = 2621, - [2622] = 498, - [2623] = 2623, - [2624] = 498, - [2625] = 485, - [2626] = 941, - [2627] = 368, - [2628] = 2521, - [2629] = 442, - [2630] = 2539, - [2631] = 2631, - [2632] = 2581, - [2633] = 484, - [2634] = 1940, - [2635] = 2549, - [2636] = 2545, - [2637] = 645, - [2638] = 470, - [2639] = 961, - [2640] = 357, - [2641] = 931, - [2642] = 886, + [2622] = 342, + [2623] = 528, + [2624] = 347, + [2625] = 348, + [2626] = 343, + [2627] = 453, + [2628] = 373, + [2629] = 700, + [2630] = 505, + [2631] = 686, + [2632] = 687, + [2633] = 688, + [2634] = 945, + [2635] = 497, + [2636] = 2636, + [2637] = 505, + [2638] = 2638, + [2639] = 2503, + [2640] = 509, + [2641] = 956, + [2642] = 334, [2643] = 2643, - [2644] = 498, - [2645] = 697, - [2646] = 2646, - [2647] = 2647, - [2648] = 2648, - [2649] = 2649, - [2650] = 2650, - [2651] = 442, - [2652] = 2652, - [2653] = 2653, - [2654] = 2654, - [2655] = 2655, - [2656] = 2656, - [2657] = 2657, - [2658] = 2658, - [2659] = 2659, + [2644] = 497, + [2645] = 491, + [2646] = 488, + [2647] = 367, + [2648] = 510, + [2649] = 2564, + [2650] = 509, + [2651] = 2651, + [2652] = 441, + [2653] = 488, + [2654] = 713, + [2655] = 700, + [2656] = 686, + [2657] = 687, + [2658] = 688, + [2659] = 485, [2660] = 2660, - [2661] = 2661, - [2662] = 2662, - [2663] = 2663, - [2664] = 2664, - [2665] = 2665, - [2666] = 2666, - [2667] = 2667, - [2668] = 2668, - [2669] = 2669, - [2670] = 2670, - [2671] = 2671, - [2672] = 2672, - [2673] = 2673, - [2674] = 2674, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2678, + [2661] = 958, + [2662] = 2636, + [2663] = 372, + [2664] = 503, + [2665] = 942, + [2666] = 339, + [2667] = 483, + [2668] = 343, + [2669] = 528, + [2670] = 497, + [2671] = 505, + [2672] = 965, + [2673] = 2573, + [2674] = 471, + [2675] = 509, + [2676] = 2638, + [2677] = 966, + [2678] = 498, [2679] = 2679, [2680] = 2680, - [2681] = 444, - [2682] = 704, - [2683] = 444, + [2681] = 495, + [2682] = 2587, + [2683] = 505, [2684] = 2684, [2685] = 2685, - [2686] = 2686, - [2687] = 2687, - [2688] = 2688, - [2689] = 2689, - [2690] = 2690, - [2691] = 2691, - [2692] = 2692, - [2693] = 2693, - [2694] = 2694, - [2695] = 937, - [2696] = 470, - [2697] = 2697, - [2698] = 2698, - [2699] = 941, - [2700] = 2700, - [2701] = 368, - [2702] = 2702, - [2703] = 2703, - [2704] = 692, - [2705] = 675, - [2706] = 698, - [2707] = 948, - [2708] = 954, - [2709] = 459, - [2710] = 958, - [2711] = 2711, - [2712] = 2712, - [2713] = 959, - [2714] = 2714, + [2686] = 2616, + [2687] = 960, + [2688] = 493, + [2689] = 360, + [2690] = 373, + [2691] = 2587, + [2692] = 334, + [2693] = 961, + [2694] = 485, + [2695] = 888, + [2696] = 491, + [2697] = 2617, + [2698] = 2621, + [2699] = 482, + [2700] = 956, + [2701] = 962, + [2702] = 526, + [2703] = 1962, + [2704] = 453, + [2705] = 2591, + [2706] = 1061, + [2707] = 2707, + [2708] = 498, + [2709] = 2709, + [2710] = 342, + [2711] = 510, + [2712] = 945, + [2713] = 2713, + [2714] = 464, [2715] = 2715, - [2716] = 886, - [2717] = 960, - [2718] = 2718, - [2719] = 2719, + [2716] = 2716, + [2717] = 2717, + [2718] = 498, + [2719] = 373, [2720] = 2720, - [2721] = 2597, - [2722] = 961, - [2723] = 931, + [2721] = 2721, + [2722] = 491, + [2723] = 453, [2724] = 2724, [2725] = 2725, [2726] = 2726, [2727] = 2727, - [2728] = 2598, + [2728] = 2728, [2729] = 2729, [2730] = 2730, [2731] = 2731, [2732] = 2732, - [2733] = 702, - [2734] = 703, + [2733] = 2733, + [2734] = 2734, [2735] = 2735, - [2736] = 710, - [2737] = 674, + [2736] = 2736, + [2737] = 2737, [2738] = 2738, [2739] = 2739, [2740] = 2740, @@ -7569,20 +7593,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2753] = 2753, [2754] = 2754, [2755] = 2755, - [2756] = 465, + [2756] = 2756, [2757] = 2757, [2758] = 2758, - [2759] = 2759, - [2760] = 1940, - [2761] = 466, + [2759] = 441, + [2760] = 2760, + [2761] = 441, [2762] = 2762, [2763] = 2763, - [2764] = 500, + [2764] = 2764, [2765] = 2765, [2766] = 2766, [2767] = 2767, - [2768] = 503, - [2769] = 490, + [2768] = 2768, + [2769] = 2769, [2770] = 2770, [2771] = 2771, [2772] = 2772, @@ -7597,2426 +7621,2602 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2781] = 2781, [2782] = 2782, [2783] = 2783, - [2784] = 491, + [2784] = 713, [2785] = 2785, [2786] = 2786, [2787] = 2787, [2788] = 2788, [2789] = 2789, - [2790] = 1980, - [2791] = 484, - [2792] = 486, - [2793] = 489, - [2794] = 493, - [2795] = 497, - [2796] = 485, + [2790] = 2790, + [2791] = 2791, + [2792] = 2792, + [2793] = 2793, + [2794] = 942, + [2795] = 2795, + [2796] = 464, [2797] = 2797, [2798] = 2798, - [2799] = 2799, + [2799] = 700, [2800] = 2800, - [2801] = 2801, + [2801] = 945, [2802] = 2802, [2803] = 2803, - [2804] = 2804, - [2805] = 2805, - [2806] = 2806, - [2807] = 2807, + [2804] = 1962, + [2805] = 956, + [2806] = 958, + [2807] = 482, [2808] = 2808, - [2809] = 2809, - [2810] = 2810, + [2809] = 960, + [2810] = 961, [2811] = 2811, [2812] = 2812, - [2813] = 2813, - [2814] = 2814, - [2815] = 967, - [2816] = 941, - [2817] = 503, - [2818] = 2818, - [2819] = 490, - [2820] = 676, - [2821] = 2821, - [2822] = 2541, - [2823] = 2743, - [2824] = 702, - [2825] = 459, - [2826] = 923, - [2827] = 2744, + [2813] = 888, + [2814] = 962, + [2815] = 2815, + [2816] = 966, + [2817] = 372, + [2818] = 686, + [2819] = 2587, + [2820] = 687, + [2821] = 688, + [2822] = 1061, + [2823] = 2823, + [2824] = 2824, + [2825] = 2825, + [2826] = 2826, + [2827] = 2827, [2828] = 2828, - [2829] = 2570, - [2830] = 1980, - [2831] = 2745, - [2832] = 2762, - [2833] = 2530, - [2834] = 703, - [2835] = 2540, - [2836] = 886, - [2837] = 961, - [2838] = 931, + [2829] = 2829, + [2830] = 2830, + [2831] = 493, + [2832] = 495, + [2833] = 509, + [2834] = 503, + [2835] = 505, + [2836] = 485, + [2837] = 2837, + [2838] = 2838, [2839] = 2839, [2840] = 2840, - [2841] = 2779, - [2842] = 2530, - [2843] = 899, - [2844] = 2780, - [2845] = 2782, + [2841] = 2841, + [2842] = 722, + [2843] = 2843, + [2844] = 2844, + [2845] = 717, [2846] = 2846, [2847] = 2847, [2848] = 2848, [2849] = 2849, - [2850] = 2783, - [2851] = 2786, + [2850] = 2850, + [2851] = 2851, [2852] = 2852, - [2853] = 2797, - [2854] = 2798, - [2855] = 2799, - [2856] = 2800, + [2853] = 2853, + [2854] = 691, + [2855] = 721, + [2856] = 2587, [2857] = 2857, - [2858] = 2801, - [2859] = 2802, - [2860] = 2803, - [2861] = 2805, - [2862] = 2808, - [2863] = 368, - [2864] = 2809, - [2865] = 2810, + [2858] = 2858, + [2859] = 2859, + [2860] = 2860, + [2861] = 2861, + [2862] = 2862, + [2863] = 471, + [2864] = 2713, + [2865] = 2865, [2866] = 2866, [2867] = 2867, - [2868] = 466, - [2869] = 2517, - [2870] = 2526, - [2871] = 2871, - [2872] = 960, - [2873] = 948, - [2874] = 2541, - [2875] = 954, - [2876] = 937, - [2877] = 710, - [2878] = 674, - [2879] = 2879, - [2880] = 2880, - [2881] = 699, - [2882] = 444, - [2883] = 470, - [2884] = 697, - [2885] = 2540, - [2886] = 704, + [2868] = 2680, + [2869] = 2869, + [2870] = 334, + [2871] = 360, + [2872] = 2824, + [2873] = 497, + [2874] = 2874, + [2875] = 483, + [2876] = 367, + [2877] = 2877, + [2878] = 510, + [2879] = 339, + [2880] = 488, + [2881] = 2881, + [2882] = 2882, + [2883] = 2824, + [2884] = 2884, + [2885] = 2122, + [2886] = 2886, [2887] = 2887, - [2888] = 958, + [2888] = 2888, [2889] = 2889, - [2890] = 2813, + [2890] = 2890, [2891] = 2891, - [2892] = 389, - [2893] = 2789, - [2894] = 959, - [2895] = 2711, - [2896] = 967, - [2897] = 2570, - [2898] = 699, - [2899] = 930, - [2900] = 465, - [2901] = 2879, - [2902] = 2880, - [2903] = 500, - [2904] = 685, + [2892] = 2892, + [2893] = 2893, + [2894] = 2894, + [2895] = 2895, + [2896] = 2896, + [2897] = 2897, + [2898] = 2898, + [2899] = 2899, + [2900] = 2900, + [2901] = 2901, + [2902] = 2902, + [2903] = 2903, + [2904] = 965, [2905] = 2905, - [2906] = 692, - [2907] = 2517, - [2908] = 2526, - [2909] = 675, - [2910] = 2887, + [2906] = 2717, + [2907] = 2858, + [2908] = 2908, + [2909] = 2900, + [2910] = 956, [2911] = 2911, - [2912] = 2889, - [2913] = 698, - [2914] = 936, - [2915] = 2812, - [2916] = 2916, - [2917] = 2917, - [2918] = 2918, + [2912] = 2912, + [2913] = 695, + [2914] = 939, + [2915] = 471, + [2916] = 958, + [2917] = 2533, + [2918] = 497, [2919] = 2919, - [2920] = 763, - [2921] = 764, - [2922] = 2530, - [2923] = 444, - [2924] = 743, - [2925] = 744, - [2926] = 2857, - [2927] = 2927, - [2928] = 2928, - [2929] = 2905, - [2930] = 888, - [2931] = 724, - [2932] = 936, - [2933] = 2191, - [2934] = 724, - [2935] = 676, - [2936] = 949, - [2937] = 2937, - [2938] = 2846, - [2939] = 2849, - [2940] = 2570, - [2941] = 377, - [2942] = 897, - [2943] = 898, + [2920] = 961, + [2921] = 686, + [2922] = 687, + [2923] = 2897, + [2924] = 2924, + [2925] = 949, + [2926] = 2517, + [2927] = 483, + [2928] = 2517, + [2929] = 510, + [2930] = 2539, + [2931] = 888, + [2932] = 2932, + [2933] = 2933, + [2934] = 2934, + [2935] = 2935, + [2936] = 360, + [2937] = 932, + [2938] = 2533, + [2939] = 2939, + [2940] = 2899, + [2941] = 962, + [2942] = 2122, + [2943] = 372, [2944] = 2944, - [2945] = 2945, - [2946] = 2946, - [2947] = 730, - [2948] = 2948, - [2949] = 389, - [2950] = 2950, - [2951] = 730, - [2952] = 746, - [2953] = 2818, - [2954] = 747, - [2955] = 2955, - [2956] = 2176, - [2957] = 2867, - [2958] = 2540, - [2959] = 2517, - [2960] = 389, - [2961] = 2961, - [2962] = 2839, - [2963] = 2963, - [2964] = 2964, - [2965] = 2526, + [2945] = 488, + [2946] = 945, + [2947] = 2812, + [2948] = 2933, + [2949] = 2934, + [2950] = 942, + [2951] = 688, + [2952] = 965, + [2953] = 966, + [2954] = 2877, + [2955] = 2775, + [2956] = 2956, + [2957] = 2874, + [2958] = 2958, + [2959] = 2506, + [2960] = 441, + [2961] = 2509, + [2962] = 2511, + [2963] = 2512, + [2964] = 2896, + [2965] = 2830, [2966] = 2966, - [2967] = 2967, - [2968] = 930, - [2969] = 2969, - [2970] = 2970, - [2971] = 2971, + [2967] = 2881, + [2968] = 2826, + [2969] = 367, + [2970] = 2827, + [2971] = 398, [2972] = 2972, - [2973] = 2973, - [2974] = 2974, + [2973] = 2886, + [2974] = 2903, [2975] = 2975, [2976] = 2976, - [2977] = 720, - [2978] = 886, - [2979] = 721, - [2980] = 937, - [2981] = 722, - [2982] = 723, - [2983] = 941, - [2984] = 503, - [2985] = 2985, + [2977] = 482, + [2978] = 2506, + [2979] = 2889, + [2980] = 2829, + [2981] = 339, + [2982] = 2982, + [2983] = 2902, + [2984] = 2547, + [2985] = 2770, [2986] = 2986, - [2987] = 735, - [2988] = 2988, - [2989] = 948, - [2990] = 2990, - [2991] = 954, - [2992] = 2992, - [2993] = 958, - [2994] = 959, - [2995] = 490, - [2996] = 726, - [2997] = 727, - [2998] = 728, - [2999] = 389, - [3000] = 763, - [3001] = 967, - [3002] = 764, - [3003] = 3003, - [3004] = 398, - [3005] = 3005, - [3006] = 736, - [3007] = 960, - [3008] = 737, - [3009] = 2840, - [3010] = 739, - [3011] = 740, - [3012] = 741, - [3013] = 742, - [3014] = 961, - [3015] = 931, - [3016] = 3016, - [3017] = 916, - [3018] = 949, - [3019] = 897, - [3020] = 695, - [3021] = 943, - [3022] = 898, - [3023] = 694, - [3024] = 3024, - [3025] = 899, - [3026] = 3026, - [3027] = 887, - [3028] = 3028, - [3029] = 2891, - [3030] = 951, - [3031] = 3031, - [3032] = 735, - [3033] = 3033, - [3034] = 916, - [3035] = 951, - [3036] = 3036, - [3037] = 3037, - [3038] = 924, - [3039] = 407, - [3040] = 3040, - [3041] = 3041, + [2987] = 2509, + [2988] = 2857, + [2989] = 2896, + [2990] = 906, + [2991] = 2897, + [2992] = 2899, + [2993] = 2900, + [2994] = 691, + [2995] = 721, + [2996] = 2539, + [2997] = 2771, + [2998] = 2773, + [2999] = 2828, + [3000] = 681, + [3001] = 2976, + [3002] = 2982, + [3003] = 2824, + [3004] = 3004, + [3005] = 722, + [3006] = 717, + [3007] = 713, + [3008] = 2774, + [3009] = 3009, + [3010] = 2867, + [3011] = 700, + [3012] = 2884, + [3013] = 2547, + [3014] = 2892, + [3015] = 2898, + [3016] = 681, + [3017] = 2901, + [3018] = 715, + [3019] = 960, + [3020] = 3020, + [3021] = 1061, + [3022] = 464, + [3023] = 946, + [3024] = 905, + [3025] = 3025, + [3026] = 715, + [3027] = 739, + [3028] = 2896, + [3029] = 741, + [3030] = 921, + [3031] = 2517, + [3032] = 3032, + [3033] = 932, + [3034] = 928, + [3035] = 2897, + [3036] = 527, + [3037] = 931, + [3038] = 3038, + [3039] = 414, + [3040] = 2203, + [3041] = 695, [3042] = 3042, [3043] = 3043, - [3044] = 3044, - [3045] = 685, - [3046] = 2541, - [3047] = 3047, - [3048] = 3048, - [3049] = 746, - [3050] = 923, - [3051] = 924, - [3052] = 926, - [3053] = 3053, + [3044] = 2539, + [3045] = 726, + [3046] = 2932, + [3047] = 2897, + [3048] = 749, + [3049] = 750, + [3050] = 739, + [3051] = 2825, + [3052] = 752, + [3053] = 753, [3054] = 3054, - [3055] = 500, - [3056] = 695, - [3057] = 3057, - [3058] = 926, - [3059] = 719, - [3060] = 2174, - [3061] = 943, - [3062] = 694, - [3063] = 743, - [3064] = 699, - [3065] = 540, - [3066] = 744, - [3067] = 747, - [3068] = 887, - [3069] = 3069, - [3070] = 2173, - [3071] = 3071, - [3072] = 719, + [3055] = 932, + [3056] = 410, + [3057] = 768, + [3058] = 769, + [3059] = 2905, + [3060] = 2896, + [3061] = 2539, + [3062] = 2919, + [3063] = 906, + [3064] = 3020, + [3065] = 741, + [3066] = 2517, + [3067] = 921, + [3068] = 2511, + [3069] = 2512, + [3070] = 2229, + [3071] = 2230, + [3072] = 2232, [3073] = 3073, - [3074] = 738, - [3075] = 408, + [3074] = 1061, + [3075] = 3075, [3076] = 3076, - [3077] = 3077, - [3078] = 916, + [3077] = 731, + [3078] = 400, [3079] = 3079, - [3080] = 389, - [3081] = 2955, - [3082] = 400, + [3080] = 3080, + [3081] = 939, + [3082] = 3082, [3083] = 3083, - [3084] = 724, - [3085] = 2970, - [3086] = 3037, - [3087] = 3087, + [3084] = 949, + [3085] = 3085, + [3086] = 3086, + [3087] = 2899, [3088] = 3088, - [3089] = 887, - [3090] = 398, - [3091] = 743, - [3092] = 2967, + [3089] = 699, + [3090] = 3090, + [3091] = 946, + [3092] = 707, [3093] = 3093, - [3094] = 936, - [3095] = 3095, - [3096] = 3096, - [3097] = 3036, - [3098] = 744, - [3099] = 398, - [3100] = 2986, - [3101] = 726, - [3102] = 3102, - [3103] = 727, - [3104] = 691, - [3105] = 3105, - [3106] = 3076, - [3107] = 746, - [3108] = 377, + [3094] = 749, + [3095] = 750, + [3096] = 2547, + [3097] = 3004, + [3098] = 2533, + [3099] = 2899, + [3100] = 970, + [3101] = 2547, + [3102] = 889, + [3103] = 2900, + [3104] = 441, + [3105] = 954, + [3106] = 372, + [3107] = 3107, + [3108] = 3108, [3109] = 3109, - [3110] = 736, - [3111] = 737, - [3112] = 738, + [3110] = 398, + [3111] = 3111, + [3112] = 3112, [3113] = 3113, - [3114] = 3114, + [3114] = 940, [3115] = 3115, [3116] = 3116, [3117] = 3117, [3118] = 3118, - [3119] = 377, - [3120] = 3120, - [3121] = 739, - [3122] = 3003, - [3123] = 3005, - [3124] = 3016, - [3125] = 740, - [3126] = 3073, - [3127] = 407, - [3128] = 3128, - [3129] = 3129, - [3130] = 728, - [3131] = 3131, - [3132] = 741, - [3133] = 951, - [3134] = 3134, - [3135] = 2173, - [3136] = 3136, + [3119] = 2924, + [3120] = 890, + [3121] = 940, + [3122] = 752, + [3123] = 753, + [3124] = 3124, + [3125] = 888, + [3126] = 2533, + [3127] = 942, + [3128] = 945, + [3129] = 905, + [3130] = 3130, + [3131] = 2944, + [3132] = 906, + [3133] = 956, + [3134] = 958, + [3135] = 960, + [3136] = 961, [3137] = 3137, - [3138] = 742, + [3138] = 3138, [3139] = 3139, [3140] = 3140, - [3141] = 747, + [3141] = 3141, [3142] = 3142, - [3143] = 930, + [3143] = 3143, [3144] = 3144, - [3145] = 3145, - [3146] = 3146, - [3147] = 2174, - [3148] = 949, - [3149] = 407, - [3150] = 2988, - [3151] = 3151, - [3152] = 2176, - [3153] = 924, - [3154] = 409, - [3155] = 926, - [3156] = 730, - [3157] = 3157, - [3158] = 3158, - [3159] = 3076, - [3160] = 410, - [3161] = 3161, - [3162] = 897, - [3163] = 719, - [3164] = 398, - [3165] = 695, - [3166] = 2971, + [3145] = 398, + [3146] = 2506, + [3147] = 727, + [3148] = 728, + [3149] = 2823, + [3150] = 2509, + [3151] = 962, + [3152] = 729, + [3153] = 2900, + [3154] = 3154, + [3155] = 730, + [3156] = 398, + [3157] = 965, + [3158] = 2582, + [3159] = 939, + [3160] = 966, + [3161] = 2620, + [3162] = 2651, + [3163] = 3163, + [3164] = 3164, + [3165] = 3165, + [3166] = 2565, [3167] = 3167, - [3168] = 898, - [3169] = 3169, - [3170] = 2972, - [3171] = 3077, - [3172] = 3083, - [3173] = 3173, - [3174] = 3088, - [3175] = 407, - [3176] = 2973, - [3177] = 720, - [3178] = 389, - [3179] = 3179, - [3180] = 943, - [3181] = 2974, - [3182] = 721, - [3183] = 3040, - [3184] = 3069, - [3185] = 3071, - [3186] = 2944, - [3187] = 3028, - [3188] = 2919, - [3189] = 2950, - [3190] = 2963, - [3191] = 3044, - [3192] = 3047, - [3193] = 3057, - [3194] = 2937, - [3195] = 722, - [3196] = 2975, - [3197] = 735, - [3198] = 3198, - [3199] = 723, - [3200] = 377, - [3201] = 888, - [3202] = 3198, - [3203] = 694, - [3204] = 2191, - [3205] = 763, - [3206] = 764, - [3207] = 3207, - [3208] = 3208, - [3209] = 2967, - [3210] = 2985, - [3211] = 3211, - [3212] = 899, - [3213] = 923, - [3214] = 3040, - [3215] = 3215, - [3216] = 3216, - [3217] = 3217, + [3168] = 3168, + [3169] = 497, + [3170] = 3170, + [3171] = 735, + [3172] = 736, + [3173] = 737, + [3174] = 928, + [3175] = 931, + [3176] = 3176, + [3177] = 510, + [3178] = 3178, + [3179] = 742, + [3180] = 3180, + [3181] = 743, + [3182] = 744, + [3183] = 745, + [3184] = 2572, + [3185] = 746, + [3186] = 747, + [3187] = 488, + [3188] = 748, + [3189] = 699, + [3190] = 726, + [3191] = 2643, + [3192] = 707, + [3193] = 3193, + [3194] = 2580, + [3195] = 3195, + [3196] = 2599, + [3197] = 2618, + [3198] = 889, + [3199] = 954, + [3200] = 2956, + [3201] = 681, + [3202] = 768, + [3203] = 769, + [3204] = 949, + [3205] = 3205, + [3206] = 731, + [3207] = 2506, + [3208] = 2975, + [3209] = 2509, + [3210] = 3210, + [3211] = 970, + [3212] = 3167, + [3213] = 753, + [3214] = 932, + [3215] = 398, + [3216] = 731, + [3217] = 928, [3218] = 3218, [3219] = 3219, - [3220] = 741, - [3221] = 742, + [3220] = 3220, + [3221] = 939, [3222] = 3222, - [3223] = 3223, - [3224] = 3224, - [3225] = 3225, - [3226] = 728, - [3227] = 3227, - [3228] = 3228, - [3229] = 3109, - [3230] = 3230, - [3231] = 3231, - [3232] = 3232, + [3223] = 970, + [3224] = 2203, + [3225] = 940, + [3226] = 905, + [3227] = 400, + [3228] = 906, + [3229] = 400, + [3230] = 735, + [3231] = 736, + [3232] = 737, [3233] = 3233, - [3234] = 3234, + [3234] = 931, [3235] = 408, - [3236] = 409, - [3237] = 410, - [3238] = 408, - [3239] = 3239, - [3240] = 409, - [3241] = 3241, + [3236] = 412, + [3237] = 407, + [3238] = 3238, + [3239] = 739, + [3240] = 939, + [3241] = 3143, [3242] = 3242, - [3243] = 3243, + [3243] = 3032, [3244] = 3244, - [3245] = 3245, - [3246] = 3246, - [3247] = 3247, - [3248] = 92, - [3249] = 3249, - [3250] = 3250, - [3251] = 3251, - [3252] = 3087, - [3253] = 93, - [3254] = 3254, + [3245] = 3109, + [3246] = 932, + [3247] = 414, + [3248] = 954, + [3249] = 3113, + [3250] = 768, + [3251] = 769, + [3252] = 410, + [3253] = 3253, + [3254] = 726, [3255] = 3255, - [3256] = 3256, + [3256] = 2912, [3257] = 3257, - [3258] = 3169, - [3259] = 3259, - [3260] = 3260, - [3261] = 3261, - [3262] = 3262, - [3263] = 3263, - [3264] = 410, - [3265] = 3265, - [3266] = 3102, - [3267] = 92, - [3268] = 336, - [3269] = 3269, - [3270] = 93, - [3271] = 726, + [3258] = 3130, + [3259] = 741, + [3260] = 727, + [3261] = 921, + [3262] = 410, + [3263] = 3163, + [3264] = 3137, + [3265] = 3138, + [3266] = 3266, + [3267] = 3139, + [3268] = 3168, + [3269] = 949, + [3270] = 414, + [3271] = 890, [3272] = 3272, - [3273] = 407, - [3274] = 727, - [3275] = 736, - [3276] = 92, - [3277] = 400, - [3278] = 3146, - [3279] = 737, - [3280] = 3280, - [3281] = 3113, - [3282] = 3114, - [3283] = 3115, - [3284] = 3284, - [3285] = 738, - [3286] = 398, - [3287] = 3161, - [3288] = 3118, + [3273] = 742, + [3274] = 949, + [3275] = 2230, + [3276] = 743, + [3277] = 3085, + [3278] = 3278, + [3279] = 744, + [3280] = 3140, + [3281] = 3141, + [3282] = 3142, + [3283] = 906, + [3284] = 745, + [3285] = 728, + [3286] = 729, + [3287] = 3107, + [3288] = 3288, [3289] = 3289, - [3290] = 888, + [3290] = 746, [3291] = 3291, - [3292] = 400, - [3293] = 333, - [3294] = 3294, - [3295] = 3295, - [3296] = 3296, - [3297] = 3297, - [3298] = 93, - [3299] = 3299, - [3300] = 3300, - [3301] = 3167, - [3302] = 3136, - [3303] = 3207, - [3304] = 739, - [3305] = 740, - [3306] = 540, + [3292] = 3292, + [3293] = 3154, + [3294] = 3165, + [3295] = 411, + [3296] = 752, + [3297] = 747, + [3298] = 748, + [3299] = 3272, + [3300] = 2565, + [3301] = 2572, + [3302] = 3302, + [3303] = 3073, + [3304] = 3304, + [3305] = 730, + [3306] = 2643, [3307] = 3307, - [3308] = 3308, - [3309] = 3309, - [3310] = 2967, - [3311] = 3311, - [3312] = 3145, - [3313] = 3313, - [3314] = 3314, - [3315] = 3315, - [3316] = 3316, - [3317] = 3069, - [3318] = 3071, - [3319] = 2944, - [3320] = 3028, - [3321] = 2919, - [3322] = 2950, - [3323] = 2963, - [3324] = 3044, - [3325] = 3047, - [3326] = 3057, - [3327] = 2937, - [3328] = 3328, - [3329] = 3329, - [3330] = 3330, - [3331] = 389, - [3332] = 3332, - [3333] = 3333, - [3334] = 3079, - [3335] = 400, - [3336] = 408, - [3337] = 409, - [3338] = 410, - [3339] = 3216, - [3340] = 3340, - [3341] = 3341, - [3342] = 398, - [3343] = 720, - [3344] = 378, - [3345] = 721, - [3346] = 3076, - [3347] = 722, - [3348] = 92, - [3349] = 3349, - [3350] = 93, - [3351] = 723, + [3308] = 3242, + [3309] = 2580, + [3310] = 398, + [3311] = 3304, + [3312] = 3242, + [3313] = 2599, + [3314] = 2618, + [3315] = 3304, + [3316] = 2620, + [3317] = 2582, + [3318] = 3318, + [3319] = 3319, + [3320] = 3085, + [3321] = 3218, + [3322] = 400, + [3323] = 3323, + [3324] = 696, + [3325] = 3325, + [3326] = 3038, + [3327] = 2651, + [3328] = 3076, + [3329] = 3079, + [3330] = 3080, + [3331] = 3082, + [3332] = 3083, + [3333] = 3090, + [3334] = 3111, + [3335] = 3170, + [3336] = 3193, + [3337] = 3025, + [3338] = 3176, + [3339] = 414, + [3340] = 749, + [3341] = 3164, + [3342] = 750, + [3343] = 3343, + [3344] = 2232, + [3345] = 3345, + [3346] = 2908, + [3347] = 3347, + [3348] = 3348, + [3349] = 699, + [3350] = 889, + [3351] = 3195, [3352] = 3352, - [3353] = 407, - [3354] = 3354, - [3355] = 3355, - [3356] = 691, + [3353] = 3307, + [3354] = 410, + [3355] = 946, + [3356] = 3356, [3357] = 3357, - [3358] = 98, - [3359] = 3355, - [3360] = 99, - [3361] = 398, - [3362] = 92, - [3363] = 3363, - [3364] = 92, - [3365] = 3365, - [3366] = 446, + [3358] = 3358, + [3359] = 3359, + [3360] = 3360, + [3361] = 3361, + [3362] = 707, + [3363] = 3319, + [3364] = 2229, + [3365] = 92, + [3366] = 2912, [3367] = 3367, - [3368] = 98, - [3369] = 399, - [3370] = 98, - [3371] = 3371, - [3372] = 343, - [3373] = 99, + [3368] = 3368, + [3369] = 728, + [3370] = 3370, + [3371] = 2533, + [3372] = 3219, + [3373] = 3373, [3374] = 3374, - [3375] = 377, - [3376] = 360, - [3377] = 340, - [3378] = 338, - [3379] = 341, - [3380] = 353, - [3381] = 3355, - [3382] = 342, - [3383] = 349, - [3384] = 3384, - [3385] = 407, - [3386] = 412, - [3387] = 403, - [3388] = 99, - [3389] = 411, - [3390] = 93, + [3375] = 3375, + [3376] = 414, + [3377] = 412, + [3378] = 407, + [3379] = 3348, + [3380] = 3380, + [3381] = 3381, + [3382] = 3382, + [3383] = 3383, + [3384] = 93, + [3385] = 3385, + [3386] = 3386, + [3387] = 3387, + [3388] = 3388, + [3389] = 3389, + [3390] = 3390, [3391] = 3391, - [3392] = 92, - [3393] = 3355, + [3392] = 3392, + [3393] = 729, [3394] = 3394, - [3395] = 3076, - [3396] = 3355, - [3397] = 93, - [3398] = 99, - [3399] = 98, - [3400] = 93, + [3395] = 3395, + [3396] = 2517, + [3397] = 3397, + [3398] = 3398, + [3399] = 730, + [3400] = 527, [3401] = 3401, - [3402] = 3402, - [3403] = 3402, - [3404] = 3402, + [3402] = 387, + [3403] = 3255, + [3404] = 3404, [3405] = 3405, [3406] = 3406, - [3407] = 105, - [3408] = 3402, - [3409] = 3409, - [3410] = 3401, - [3411] = 3406, - [3412] = 99, - [3413] = 442, - [3414] = 106, - [3415] = 3402, - [3416] = 444, - [3417] = 3417, - [3418] = 2444, - [3419] = 99, - [3420] = 3405, - [3421] = 3406, - [3422] = 3402, - [3423] = 442, - [3424] = 108, - [3425] = 105, - [3426] = 442, - [3427] = 408, - [3428] = 409, - [3429] = 106, - [3430] = 3405, - [3431] = 3406, - [3432] = 410, - [3433] = 3402, - [3434] = 400, - [3435] = 369, - [3436] = 3405, - [3437] = 3406, - [3438] = 3402, - [3439] = 444, - [3440] = 98, - [3441] = 3402, - [3442] = 3405, - [3443] = 3406, - [3444] = 3402, - [3445] = 98, - [3446] = 3405, - [3447] = 3406, - [3448] = 106, + [3407] = 3168, + [3408] = 3408, + [3409] = 411, + [3410] = 3410, + [3411] = 3233, + [3412] = 411, + [3413] = 742, + [3414] = 93, + [3415] = 3415, + [3416] = 410, + [3417] = 3289, + [3418] = 398, + [3419] = 92, + [3420] = 3357, + [3421] = 743, + [3422] = 3244, + [3423] = 736, + [3424] = 93, + [3425] = 744, + [3426] = 2539, + [3427] = 745, + [3428] = 3428, + [3429] = 3278, + [3430] = 92, + [3431] = 414, + [3432] = 2506, + [3433] = 2509, + [3434] = 746, + [3435] = 3435, + [3436] = 3436, + [3437] = 3163, + [3438] = 3438, + [3439] = 3361, + [3440] = 735, + [3441] = 3352, + [3442] = 3195, + [3443] = 3443, + [3444] = 3359, + [3445] = 2547, + [3446] = 3291, + [3447] = 727, + [3448] = 2908, [3449] = 3449, - [3450] = 98, - [3451] = 3405, - [3452] = 105, - [3453] = 3406, - [3454] = 3402, - [3455] = 3405, - [3456] = 3357, - [3457] = 3457, - [3458] = 3406, - [3459] = 3402, - [3460] = 99, - [3461] = 3457, - [3462] = 3449, - [3463] = 3405, - [3464] = 3405, - [3465] = 3406, - [3466] = 3405, - [3467] = 3402, - [3468] = 3405, - [3469] = 3406, - [3470] = 444, - [3471] = 3406, - [3472] = 3405, - [3473] = 3406, - [3474] = 3405, - [3475] = 3406, - [3476] = 3402, - [3477] = 3402, - [3478] = 3409, - [3479] = 3402, - [3480] = 444, - [3481] = 108, - [3482] = 442, - [3483] = 3402, - [3484] = 105, - [3485] = 106, - [3486] = 3402, + [3450] = 3450, + [3451] = 411, + [3452] = 408, + [3453] = 412, + [3454] = 407, + [3455] = 408, + [3456] = 412, + [3457] = 410, + [3458] = 3292, + [3459] = 3318, + [3460] = 3038, + [3461] = 93, + [3462] = 407, + [3463] = 3076, + [3464] = 3079, + [3465] = 3080, + [3466] = 3082, + [3467] = 3083, + [3468] = 3090, + [3469] = 3111, + [3470] = 3170, + [3471] = 3193, + [3472] = 3025, + [3473] = 3176, + [3474] = 3220, + [3475] = 3475, + [3476] = 3476, + [3477] = 3477, + [3478] = 747, + [3479] = 748, + [3480] = 3107, + [3481] = 3481, + [3482] = 3482, + [3483] = 3483, + [3484] = 3484, + [3485] = 3485, + [3486] = 3486, [3487] = 3487, - [3488] = 108, - [3489] = 108, - [3490] = 3402, - [3491] = 105, - [3492] = 106, - [3493] = 489, - [3494] = 3494, + [3488] = 3222, + [3489] = 3489, + [3490] = 3490, + [3491] = 3491, + [3492] = 3406, + [3493] = 3493, + [3494] = 3288, [3495] = 3495, - [3496] = 485, - [3497] = 106, - [3498] = 3494, - [3499] = 3495, - [3500] = 459, - [3501] = 3487, - [3502] = 3502, - [3503] = 3494, - [3504] = 3495, - [3505] = 343, - [3506] = 3494, - [3507] = 3495, - [3508] = 342, - [3509] = 3494, - [3510] = 3495, - [3511] = 349, - [3512] = 3494, - [3513] = 3494, - [3514] = 442, - [3515] = 3494, - [3516] = 3494, - [3517] = 3494, - [3518] = 92, - [3519] = 3494, - [3520] = 3494, - [3521] = 3494, - [3522] = 3494, - [3523] = 3494, - [3524] = 3494, + [3496] = 92, + [3497] = 3497, + [3498] = 408, + [3499] = 3499, + [3500] = 3304, + [3501] = 3358, + [3502] = 3085, + [3503] = 3503, + [3504] = 3504, + [3505] = 3505, + [3506] = 3506, + [3507] = 3242, + [3508] = 336, + [3509] = 333, + [3510] = 3510, + [3511] = 890, + [3512] = 3512, + [3513] = 3513, + [3514] = 3514, + [3515] = 3515, + [3516] = 3516, + [3517] = 3517, + [3518] = 737, + [3519] = 400, + [3520] = 343, + [3521] = 99, + [3522] = 3522, + [3523] = 99, + [3524] = 416, [3525] = 3525, - [3526] = 1841, - [3527] = 3495, - [3528] = 340, - [3529] = 3502, - [3530] = 3495, - [3531] = 3495, - [3532] = 3532, - [3533] = 3502, - [3534] = 459, - [3535] = 3502, - [3536] = 470, - [3537] = 3525, - [3538] = 108, - [3539] = 3525, - [3540] = 3540, - [3541] = 105, - [3542] = 108, - [3543] = 3495, - [3544] = 1841, - [3545] = 3495, - [3546] = 106, - [3547] = 3540, - [3548] = 470, - [3549] = 105, - [3550] = 3494, - [3551] = 3495, - [3552] = 3495, - [3553] = 470, - [3554] = 444, - [3555] = 3555, + [3526] = 3526, + [3527] = 92, + [3528] = 438, + [3529] = 94, + [3530] = 3525, + [3531] = 404, + [3532] = 696, + [3533] = 94, + [3534] = 94, + [3535] = 351, + [3536] = 3525, + [3537] = 3242, + [3538] = 342, + [3539] = 3539, + [3540] = 402, + [3541] = 3541, + [3542] = 414, + [3543] = 99, + [3544] = 3544, + [3545] = 93, + [3546] = 3546, + [3547] = 93, + [3548] = 92, + [3549] = 93, + [3550] = 346, + [3551] = 3525, + [3552] = 410, + [3553] = 403, + [3554] = 92, + [3555] = 347, [3556] = 3525, - [3557] = 3540, - [3558] = 3540, - [3559] = 442, - [3560] = 341, - [3561] = 108, - [3562] = 497, - [3563] = 459, - [3564] = 93, - [3565] = 470, - [3566] = 3494, - [3567] = 3495, - [3568] = 360, - [3569] = 459, - [3570] = 3570, - [3571] = 444, - [3572] = 333, - [3573] = 3573, - [3574] = 3573, - [3575] = 459, - [3576] = 3573, - [3577] = 645, - [3578] = 503, - [3579] = 500, - [3580] = 3573, - [3581] = 3581, + [3557] = 348, + [3558] = 99, + [3559] = 94, + [3560] = 3560, + [3561] = 3561, + [3562] = 349, + [3563] = 350, + [3564] = 3564, + [3565] = 3565, + [3566] = 3565, + [3567] = 3567, + [3568] = 3568, + [3569] = 3568, + [3570] = 441, + [3571] = 107, + [3572] = 3565, + [3573] = 3567, + [3574] = 3568, + [3575] = 107, + [3576] = 108, + [3577] = 453, + [3578] = 3565, + [3579] = 3567, + [3580] = 3568, + [3581] = 108, [3582] = 3582, - [3583] = 500, - [3584] = 490, - [3585] = 503, - [3586] = 3573, - [3587] = 3573, - [3588] = 490, - [3589] = 99, - [3590] = 470, - [3591] = 3591, - [3592] = 338, - [3593] = 353, - [3594] = 3573, - [3595] = 470, - [3596] = 490, - [3597] = 500, - [3598] = 645, - [3599] = 3599, - [3600] = 642, - [3601] = 98, - [3602] = 3573, - [3603] = 642, - [3604] = 459, - [3605] = 3573, - [3606] = 645, - [3607] = 3573, - [3608] = 642, - [3609] = 93, - [3610] = 336, - [3611] = 92, - [3612] = 3573, - [3613] = 3613, - [3614] = 503, - [3615] = 3573, - [3616] = 500, - [3617] = 503, - [3618] = 490, - [3619] = 3573, - [3620] = 3581, - [3621] = 333, - [3622] = 444, - [3623] = 3623, - [3624] = 353, - [3625] = 704, - [3626] = 503, - [3627] = 3627, - [3628] = 3628, - [3629] = 3629, - [3630] = 442, - [3631] = 444, - [3632] = 489, - [3633] = 3633, - [3634] = 692, - [3635] = 675, - [3636] = 698, - [3637] = 442, - [3638] = 491, - [3639] = 645, - [3640] = 338, - [3641] = 3641, - [3642] = 3642, + [3583] = 3565, + [3584] = 3567, + [3585] = 3568, + [3586] = 109, + [3587] = 3565, + [3588] = 3567, + [3589] = 3568, + [3590] = 109, + [3591] = 3568, + [3592] = 3565, + [3593] = 3567, + [3594] = 3568, + [3595] = 3567, + [3596] = 3565, + [3597] = 3567, + [3598] = 3568, + [3599] = 3565, + [3600] = 3567, + [3601] = 3568, + [3602] = 3567, + [3603] = 3568, + [3604] = 3565, + [3605] = 3567, + [3606] = 3568, + [3607] = 3565, + [3608] = 3567, + [3609] = 3568, + [3610] = 3568, + [3611] = 3568, + [3612] = 3568, + [3613] = 107, + [3614] = 3568, + [3615] = 3568, + [3616] = 3568, + [3617] = 3568, + [3618] = 411, + [3619] = 109, + [3620] = 3620, + [3621] = 3544, + [3622] = 3582, + [3623] = 94, + [3624] = 441, + [3625] = 373, + [3626] = 3565, + [3627] = 407, + [3628] = 94, + [3629] = 408, + [3630] = 441, + [3631] = 412, + [3632] = 3567, + [3633] = 453, + [3634] = 3634, + [3635] = 3565, + [3636] = 3636, + [3637] = 3637, + [3638] = 441, + [3639] = 99, + [3640] = 2492, + [3641] = 3565, + [3642] = 3567, [3643] = 3643, - [3644] = 98, - [3645] = 490, - [3646] = 3646, - [3647] = 333, - [3648] = 3648, - [3649] = 490, - [3650] = 3646, - [3651] = 3641, - [3652] = 106, - [3653] = 333, - [3654] = 3654, - [3655] = 485, - [3656] = 3646, - [3657] = 3648, - [3658] = 3627, + [3644] = 3568, + [3645] = 107, + [3646] = 453, + [3647] = 3620, + [3648] = 3634, + [3649] = 108, + [3650] = 3637, + [3651] = 108, + [3652] = 94, + [3653] = 109, + [3654] = 99, + [3655] = 453, + [3656] = 99, + [3657] = 3568, + [3658] = 441, [3659] = 3659, - [3660] = 485, - [3661] = 465, - [3662] = 3662, - [3663] = 466, - [3664] = 493, - [3665] = 3646, - [3666] = 3628, - [3667] = 486, - [3668] = 493, - [3669] = 486, - [3670] = 3646, - [3671] = 3671, - [3672] = 3555, - [3673] = 645, - [3674] = 3674, - [3675] = 3646, - [3676] = 1830, - [3677] = 336, - [3678] = 444, - [3679] = 444, - [3680] = 645, - [3681] = 442, - [3682] = 497, - [3683] = 503, - [3684] = 2521, - [3685] = 3646, + [3660] = 3660, + [3661] = 464, + [3662] = 3659, + [3663] = 3660, + [3664] = 3659, + [3665] = 346, + [3666] = 3659, + [3667] = 3667, + [3668] = 3660, + [3669] = 3669, + [3670] = 3659, + [3671] = 482, + [3672] = 347, + [3673] = 3659, + [3674] = 3659, + [3675] = 3659, + [3676] = 464, + [3677] = 3659, + [3678] = 3660, + [3679] = 3659, + [3680] = 3659, + [3681] = 3659, + [3682] = 348, + [3683] = 3660, + [3684] = 485, + [3685] = 482, [3686] = 3686, - [3687] = 642, - [3688] = 3688, - [3689] = 3689, - [3690] = 493, - [3691] = 3633, - [3692] = 2549, - [3693] = 642, - [3694] = 500, - [3695] = 3671, - [3696] = 3613, - [3697] = 3646, - [3698] = 3643, - [3699] = 484, - [3700] = 442, - [3701] = 3701, - [3702] = 3646, - [3703] = 486, - [3704] = 497, - [3705] = 500, - [3706] = 3706, - [3707] = 3581, - [3708] = 3674, - [3709] = 3646, - [3710] = 3487, - [3711] = 2539, - [3712] = 3591, - [3713] = 3706, - [3714] = 3714, - [3715] = 3715, - [3716] = 3654, - [3717] = 108, - [3718] = 484, - [3719] = 642, - [3720] = 3671, - [3721] = 3659, - [3722] = 3671, - [3723] = 99, - [3724] = 3688, - [3725] = 3686, - [3726] = 498, - [3727] = 3642, - [3728] = 3646, - [3729] = 3629, - [3730] = 105, - [3731] = 3731, - [3732] = 3732, - [3733] = 3733, - [3734] = 3734, - [3735] = 3735, - [3736] = 3736, - [3737] = 2597, - [3738] = 2598, - [3739] = 2990, - [3740] = 2992, - [3741] = 444, - [3742] = 444, - [3743] = 3731, - [3744] = 3744, - [3745] = 3745, - [3746] = 442, - [3747] = 3747, - [3748] = 3748, - [3749] = 3749, - [3750] = 3750, - [3751] = 3751, - [3752] = 3752, + [3687] = 482, + [3688] = 3660, + [3689] = 3686, + [3690] = 3667, + [3691] = 3660, + [3692] = 109, + [3693] = 3659, + [3694] = 509, + [3695] = 3659, + [3696] = 3660, + [3697] = 3660, + [3698] = 3667, + [3699] = 107, + [3700] = 1863, + [3701] = 3667, + [3702] = 3659, + [3703] = 108, + [3704] = 3686, + [3705] = 93, + [3706] = 453, + [3707] = 453, + [3708] = 505, + [3709] = 108, + [3710] = 441, + [3711] = 3669, + [3712] = 109, + [3713] = 3713, + [3714] = 1863, + [3715] = 107, + [3716] = 3659, + [3717] = 482, + [3718] = 3660, + [3719] = 3719, + [3720] = 109, + [3721] = 3660, + [3722] = 3669, + [3723] = 464, + [3724] = 3660, + [3725] = 3636, + [3726] = 349, + [3727] = 3727, + [3728] = 3669, + [3729] = 464, + [3730] = 350, + [3731] = 351, + [3732] = 3686, + [3733] = 3659, + [3734] = 107, + [3735] = 3660, + [3736] = 92, + [3737] = 108, + [3738] = 3659, + [3739] = 93, + [3740] = 528, + [3741] = 3741, + [3742] = 497, + [3743] = 488, + [3744] = 482, + [3745] = 488, + [3746] = 3746, + [3747] = 3746, + [3748] = 464, + [3749] = 3746, + [3750] = 94, + [3751] = 526, + [3752] = 528, [3753] = 3753, - [3754] = 3754, - [3755] = 338, - [3756] = 3714, - [3757] = 3715, - [3758] = 353, - [3759] = 459, - [3760] = 3752, + [3754] = 3746, + [3755] = 3746, + [3756] = 497, + [3757] = 510, + [3758] = 336, + [3759] = 510, + [3760] = 488, [3761] = 3761, - [3762] = 3762, - [3763] = 3763, - [3764] = 3764, - [3765] = 444, - [3766] = 3751, - [3767] = 3767, - [3768] = 3768, - [3769] = 3769, - [3770] = 1446, - [3771] = 2785, - [3772] = 2785, - [3773] = 2538, - [3774] = 3774, - [3775] = 3775, - [3776] = 489, - [3777] = 497, - [3778] = 338, - [3779] = 485, - [3780] = 704, - [3781] = 3747, - [3782] = 3748, - [3783] = 3749, - [3784] = 3784, - [3785] = 3752, - [3786] = 3786, + [3762] = 3746, + [3763] = 92, + [3764] = 3746, + [3765] = 482, + [3766] = 3766, + [3767] = 464, + [3768] = 488, + [3769] = 497, + [3770] = 510, + [3771] = 526, + [3772] = 3746, + [3773] = 3753, + [3774] = 526, + [3775] = 3746, + [3776] = 3746, + [3777] = 99, + [3778] = 3746, + [3779] = 3779, + [3780] = 528, + [3781] = 333, + [3782] = 497, + [3783] = 510, + [3784] = 3746, + [3785] = 3746, + [3786] = 471, [3787] = 3787, - [3788] = 3788, + [3788] = 526, [3789] = 3789, [3790] = 3790, - [3791] = 343, - [3792] = 3792, - [3793] = 470, + [3791] = 453, + [3792] = 1861, + [3793] = 3766, [3794] = 3794, - [3795] = 360, - [3796] = 340, - [3797] = 353, - [3798] = 341, - [3799] = 342, - [3800] = 349, - [3801] = 459, - [3802] = 3744, + [3795] = 3795, + [3796] = 453, + [3797] = 3797, + [3798] = 491, + [3799] = 3799, + [3800] = 3800, + [3801] = 336, + [3802] = 3799, [3803] = 3803, - [3804] = 3745, - [3805] = 3748, - [3806] = 3749, - [3807] = 692, - [3808] = 675, - [3809] = 698, - [3810] = 470, - [3811] = 3750, - [3812] = 334, - [3813] = 459, - [3814] = 3814, - [3815] = 3786, - [3816] = 3816, - [3817] = 1940, - [3818] = 3818, - [3819] = 3747, + [3804] = 3800, + [3805] = 497, + [3806] = 333, + [3807] = 3636, + [3808] = 3808, + [3809] = 493, + [3810] = 483, + [3811] = 441, + [3812] = 3799, + [3813] = 342, + [3814] = 453, + [3815] = 3799, + [3816] = 526, + [3817] = 510, + [3818] = 3797, + [3819] = 495, [3820] = 3820, - [3821] = 3748, - [3822] = 3749, - [3823] = 3752, - [3824] = 3824, - [3825] = 3747, - [3826] = 3748, - [3827] = 3749, - [3828] = 3752, - [3829] = 3747, - [3830] = 3748, - [3831] = 3749, - [3832] = 3752, - [3833] = 3747, - [3834] = 3752, - [3835] = 3747, - [3836] = 3836, - [3837] = 3752, - [3838] = 442, - [3839] = 3747, - [3840] = 3752, - [3841] = 3841, - [3842] = 3842, - [3843] = 3843, - [3844] = 1940, + [3821] = 510, + [3822] = 2636, + [3823] = 3823, + [3824] = 3799, + [3825] = 700, + [3826] = 3826, + [3827] = 509, + [3828] = 3790, + [3829] = 2617, + [3830] = 2573, + [3831] = 3820, + [3832] = 333, + [3833] = 3803, + [3834] = 441, + [3835] = 94, + [3836] = 526, + [3837] = 3799, + [3838] = 488, + [3839] = 453, + [3840] = 495, + [3841] = 3799, + [3842] = 3799, + [3843] = 503, + [3844] = 505, [3845] = 3845, - [3846] = 697, - [3847] = 2545, - [3848] = 697, - [3849] = 470, - [3850] = 459, - [3851] = 444, - [3852] = 470, - [3853] = 704, - [3854] = 108, - [3855] = 105, - [3856] = 106, + [3846] = 3846, + [3847] = 441, + [3848] = 497, + [3849] = 3799, + [3850] = 498, + [3851] = 343, + [3852] = 3787, + [3853] = 528, + [3854] = 3823, + [3855] = 3789, + [3856] = 528, [3857] = 3857, [3858] = 3858, [3859] = 3859, - [3860] = 704, - [3861] = 692, - [3862] = 675, - [3863] = 698, - [3864] = 3747, - [3865] = 3731, - [3866] = 3744, - [3867] = 3745, - [3868] = 442, - [3869] = 692, - [3870] = 675, - [3871] = 3871, - [3872] = 698, - [3873] = 444, - [3874] = 3818, - [3875] = 3875, - [3876] = 3731, - [3877] = 3744, - [3878] = 3745, - [3879] = 3879, - [3880] = 442, - [3881] = 3775, - [3882] = 3784, - [3883] = 369, - [3884] = 339, - [3885] = 961, - [3886] = 931, - [3887] = 3887, - [3888] = 3105, - [3889] = 369, - [3890] = 490, - [3891] = 3137, - [3892] = 645, - [3893] = 3893, - [3894] = 3139, - [3895] = 3140, - [3896] = 497, - [3897] = 3897, - [3898] = 3142, - [3899] = 485, - [3900] = 967, - [3901] = 444, - [3902] = 3753, - [3903] = 699, - [3904] = 886, - [3905] = 3613, - [3906] = 3591, - [3907] = 2785, - [3908] = 948, - [3909] = 954, - [3910] = 3910, - [3911] = 709, + [3860] = 488, + [3861] = 441, + [3862] = 3826, + [3863] = 3863, + [3864] = 109, + [3865] = 3865, + [3866] = 3799, + [3867] = 3867, + [3868] = 3753, + [3869] = 99, + [3870] = 528, + [3871] = 485, + [3872] = 108, + [3873] = 485, + [3874] = 3794, + [3875] = 3795, + [3876] = 686, + [3877] = 3846, + [3878] = 3863, + [3879] = 687, + [3880] = 3790, + [3881] = 503, + [3882] = 3799, + [3883] = 3790, + [3884] = 3858, + [3885] = 505, + [3886] = 3886, + [3887] = 503, + [3888] = 688, + [3889] = 3727, + [3890] = 3886, + [3891] = 107, + [3892] = 495, + [3893] = 493, + [3894] = 3741, + [3895] = 3895, + [3896] = 2638, + [3897] = 482, + [3898] = 3898, + [3899] = 3899, + [3900] = 3900, + [3901] = 3901, + [3902] = 3902, + [3903] = 3903, + [3904] = 3904, + [3905] = 3905, + [3906] = 3906, + [3907] = 3907, + [3908] = 3908, + [3909] = 3909, + [3910] = 342, + [3911] = 441, [3912] = 3912, - [3913] = 3887, - [3914] = 941, - [3915] = 3897, - [3916] = 459, - [3917] = 3910, + [3913] = 1455, + [3914] = 343, + [3915] = 3915, + [3916] = 2587, + [3917] = 3917, [3918] = 3918, - [3919] = 958, - [3920] = 3920, - [3921] = 886, - [3922] = 941, - [3923] = 500, - [3924] = 2990, - [3925] = 2992, - [3926] = 959, - [3927] = 948, - [3928] = 954, - [3929] = 503, - [3930] = 958, - [3931] = 490, - [3932] = 959, - [3933] = 3897, - [3934] = 336, - [3935] = 886, - [3936] = 960, - [3937] = 705, - [3938] = 960, - [3939] = 3939, - [3940] = 3940, - [3941] = 937, - [3942] = 3871, - [3943] = 961, - [3944] = 931, - [3945] = 3945, - [3946] = 500, - [3947] = 351, - [3948] = 503, - [3949] = 357, - [3950] = 490, - [3951] = 3845, - [3952] = 3144, - [3953] = 3953, - [3954] = 3954, - [3955] = 3912, - [3956] = 3887, - [3957] = 3897, - [3958] = 3958, - [3959] = 3875, - [3960] = 3910, - [3961] = 941, - [3962] = 3157, - [3963] = 3879, - [3964] = 3129, - [3965] = 3965, - [3966] = 3912, - [3967] = 3887, - [3968] = 1980, - [3969] = 3912, - [3970] = 3953, - [3971] = 961, - [3972] = 3371, - [3973] = 931, - [3974] = 3912, - [3975] = 3887, - [3976] = 3976, - [3977] = 642, - [3978] = 3910, - [3979] = 3912, - [3980] = 3887, - [3981] = 3910, - [3982] = 3910, - [3983] = 3768, - [3984] = 3769, - [3985] = 470, - [3986] = 3912, - [3987] = 3887, - [3988] = 3910, - [3989] = 3754, - [3990] = 503, - [3991] = 3912, - [3992] = 3887, - [3993] = 334, - [3994] = 3910, - [3995] = 459, - [3996] = 3912, + [3919] = 3919, + [3920] = 3900, + [3921] = 3901, + [3922] = 3922, + [3923] = 3902, + [3924] = 342, + [3925] = 700, + [3926] = 3926, + [3927] = 3927, + [3928] = 3899, + [3929] = 3929, + [3930] = 343, + [3931] = 3931, + [3932] = 686, + [3933] = 687, + [3934] = 688, + [3935] = 509, + [3936] = 505, + [3937] = 485, + [3938] = 464, + [3939] = 3899, + [3940] = 3900, + [3941] = 3901, + [3942] = 3903, + [3943] = 482, + [3944] = 346, + [3945] = 2621, + [3946] = 347, + [3947] = 348, + [3948] = 3948, + [3949] = 349, + [3950] = 350, + [3951] = 351, + [3952] = 3952, + [3953] = 464, + [3954] = 2587, + [3955] = 3955, + [3956] = 482, + [3957] = 1962, + [3958] = 334, + [3959] = 3959, + [3960] = 3960, + [3961] = 3961, + [3962] = 3895, + [3963] = 1962, + [3964] = 3964, + [3965] = 713, + [3966] = 373, + [3967] = 3899, + [3968] = 3900, + [3969] = 3901, + [3970] = 3970, + [3971] = 464, + [3972] = 3972, + [3973] = 3903, + [3974] = 3974, + [3975] = 3899, + [3976] = 3900, + [3977] = 3901, + [3978] = 3903, + [3979] = 3915, + [3980] = 453, + [3981] = 3900, + [3982] = 3901, + [3983] = 3903, + [3984] = 713, + [3985] = 3899, + [3986] = 3986, + [3987] = 3903, + [3988] = 700, + [3989] = 3989, + [3990] = 3899, + [3991] = 3929, + [3992] = 3992, + [3993] = 3993, + [3994] = 3903, + [3995] = 3995, + [3996] = 3899, [3997] = 3997, - [3998] = 3912, - [3999] = 3912, - [4000] = 3912, - [4001] = 3116, - [4002] = 470, - [4003] = 3912, - [4004] = 3912, - [4005] = 4005, - [4006] = 3912, - [4007] = 3120, - [4008] = 3912, - [4009] = 3912, - [4010] = 3912, - [4011] = 3912, - [4012] = 948, - [4013] = 954, - [4014] = 3940, - [4015] = 500, - [4016] = 4016, - [4017] = 503, - [4018] = 490, - [4019] = 3887, - [4020] = 958, - [4021] = 4021, - [4022] = 4022, - [4023] = 3939, - [4024] = 500, - [4025] = 4025, - [4026] = 959, - [4027] = 2789, - [4028] = 333, + [3998] = 3998, + [3999] = 3903, + [4000] = 464, + [4001] = 482, + [4002] = 686, + [4003] = 687, + [4004] = 441, + [4005] = 688, + [4006] = 2713, + [4007] = 2680, + [4008] = 107, + [4009] = 3903, + [4010] = 108, + [4011] = 109, + [4012] = 3904, + [4013] = 4013, + [4014] = 4014, + [4015] = 4015, + [4016] = 453, + [4017] = 441, + [4018] = 4018, + [4019] = 342, + [4020] = 700, + [4021] = 686, + [4022] = 687, + [4023] = 688, + [4024] = 453, + [4025] = 3895, + [4026] = 3906, + [4027] = 3915, + [4028] = 4028, [4029] = 4029, - [4030] = 886, - [4031] = 960, - [4032] = 470, - [4033] = 4033, - [4034] = 3893, - [4035] = 459, - [4036] = 3912, - [4037] = 4037, - [4038] = 1980, - [4039] = 2081, - [4040] = 3893, - [4041] = 3893, - [4042] = 444, - [4043] = 470, - [4044] = 459, + [4030] = 4030, + [4031] = 343, + [4032] = 453, + [4033] = 3895, + [4034] = 3906, + [4035] = 3915, + [4036] = 3906, + [4037] = 4013, + [4038] = 4014, + [4039] = 4015, + [4040] = 3865, + [4041] = 3808, + [4042] = 441, + [4043] = 4043, + [4044] = 4044, [4045] = 4045, - [4046] = 4045, - [4047] = 3910, + [4046] = 441, + [4047] = 3899, [4048] = 4048, - [4049] = 4049, + [4049] = 960, [4050] = 4050, - [4051] = 442, + [4051] = 441, [4052] = 4052, [4053] = 4053, [4054] = 4054, - [4055] = 3137, - [4056] = 960, - [4057] = 967, - [4058] = 719, - [4059] = 338, + [4055] = 4052, + [4056] = 4054, + [4057] = 4057, + [4058] = 4058, + [4059] = 3992, [4060] = 4060, - [4061] = 961, - [4062] = 931, - [4063] = 1807, - [4064] = 3139, - [4065] = 353, - [4066] = 4029, - [4067] = 1808, - [4068] = 4068, - [4069] = 4069, - [4070] = 4070, - [4071] = 720, - [4072] = 3140, - [4073] = 3142, - [4074] = 721, - [4075] = 722, - [4076] = 2517, - [4077] = 967, + [4061] = 3993, + [4062] = 961, + [4063] = 505, + [4064] = 4064, + [4065] = 485, + [4066] = 4057, + [4067] = 4067, + [4068] = 4048, + [4069] = 4054, + [4070] = 4052, + [4071] = 526, + [4072] = 888, + [4073] = 962, + [4074] = 4029, + [4075] = 4075, + [4076] = 4064, + [4077] = 3766, [4078] = 4078, - [4079] = 723, - [4080] = 2526, - [4081] = 4081, - [4082] = 4082, - [4083] = 4083, - [4084] = 4084, - [4085] = 4085, - [4086] = 4086, - [4087] = 4016, - [4088] = 4088, - [4089] = 4089, - [4090] = 4090, + [4079] = 4030, + [4080] = 464, + [4081] = 4054, + [4082] = 4052, + [4083] = 3741, + [4084] = 888, + [4085] = 962, + [4086] = 690, + [4087] = 4087, + [4088] = 482, + [4089] = 4064, + [4090] = 2587, [4091] = 4091, - [4092] = 4092, - [4093] = 4093, - [4094] = 4094, - [4095] = 4095, - [4096] = 724, - [4097] = 2945, - [4098] = 4098, - [4099] = 4099, - [4100] = 3144, - [4101] = 4101, - [4102] = 899, - [4103] = 2948, - [4104] = 886, - [4105] = 726, - [4106] = 727, - [4107] = 728, - [4108] = 339, - [4109] = 730, - [4110] = 4110, - [4111] = 2541, - [4112] = 941, - [4113] = 735, - [4114] = 4114, - [4115] = 736, - [4116] = 737, - [4117] = 738, - [4118] = 948, - [4119] = 739, - [4120] = 954, - [4121] = 740, - [4122] = 741, - [4123] = 742, - [4124] = 958, - [4125] = 959, - [4126] = 4126, - [4127] = 886, - [4128] = 4128, - [4129] = 4129, - [4130] = 937, - [4131] = 4131, + [4092] = 942, + [4093] = 4054, + [4094] = 4052, + [4095] = 965, + [4096] = 2511, + [4097] = 2122, + [4098] = 2126, + [4099] = 4064, + [4100] = 2512, + [4101] = 888, + [4102] = 3325, + [4103] = 4054, + [4104] = 4052, + [4105] = 4105, + [4106] = 966, + [4107] = 4054, + [4108] = 4052, + [4109] = 4064, + [4110] = 4064, + [4111] = 945, + [4112] = 4054, + [4113] = 4052, + [4114] = 4057, + [4115] = 4052, + [4116] = 2884, + [4117] = 4064, + [4118] = 3266, + [4119] = 4054, + [4120] = 4054, + [4121] = 3564, + [4122] = 4054, + [4123] = 4054, + [4124] = 497, + [4125] = 4054, + [4126] = 497, + [4127] = 497, + [4128] = 4064, + [4129] = 4054, + [4130] = 4064, + [4131] = 4054, [4132] = 4132, - [4133] = 4133, - [4134] = 4016, - [4135] = 704, - [4136] = 4136, - [4137] = 4137, - [4138] = 4138, - [4139] = 4139, - [4140] = 343, - [4141] = 4050, - [4142] = 4142, - [4143] = 948, - [4144] = 4144, - [4145] = 954, - [4146] = 960, - [4147] = 4147, - [4148] = 444, - [4149] = 4149, - [4150] = 360, - [4151] = 4151, - [4152] = 3918, - [4153] = 340, + [4133] = 4050, + [4134] = 4054, + [4135] = 488, + [4136] = 956, + [4137] = 4054, + [4138] = 958, + [4139] = 4054, + [4140] = 4054, + [4141] = 4054, + [4142] = 334, + [4143] = 510, + [4144] = 960, + [4145] = 488, + [4146] = 961, + [4147] = 945, + [4148] = 681, + [4149] = 4053, + [4150] = 4058, + [4151] = 4087, + [4152] = 965, + [4153] = 966, [4154] = 4154, - [4155] = 2570, - [4156] = 4156, - [4157] = 961, - [4158] = 931, - [4159] = 941, - [4160] = 341, - [4161] = 342, - [4162] = 349, - [4163] = 695, + [4155] = 464, + [4156] = 510, + [4157] = 482, + [4158] = 4158, + [4159] = 1061, + [4160] = 956, + [4161] = 888, + [4162] = 962, + [4163] = 464, [4164] = 4164, - [4165] = 694, - [4166] = 4166, - [4167] = 3997, - [4168] = 2540, - [4169] = 4050, - [4170] = 4170, - [4171] = 4092, - [4172] = 4172, - [4173] = 4173, - [4174] = 948, - [4175] = 4175, - [4176] = 930, - [4177] = 954, - [4178] = 692, - [4179] = 4088, - [4180] = 4050, - [4181] = 1395, - [4182] = 4182, - [4183] = 675, - [4184] = 4184, - [4185] = 4185, - [4186] = 698, + [4165] = 958, + [4166] = 4048, + [4167] = 373, + [4168] = 965, + [4169] = 4169, + [4170] = 333, + [4171] = 441, + [4172] = 464, + [4173] = 966, + [4174] = 336, + [4175] = 497, + [4176] = 488, + [4177] = 482, + [4178] = 4048, + [4179] = 4054, + [4180] = 4180, + [4181] = 945, + [4182] = 510, + [4183] = 3908, + [4184] = 3909, + [4185] = 488, + [4186] = 4057, [4187] = 4187, - [4188] = 4188, - [4189] = 4189, + [4188] = 360, + [4189] = 3964, [4190] = 4190, - [4191] = 3714, - [4192] = 3715, - [4193] = 4050, + [4191] = 961, + [4192] = 367, + [4193] = 956, [4194] = 4194, - [4195] = 4195, - [4196] = 4196, - [4197] = 887, - [4198] = 4198, - [4199] = 4199, - [4200] = 958, + [4195] = 958, + [4196] = 723, + [4197] = 339, + [4198] = 2122, + [4199] = 3986, + [4200] = 482, [4201] = 4201, - [4202] = 4202, + [4202] = 528, [4203] = 4203, - [4204] = 4050, - [4205] = 4205, - [4206] = 3116, - [4207] = 697, - [4208] = 959, - [4209] = 500, - [4210] = 3120, - [4211] = 1781, - [4212] = 4212, - [4213] = 4050, - [4214] = 936, - [4215] = 2857, + [4204] = 4194, + [4205] = 960, + [4206] = 510, + [4207] = 4207, + [4208] = 4208, + [4209] = 4209, + [4210] = 728, + [4211] = 729, + [4212] = 3108, + [4213] = 4213, + [4214] = 730, + [4215] = 2582, [4216] = 4216, - [4217] = 4217, - [4218] = 503, - [4219] = 886, + [4217] = 942, + [4218] = 960, + [4219] = 4169, [4220] = 4220, - [4221] = 490, - [4222] = 960, - [4223] = 967, - [4224] = 4050, + [4221] = 4221, + [4222] = 4222, + [4223] = 4222, + [4224] = 4224, [4225] = 4225, - [4226] = 4226, - [4227] = 4227, - [4228] = 4228, - [4229] = 958, - [4230] = 4050, + [4226] = 731, + [4227] = 713, + [4228] = 906, + [4229] = 4229, + [4230] = 1061, [4231] = 4231, - [4232] = 4232, - [4233] = 1782, - [4234] = 888, - [4235] = 4235, + [4232] = 735, + [4233] = 736, + [4234] = 4234, + [4235] = 737, [4236] = 4236, [4237] = 4237, [4238] = 4238, - [4239] = 4239, - [4240] = 4240, - [4241] = 4241, - [4242] = 4050, + [4239] = 962, + [4240] = 1061, + [4241] = 739, + [4242] = 4242, [4243] = 4243, [4244] = 4244, - [4245] = 503, - [4246] = 3532, - [4247] = 4247, - [4248] = 3570, - [4249] = 961, - [4250] = 4250, + [4245] = 4245, + [4246] = 965, + [4247] = 966, + [4248] = 372, + [4249] = 4249, + [4250] = 741, [4251] = 4251, - [4252] = 4252, - [4253] = 931, - [4254] = 4050, - [4255] = 4232, - [4256] = 4256, - [4257] = 4257, - [4258] = 4258, - [4259] = 4259, - [4260] = 4260, - [4261] = 4261, - [4262] = 960, - [4263] = 937, - [4264] = 4264, - [4265] = 4265, - [4266] = 351, - [4267] = 4267, - [4268] = 3417, + [4252] = 742, + [4253] = 743, + [4254] = 744, + [4255] = 745, + [4256] = 746, + [4257] = 747, + [4258] = 748, + [4259] = 2565, + [4260] = 2572, + [4261] = 342, + [4262] = 4262, + [4263] = 4263, + [4264] = 2643, + [4265] = 2580, + [4266] = 2599, + [4267] = 2618, + [4268] = 4268, [4269] = 4269, [4270] = 4270, - [4271] = 4271, - [4272] = 4272, - [4273] = 4138, - [4274] = 357, - [4275] = 2927, - [4276] = 2530, - [4277] = 2928, + [4271] = 2620, + [4272] = 360, + [4273] = 343, + [4274] = 4201, + [4275] = 4275, + [4276] = 4276, + [4277] = 1805, [4278] = 4278, - [4279] = 4084, - [4280] = 4280, - [4281] = 3131, - [4282] = 1357, - [4283] = 4050, - [4284] = 4284, + [4279] = 1812, + [4280] = 945, + [4281] = 441, + [4282] = 4282, + [4283] = 4283, + [4284] = 956, [4285] = 4285, - [4286] = 959, + [4286] = 958, [4287] = 4287, [4288] = 4288, - [4289] = 4289, + [4289] = 960, [4290] = 4290, - [4291] = 500, + [4291] = 961, [4292] = 4292, - [4293] = 4293, - [4294] = 4294, + [4293] = 888, + [4294] = 939, [4295] = 4295, [4296] = 4296, [4297] = 4297, [4298] = 4298, [4299] = 4299, [4300] = 4300, - [4301] = 937, - [4302] = 4302, - [4303] = 490, + [4301] = 3713, + [4302] = 3719, + [4303] = 4303, [4304] = 4304, - [4305] = 4185, - [4306] = 3105, - [4307] = 4307, - [4308] = 4308, - [4309] = 4309, - [4310] = 500, - [4311] = 4311, - [4312] = 4312, - [4313] = 4050, - [4314] = 503, - [4315] = 4050, - [4316] = 4316, - [4317] = 490, - [4318] = 368, + [4305] = 4305, + [4306] = 346, + [4307] = 962, + [4308] = 347, + [4309] = 348, + [4310] = 4310, + [4311] = 965, + [4312] = 966, + [4313] = 4313, + [4314] = 949, + [4315] = 349, + [4316] = 350, + [4317] = 351, + [4318] = 962, [4319] = 4319, - [4320] = 4320, + [4320] = 942, [4321] = 4321, - [4322] = 4322, - [4323] = 4133, - [4324] = 4324, - [4325] = 4325, + [4322] = 3643, + [4323] = 961, + [4324] = 4180, + [4325] = 4222, [4326] = 4326, [4327] = 4327, [4328] = 4328, [4329] = 4329, [4330] = 4330, [4331] = 4331, - [4332] = 1792, - [4333] = 1793, + [4332] = 4332, + [4333] = 4333, [4334] = 4334, - [4335] = 923, + [4335] = 4335, [4336] = 4336, [4337] = 4337, [4338] = 4338, [4339] = 4339, [4340] = 4340, [4341] = 4341, - [4342] = 500, - [4343] = 4050, + [4342] = 4342, + [4343] = 4343, [4344] = 4344, [4345] = 4345, - [4346] = 4346, + [4346] = 4222, [4347] = 4347, - [4348] = 4348, - [4349] = 503, - [4350] = 941, + [4348] = 367, + [4349] = 4349, + [4350] = 4350, [4351] = 4351, - [4352] = 4280, - [4353] = 490, - [4354] = 961, - [4355] = 4271, - [4356] = 4272, - [4357] = 931, - [4358] = 4267, + [4352] = 339, + [4353] = 4353, + [4354] = 4354, + [4355] = 4355, + [4356] = 3808, + [4357] = 4222, + [4358] = 497, [4359] = 4359, - [4360] = 4280, - [4361] = 4271, - [4362] = 4272, - [4363] = 4267, + [4360] = 4360, + [4361] = 4361, + [4362] = 4362, + [4363] = 4363, [4364] = 4364, [4365] = 4365, - [4366] = 4050, + [4366] = 510, [4367] = 4367, - [4368] = 930, + [4368] = 488, [4369] = 4369, [4370] = 4370, [4371] = 4371, [4372] = 4372, [4373] = 4373, [4374] = 4374, - [4375] = 369, - [4376] = 4068, - [4377] = 924, + [4375] = 4222, + [4376] = 4376, + [4377] = 4377, [4378] = 4378, - [4379] = 4270, - [4380] = 926, + [4379] = 4379, + [4380] = 4380, [4381] = 4381, - [4382] = 685, - [4383] = 4250, - [4384] = 4269, - [4385] = 4321, - [4386] = 4386, - [4387] = 4069, - [4388] = 4388, - [4389] = 4251, - [4390] = 4252, - [4391] = 4391, - [4392] = 4231, + [4382] = 4382, + [4383] = 699, + [4384] = 4384, + [4385] = 4222, + [4386] = 707, + [4387] = 4319, + [4388] = 4222, + [4389] = 4389, + [4390] = 4390, + [4391] = 945, + [4392] = 4091, [4393] = 4393, - [4394] = 4324, - [4395] = 4330, - [4396] = 4396, - [4397] = 4322, - [4398] = 334, - [4399] = 4289, - [4400] = 676, - [4401] = 3054, - [4402] = 4402, - [4403] = 4307, - [4404] = 4404, + [4394] = 4222, + [4395] = 965, + [4396] = 966, + [4397] = 4397, + [4398] = 4398, + [4399] = 889, + [4400] = 4222, + [4401] = 4401, + [4402] = 4222, + [4403] = 4403, + [4404] = 4222, [4405] = 4405, - [4406] = 4226, - [4407] = 4407, - [4408] = 2916, - [4409] = 4331, - [4410] = 4227, + [4406] = 4406, + [4407] = 4222, + [4408] = 4225, + [4409] = 4409, + [4410] = 4222, [4411] = 4411, - [4412] = 4294, - [4413] = 4413, - [4414] = 4339, - [4415] = 4336, - [4416] = 4257, - [4417] = 4340, - [4418] = 4348, - [4419] = 4351, - [4420] = 4049, - [4421] = 936, - [4422] = 4052, + [4412] = 4412, + [4413] = 890, + [4414] = 4414, + [4415] = 4393, + [4416] = 4416, + [4417] = 4417, + [4418] = 4418, + [4419] = 888, + [4420] = 4420, + [4421] = 942, + [4422] = 4422, [4423] = 4423, - [4424] = 949, - [4425] = 897, - [4426] = 898, - [4427] = 4053, - [4428] = 459, - [4429] = 4054, - [4430] = 4304, - [4431] = 4402, - [4432] = 4083, - [4433] = 4085, - [4434] = 4086, - [4435] = 4090, - [4436] = 916, - [4437] = 4091, + [4424] = 4424, + [4425] = 4425, + [4426] = 4377, + [4427] = 3004, + [4428] = 945, + [4429] = 1357, + [4430] = 4430, + [4431] = 4431, + [4432] = 4432, + [4433] = 497, + [4434] = 4434, + [4435] = 510, + [4436] = 488, + [4437] = 1799, [4438] = 4438, - [4439] = 4439, - [4440] = 4093, + [4439] = 1802, + [4440] = 956, [4441] = 4441, - [4442] = 4094, - [4443] = 4098, - [4444] = 4259, + [4442] = 958, + [4443] = 4443, + [4444] = 3205, [4445] = 4445, - [4446] = 4446, - [4447] = 4393, + [4446] = 932, + [4447] = 960, [4448] = 4448, - [4449] = 4449, - [4450] = 4450, - [4451] = 4451, - [4452] = 743, - [4453] = 744, - [4454] = 2570, - [4455] = 4325, - [4456] = 4326, - [4457] = 4327, - [4458] = 4328, - [4459] = 4329, - [4460] = 4460, + [4449] = 961, + [4450] = 700, + [4451] = 497, + [4452] = 3210, + [4453] = 453, + [4454] = 888, + [4455] = 962, + [4456] = 510, + [4457] = 488, + [4458] = 1061, + [4459] = 4222, + [4460] = 4422, [4461] = 4461, - [4462] = 2173, - [4463] = 2174, - [4464] = 4464, - [4465] = 4378, - [4466] = 2176, - [4467] = 4467, - [4468] = 4407, - [4469] = 444, - [4470] = 2540, - [4471] = 4381, + [4462] = 4462, + [4463] = 4222, + [4464] = 4222, + [4465] = 4465, + [4466] = 4466, + [4467] = 726, + [4468] = 4468, + [4469] = 4469, + [4470] = 4470, + [4471] = 4471, [4472] = 4472, - [4473] = 3128, - [4474] = 4413, - [4475] = 4446, - [4476] = 4287, - [4477] = 4288, - [4478] = 4297, - [4479] = 746, - [4480] = 747, - [4481] = 4337, - [4482] = 4482, - [4483] = 3003, + [4473] = 4473, + [4474] = 4474, + [4475] = 4475, + [4476] = 497, + [4477] = 1833, + [4478] = 1836, + [4479] = 4479, + [4480] = 4480, + [4481] = 4481, + [4482] = 4430, + [4483] = 4483, [4484] = 4484, - [4485] = 4485, - [4486] = 4338, - [4487] = 4101, - [4488] = 4110, - [4489] = 4129, - [4490] = 4381, - [4491] = 4292, - [4492] = 4136, - [4493] = 4413, - [4494] = 4137, - [4495] = 4142, - [4496] = 4496, - [4497] = 4381, - [4498] = 4413, - [4499] = 4446, - [4500] = 4334, - [4501] = 4381, + [4485] = 965, + [4486] = 966, + [4487] = 4222, + [4488] = 4488, + [4489] = 4489, + [4490] = 4169, + [4491] = 4491, + [4492] = 4492, + [4493] = 4409, + [4494] = 4326, + [4495] = 4495, + [4496] = 956, + [4497] = 4216, + [4498] = 4221, + [4499] = 4499, + [4500] = 4499, + [4501] = 958, [4502] = 4502, [4503] = 4503, - [4504] = 4070, - [4505] = 763, - [4506] = 764, - [4507] = 4149, - [4508] = 4151, - [4509] = 4381, - [4510] = 4172, - [4511] = 4175, - [4512] = 4413, - [4513] = 4217, - [4514] = 3005, - [4515] = 4299, - [4516] = 4302, - [4517] = 4309, - [4518] = 4311, - [4519] = 4341, - [4520] = 2530, - [4521] = 4144, - [4522] = 1358, - [4523] = 4156, + [4504] = 488, + [4505] = 4505, + [4506] = 510, + [4507] = 686, + [4508] = 687, + [4509] = 688, + [4510] = 4326, + [4511] = 4216, + [4512] = 4221, + [4513] = 4499, + [4514] = 1408, + [4515] = 727, + [4516] = 3865, + [4517] = 3093, + [4518] = 4518, + [4519] = 4389, + [4520] = 715, + [4521] = 441, + [4522] = 2203, + [4523] = 4523, [4524] = 4524, - [4525] = 4164, + [4525] = 4523, [4526] = 4526, - [4527] = 4170, - [4528] = 4201, - [4529] = 4345, + [4527] = 4527, + [4528] = 1371, + [4529] = 4328, [4530] = 4530, [4531] = 4531, - [4532] = 1366, - [4533] = 4081, - [4534] = 4202, - [4535] = 4082, - [4536] = 943, - [4537] = 4537, - [4538] = 4316, - [4539] = 4539, - [4540] = 540, - [4541] = 4402, - [4542] = 4542, + [4532] = 905, + [4533] = 4533, + [4534] = 2506, + [4535] = 4295, + [4536] = 4296, + [4537] = 2533, + [4538] = 946, + [4539] = 4443, + [4540] = 4540, + [4541] = 2509, + [4542] = 4523, [4543] = 4543, [4544] = 4544, - [4545] = 4346, - [4546] = 4095, - [4547] = 2148, - [4548] = 4099, + [4545] = 4545, + [4546] = 2517, + [4547] = 4547, + [4548] = 4548, [4549] = 4549, - [4550] = 4320, + [4550] = 4335, [4551] = 4551, - [4552] = 3026, - [4553] = 4347, - [4554] = 3036, - [4555] = 4555, - [4556] = 951, - [4557] = 4557, - [4558] = 4558, + [4552] = 4552, + [4553] = 4553, + [4554] = 768, + [4555] = 4297, + [4556] = 2539, + [4557] = 769, + [4558] = 2547, [4559] = 4559, - [4560] = 4237, - [4561] = 4240, - [4562] = 4241, - [4563] = 4243, - [4564] = 4244, - [4565] = 4265, - [4566] = 4128, - [4567] = 4220, + [4560] = 482, + [4561] = 4561, + [4562] = 4562, + [4563] = 4282, + [4564] = 4523, + [4565] = 4565, + [4566] = 4283, + [4567] = 4285, [4568] = 4568, - [4569] = 4569, - [4570] = 4570, + [4569] = 4406, + [4570] = 4370, [4571] = 4571, - [4572] = 2517, - [4573] = 470, - [4574] = 2526, - [4575] = 4575, - [4576] = 4576, - [4577] = 4577, + [4572] = 954, + [4573] = 4411, + [4574] = 1411, + [4575] = 4412, + [4576] = 4330, + [4577] = 4310, [4578] = 4578, - [4579] = 4579, - [4580] = 4580, - [4581] = 4581, - [4582] = 4225, - [4583] = 4583, - [4584] = 4264, - [4585] = 4212, + [4579] = 4298, + [4580] = 4337, + [4581] = 4431, + [4582] = 2168, + [4583] = 4416, + [4584] = 4420, + [4585] = 4287, [4586] = 4586, [4587] = 4587, - [4588] = 4588, - [4589] = 4589, + [4588] = 4365, + [4589] = 464, [4590] = 4590, - [4591] = 4591, + [4591] = 4288, [4592] = 4592, - [4593] = 4593, - [4594] = 444, + [4593] = 4341, + [4594] = 4594, [4595] = 4595, - [4596] = 491, - [4597] = 4597, - [4598] = 442, - [4599] = 2191, - [4600] = 4381, - [4601] = 4485, - [4602] = 4602, - [4603] = 3053, - [4604] = 4228, - [4605] = 4373, - [4606] = 498, + [4596] = 4596, + [4597] = 4313, + [4598] = 4598, + [4599] = 4530, + [4600] = 4600, + [4601] = 4595, + [4602] = 4559, + [4603] = 4603, + [4604] = 4367, + [4605] = 3323, + [4606] = 2897, [4607] = 4607, - [4608] = 4608, - [4609] = 4413, - [4610] = 4446, - [4611] = 4078, - [4612] = 1409, - [4613] = 4472, + [4608] = 4434, + [4609] = 4479, + [4610] = 4480, + [4611] = 4611, + [4612] = 4612, + [4613] = 4290, [4614] = 4614, [4615] = 4615, - [4616] = 4616, + [4616] = 4530, [4617] = 4617, - [4618] = 4239, - [4619] = 4619, - [4620] = 2541, - [4621] = 4413, - [4622] = 4622, - [4623] = 4623, - [4624] = 4624, - [4625] = 4625, - [4626] = 4626, + [4618] = 4445, + [4619] = 4617, + [4620] = 4531, + [4621] = 4461, + [4622] = 2899, + [4623] = 4559, + [4624] = 4491, + [4625] = 4492, + [4626] = 4350, [4627] = 4627, - [4628] = 4628, - [4629] = 4629, + [4628] = 4505, + [4629] = 4208, [4630] = 4630, - [4631] = 4631, - [4632] = 4632, + [4631] = 4369, + [4632] = 4209, [4633] = 4633, - [4634] = 4629, + [4634] = 4481, [4635] = 4635, [4636] = 4636, [4637] = 4637, - [4638] = 4635, - [4639] = 4639, - [4640] = 691, - [4641] = 339, - [4642] = 4642, + [4638] = 4213, + [4639] = 4378, + [4640] = 4379, + [4641] = 4331, + [4642] = 4380, [4643] = 4643, - [4644] = 4644, - [4645] = 4645, - [4646] = 4626, - [4647] = 4637, + [4644] = 4484, + [4645] = 4371, + [4646] = 4495, + [4647] = 4381, [4648] = 4648, - [4649] = 4630, - [4650] = 4650, - [4651] = 4651, - [4652] = 4652, - [4653] = 960, - [4654] = 4654, - [4655] = 4631, + [4649] = 4382, + [4650] = 4305, + [4651] = 334, + [4652] = 4372, + [4653] = 4488, + [4654] = 4327, + [4655] = 939, [4656] = 4656, - [4657] = 4627, - [4658] = 4628, - [4659] = 4639, - [4660] = 941, - [4661] = 967, - [4662] = 4662, - [4663] = 4627, - [4664] = 4664, - [4665] = 4628, + [4657] = 453, + [4658] = 4343, + [4659] = 4659, + [4660] = 527, + [4661] = 4661, + [4662] = 4553, + [4663] = 4342, + [4664] = 4332, + [4665] = 4390, [4666] = 4666, - [4667] = 4667, + [4667] = 4351, [4668] = 4668, - [4669] = 961, + [4669] = 4669, [4670] = 4670, - [4671] = 503, - [4672] = 4672, - [4673] = 931, - [4674] = 4674, + [4671] = 4671, + [4672] = 4333, + [4673] = 4673, + [4674] = 4523, [4675] = 4675, - [4676] = 904, - [4677] = 937, - [4678] = 3016, - [4679] = 4648, - [4680] = 4651, + [4676] = 928, + [4677] = 931, + [4678] = 4678, + [4679] = 4679, + [4680] = 749, [4681] = 4681, [4682] = 4682, - [4683] = 4683, - [4684] = 4684, - [4685] = 4016, - [4686] = 4686, - [4687] = 4664, - [4688] = 4666, - [4689] = 4662, - [4690] = 4622, - [4691] = 4691, - [4692] = 4643, - [4693] = 4667, - [4694] = 4670, - [4695] = 948, - [4696] = 4672, - [4697] = 490, - [4698] = 886, - [4699] = 4699, - [4700] = 1043, + [4683] = 750, + [4684] = 4530, + [4685] = 4617, + [4686] = 2900, + [4687] = 4687, + [4688] = 4553, + [4689] = 4303, + [4690] = 4553, + [4691] = 4304, + [4692] = 3109, + [4693] = 4693, + [4694] = 4694, + [4695] = 4695, + [4696] = 4245, + [4697] = 4648, + [4698] = 4251, + [4699] = 4354, + [4700] = 4262, [4701] = 4701, - [4702] = 4675, - [4703] = 4668, - [4704] = 4704, - [4705] = 4705, + [4702] = 491, + [4703] = 4466, + [4704] = 4374, + [4705] = 4376, [4706] = 4706, - [4707] = 4707, - [4708] = 4708, - [4709] = 4709, - [4710] = 3532, - [4711] = 3570, - [4712] = 4464, - [4713] = 954, - [4714] = 4633, - [4715] = 4715, - [4716] = 1510, - [4717] = 4717, - [4718] = 4707, - [4719] = 4719, - [4720] = 2089, - [4721] = 4721, - [4722] = 4644, - [4723] = 958, + [4707] = 2896, + [4708] = 4530, + [4709] = 4355, + [4710] = 4710, + [4711] = 2229, + [4712] = 2230, + [4713] = 4263, + [4714] = 4518, + [4715] = 4268, + [4716] = 2232, + [4717] = 4523, + [4718] = 4234, + [4719] = 4269, + [4720] = 4236, + [4721] = 4270, + [4722] = 4530, + [4723] = 4600, [4724] = 4724, - [4725] = 4625, - [4726] = 4726, + [4725] = 4359, + [4726] = 4360, [4727] = 4727, - [4728] = 4728, + [4728] = 4468, [4729] = 4729, - [4730] = 3037, - [4731] = 3131, + [4730] = 4730, + [4731] = 752, [4732] = 4732, - [4733] = 351, - [4734] = 4645, - [4735] = 4735, - [4736] = 4736, - [4737] = 4724, - [4738] = 4704, - [4739] = 4625, - [4740] = 4705, - [4741] = 4741, - [4742] = 4742, - [4743] = 357, - [4744] = 4744, - [4745] = 4745, - [4746] = 4626, - [4747] = 4691, - [4748] = 927, + [4733] = 4733, + [4734] = 4666, + [4735] = 753, + [4736] = 4475, + [4737] = 4483, + [4738] = 4675, + [4739] = 4362, + [4740] = 4740, + [4741] = 949, + [4742] = 4489, + [4743] = 498, + [4744] = 4617, + [4745] = 4363, + [4746] = 4364, + [4747] = 695, + [4748] = 4748, [4749] = 4749, - [4750] = 955, + [4750] = 4750, [4751] = 4751, - [4752] = 4706, - [4753] = 896, - [4754] = 4754, - [4755] = 4627, - [4756] = 4726, - [4757] = 4628, - [4758] = 4758, - [4759] = 4759, - [4760] = 3093, - [4761] = 4761, - [4762] = 3095, - [4763] = 4726, - [4764] = 4764, - [4765] = 4765, + [4752] = 4752, + [4753] = 970, + [4754] = 4523, + [4755] = 373, + [4756] = 4756, + [4757] = 1367, + [4758] = 921, + [4759] = 441, + [4760] = 4321, + [4761] = 4334, + [4762] = 4530, + [4763] = 4469, + [4764] = 4559, + [4765] = 940, [4766] = 4766, - [4767] = 4767, - [4768] = 4768, - [4769] = 470, - [4770] = 4770, - [4771] = 4699, - [4772] = 4772, - [4773] = 459, - [4774] = 4774, - [4775] = 4625, - [4776] = 4726, - [4777] = 4626, - [4778] = 2082, - [4779] = 4726, - [4780] = 2083, - [4781] = 4686, - [4782] = 4719, + [4767] = 4384, + [4768] = 4470, + [4769] = 4769, + [4770] = 3154, + [4771] = 4771, + [4772] = 4299, + [4773] = 4292, + [4774] = 4329, + [4775] = 3165, + [4776] = 4559, + [4777] = 4777, + [4778] = 4373, + [4779] = 956, + [4780] = 4780, + [4781] = 4781, + [4782] = 4782, [4783] = 4783, - [4784] = 4715, + [4784] = 4784, [4785] = 4785, - [4786] = 500, - [4787] = 959, + [4786] = 4786, + [4787] = 4787, [4788] = 4788, - [4789] = 4632, - [4790] = 925, + [4789] = 4789, + [4790] = 961, [4791] = 4791, [4792] = 4792, [4793] = 4793, - [4794] = 4794, + [4794] = 488, [4795] = 4795, [4796] = 4796, [4797] = 4797, [4798] = 4798, - [4799] = 4798, - [4800] = 4792, + [4799] = 4799, + [4800] = 930, [4801] = 4801, [4802] = 4802, [4803] = 4803, - [4804] = 4798, - [4805] = 4801, - [4806] = 4806, - [4807] = 4807, + [4804] = 2908, + [4805] = 2912, + [4806] = 4801, + [4807] = 4802, [4808] = 4808, [4809] = 4809, - [4810] = 4810, + [4810] = 1518, [4811] = 4811, - [4812] = 4792, - [4813] = 4793, - [4814] = 4794, + [4812] = 360, + [4813] = 4813, + [4814] = 4814, [4815] = 4815, - [4816] = 4816, - [4817] = 4798, - [4818] = 4802, + [4816] = 942, + [4817] = 4817, + [4818] = 4818, [4819] = 4819, - [4820] = 4820, - [4821] = 4821, - [4822] = 4801, - [4823] = 4823, - [4824] = 4792, - [4825] = 4791, - [4826] = 4809, - [4827] = 4827, + [4820] = 497, + [4821] = 4813, + [4822] = 3167, + [4823] = 2130, + [4824] = 2131, + [4825] = 4814, + [4826] = 4826, + [4827] = 367, [4828] = 4828, - [4829] = 4792, - [4830] = 4793, - [4831] = 4794, - [4832] = 4798, - [4833] = 4833, - [4834] = 4793, + [4829] = 339, + [4830] = 4830, + [4831] = 4831, + [4832] = 888, + [4833] = 1050, + [4834] = 4795, [4835] = 4835, [4836] = 4836, - [4837] = 4801, - [4838] = 4838, - [4839] = 4798, + [4837] = 4796, + [4838] = 4808, + [4839] = 4811, [4840] = 4840, - [4841] = 498, - [4842] = 4842, - [4843] = 4792, - [4844] = 4793, - [4845] = 4794, - [4846] = 4798, - [4847] = 4801, + [4841] = 4841, + [4842] = 4798, + [4843] = 4799, + [4844] = 4844, + [4845] = 4845, + [4846] = 4846, + [4847] = 4847, [4848] = 4848, - [4849] = 4821, - [4850] = 4801, - [4851] = 4851, - [4852] = 4819, + [4849] = 4849, + [4850] = 4850, + [4851] = 3713, + [4852] = 3719, [4853] = 4853, - [4854] = 4815, - [4855] = 4792, - [4856] = 4793, - [4857] = 4794, - [4858] = 4820, - [4859] = 4803, - [4860] = 4801, + [4854] = 4854, + [4855] = 4855, + [4856] = 4808, + [4857] = 4811, + [4858] = 4858, + [4859] = 4859, + [4860] = 945, [4861] = 4861, [4862] = 4862, - [4863] = 4863, - [4864] = 4792, - [4865] = 4793, - [4866] = 4794, + [4863] = 4844, + [4864] = 4845, + [4865] = 4848, + [4866] = 4849, [4867] = 4867, [4868] = 4868, - [4869] = 4801, - [4870] = 4870, + [4869] = 4673, + [4870] = 934, [4871] = 4871, [4872] = 4872, - [4873] = 4792, - [4874] = 4793, - [4875] = 4794, - [4876] = 4835, - [4877] = 491, - [4878] = 4801, + [4873] = 4873, + [4874] = 4874, + [4875] = 4875, + [4876] = 4876, + [4877] = 4877, + [4878] = 904, [4879] = 4879, - [4880] = 4792, - [4881] = 4793, - [4882] = 4794, - [4883] = 4801, - [4884] = 4851, - [4885] = 4801, - [4886] = 4809, - [4887] = 4792, - [4888] = 4793, - [4889] = 4794, - [4890] = 4793, - [4891] = 4891, - [4892] = 4801, - [4893] = 4827, - [4894] = 4792, - [4895] = 4793, - [4896] = 4794, - [4897] = 4807, - [4898] = 4810, - [4899] = 4801, - [4900] = 4810, - [4901] = 4792, - [4902] = 4793, - [4903] = 4794, + [4880] = 960, + [4881] = 4801, + [4882] = 2651, + [4883] = 4883, + [4884] = 4802, + [4885] = 4836, + [4886] = 4840, + [4887] = 4887, + [4888] = 464, + [4889] = 4889, + [4890] = 696, + [4891] = 482, + [4892] = 4892, + [4893] = 4893, + [4894] = 4858, + [4895] = 4862, + [4896] = 4896, + [4897] = 957, + [4898] = 4873, + [4899] = 965, + [4900] = 4900, + [4901] = 4169, + [4902] = 2003, + [4903] = 4854, [4904] = 4904, - [4905] = 491, - [4906] = 4801, + [4905] = 4875, + [4906] = 4855, [4907] = 4907, - [4908] = 4792, - [4909] = 4793, - [4910] = 4794, - [4911] = 4911, - [4912] = 4801, - [4913] = 4792, - [4914] = 4793, - [4915] = 4794, + [4908] = 966, + [4909] = 4872, + [4910] = 4841, + [4911] = 3113, + [4912] = 4912, + [4913] = 4874, + [4914] = 4818, + [4915] = 4915, [4916] = 4916, - [4917] = 4917, - [4918] = 4851, - [4919] = 4811, + [4917] = 4877, + [4918] = 4918, + [4919] = 4887, [4920] = 4920, - [4921] = 4921, + [4921] = 4841, [4922] = 4922, - [4923] = 4923, - [4924] = 4924, - [4925] = 4808, - [4926] = 4809, - [4927] = 4867, - [4928] = 4928, - [4929] = 4929, - [4930] = 4930, - [4931] = 4879, - [4932] = 4932, - [4933] = 4933, - [4934] = 4809, - [4935] = 2530, - [4936] = 498, + [4923] = 4841, + [4924] = 510, + [4925] = 4871, + [4926] = 4900, + [4927] = 4896, + [4928] = 4817, + [4929] = 4801, + [4930] = 4802, + [4931] = 4868, + [4932] = 4876, + [4933] = 4808, + [4934] = 4811, + [4935] = 4935, + [4936] = 1061, [4937] = 4937, - [4938] = 4827, - [4939] = 4792, - [4940] = 4793, - [4941] = 4929, - [4942] = 4806, + [4938] = 4841, + [4939] = 4939, + [4940] = 4940, + [4941] = 914, + [4942] = 958, [4943] = 4943, - [4944] = 4870, - [4945] = 4794, - [4946] = 4851, - [4947] = 4929, - [4948] = 491, - [4949] = 4797, + [4944] = 4847, + [4945] = 4850, + [4946] = 962, + [4947] = 4907, + [4948] = 4948, + [4949] = 4949, [4950] = 4950, [4951] = 4951, - [4952] = 4823, - [4953] = 4933, + [4952] = 4952, + [4953] = 4953, [4954] = 4954, - [4955] = 4797, - [4956] = 4794, + [4955] = 4955, + [4956] = 4949, [4957] = 4957, - [4958] = 4820, + [4958] = 888, [4959] = 4959, [4960] = 4960, - [4961] = 4819, - [4962] = 4823, - [4963] = 930, - [4964] = 4803, + [4961] = 4961, + [4962] = 4962, + [4963] = 4963, + [4964] = 4963, [4965] = 4965, [4966] = 4966, - [4967] = 4967, - [4968] = 4798, - [4969] = 2570, - [4970] = 4802, - [4971] = 4971, - [4972] = 4770, - [4973] = 4921, - [4974] = 4820, - [4975] = 4797, - [4976] = 4803, - [4977] = 4977, - [4978] = 4791, - [4979] = 4802, - [4980] = 4809, - [4981] = 4922, - [4982] = 4982, - [4983] = 4827, - [4984] = 4806, - [4985] = 4920, - [4986] = 4932, - [4987] = 2517, - [4988] = 4801, - [4989] = 4989, - [4990] = 4801, + [4967] = 4952, + [4968] = 4962, + [4969] = 4969, + [4970] = 4950, + [4971] = 4957, + [4972] = 4963, + [4973] = 4965, + [4974] = 4974, + [4975] = 4960, + [4976] = 4966, + [4977] = 4962, + [4978] = 4951, + [4979] = 4963, + [4980] = 4965, + [4981] = 4966, + [4982] = 4952, + [4983] = 4948, + [4984] = 4984, + [4985] = 4985, + [4986] = 4957, + [4987] = 4957, + [4988] = 4965, + [4989] = 4966, + [4990] = 4960, [4991] = 4991, - [4992] = 4851, - [4993] = 4797, - [4994] = 4810, - [4995] = 4929, - [4996] = 4996, - [4997] = 4997, - [4998] = 4916, - [4999] = 2541, - [5000] = 4862, - [5001] = 4791, + [4992] = 4963, + [4993] = 4965, + [4994] = 4966, + [4995] = 4949, + [4996] = 4952, + [4997] = 4957, + [4998] = 4962, + [4999] = 4999, + [5000] = 939, + [5001] = 4960, [5002] = 5002, - [5003] = 4809, - [5004] = 4933, - [5005] = 5005, - [5006] = 4827, - [5007] = 5007, - [5008] = 4819, - [5009] = 4791, - [5010] = 4863, - [5011] = 4810, - [5012] = 4929, - [5013] = 4820, - [5014] = 4809, - [5015] = 4929, - [5016] = 4803, + [5003] = 4963, + [5004] = 4965, + [5005] = 4966, + [5006] = 4951, + [5007] = 5002, + [5008] = 4957, + [5009] = 5009, + [5010] = 5010, + [5011] = 5011, + [5012] = 5012, + [5013] = 4963, + [5014] = 4965, + [5015] = 4966, + [5016] = 491, [5017] = 5017, - [5018] = 4797, - [5019] = 4871, - [5020] = 4801, - [5021] = 5021, - [5022] = 4792, - [5023] = 4836, - [5024] = 5024, - [5025] = 4807, - [5026] = 2526, - [5027] = 4808, - [5028] = 4793, - [5029] = 4801, + [5018] = 4957, + [5019] = 5019, + [5020] = 4963, + [5021] = 4965, + [5022] = 4966, + [5023] = 4951, + [5024] = 4952, + [5025] = 4957, + [5026] = 5026, + [5027] = 4963, + [5028] = 4965, + [5029] = 4966, [5030] = 5030, - [5031] = 4794, - [5032] = 4851, - [5033] = 4836, - [5034] = 4827, - [5035] = 5035, - [5036] = 4967, - [5037] = 4794, - [5038] = 4997, - [5039] = 4862, - [5040] = 4840, - [5041] = 4809, - [5042] = 4823, - [5043] = 4929, - [5044] = 4797, - [5045] = 936, - [5046] = 4827, - [5047] = 4809, - [5048] = 498, - [5049] = 4827, - [5050] = 4851, - [5051] = 4797, - [5052] = 4891, - [5053] = 4929, - [5054] = 4797, - [5055] = 4810, - [5056] = 4809, - [5057] = 4916, - [5058] = 4920, - [5059] = 4921, - [5060] = 4922, - [5061] = 4819, - [5062] = 886, - [5063] = 4959, - [5064] = 4943, - [5065] = 4803, - [5066] = 4929, - [5067] = 4798, - [5068] = 4928, - [5069] = 500, - [5070] = 4793, - [5071] = 4802, - [5072] = 4794, - [5073] = 503, - [5074] = 4820, - [5075] = 490, - [5076] = 4792, - [5077] = 4996, - [5078] = 4793, - [5079] = 4794, - [5080] = 4809, - [5081] = 4820, - [5082] = 4823, - [5083] = 4967, - [5084] = 4791, - [5085] = 4816, - [5086] = 5021, - [5087] = 5087, - [5088] = 5002, - [5089] = 4943, - [5090] = 4868, - [5091] = 4870, - [5092] = 4960, - [5093] = 5002, - [5094] = 4916, - [5095] = 4920, - [5096] = 4921, - [5097] = 4922, - [5098] = 4797, - [5099] = 4943, - [5100] = 4791, - [5101] = 4827, - [5102] = 5102, - [5103] = 5103, - [5104] = 4871, - [5105] = 4798, - [5106] = 4916, - [5107] = 4920, - [5108] = 4921, - [5109] = 4922, - [5110] = 4916, - [5111] = 4920, - [5112] = 4921, - [5113] = 4922, - [5114] = 4916, - [5115] = 4920, - [5116] = 4921, - [5117] = 4922, - [5118] = 4916, - [5119] = 4921, - [5120] = 4922, - [5121] = 4916, - [5122] = 4921, - [5123] = 4922, - [5124] = 4916, - [5125] = 4921, - [5126] = 4922, - [5127] = 4916, - [5128] = 4921, - [5129] = 4922, - [5130] = 4916, - [5131] = 4921, - [5132] = 4922, - [5133] = 4916, - [5134] = 4921, - [5135] = 4922, - [5136] = 4916, - [5137] = 4921, - [5138] = 4922, - [5139] = 4916, - [5140] = 4921, - [5141] = 4922, - [5142] = 4916, - [5143] = 4921, - [5144] = 4922, - [5145] = 4916, - [5146] = 4921, - [5147] = 4922, - [5148] = 4916, - [5149] = 4921, - [5150] = 4922, - [5151] = 4916, - [5152] = 4921, - [5153] = 4922, - [5154] = 4916, - [5155] = 4921, - [5156] = 4922, - [5157] = 4823, - [5158] = 4801, - [5159] = 5035, - [5160] = 4810, + [5031] = 5009, + [5032] = 4957, + [5033] = 5033, + [5034] = 4963, + [5035] = 4965, + [5036] = 4966, + [5037] = 4955, + [5038] = 5038, + [5039] = 4957, + [5040] = 5040, + [5041] = 4963, + [5042] = 4965, + [5043] = 4966, + [5044] = 4955, + [5045] = 5045, + [5046] = 4957, + [5047] = 4999, + [5048] = 4963, + [5049] = 4965, + [5050] = 4966, + [5051] = 5017, + [5052] = 4957, + [5053] = 5053, + [5054] = 4963, + [5055] = 4965, + [5056] = 4966, + [5057] = 4950, + [5058] = 4957, + [5059] = 5059, + [5060] = 4963, + [5061] = 4965, + [5062] = 4966, + [5063] = 5063, + [5064] = 5064, + [5065] = 4952, + [5066] = 5066, + [5067] = 4974, + [5068] = 5068, + [5069] = 5069, + [5070] = 5070, + [5071] = 5071, + [5072] = 5030, + [5073] = 5073, + [5074] = 5074, + [5075] = 5075, + [5076] = 5076, + [5077] = 4957, + [5078] = 5078, + [5079] = 5079, + [5080] = 5080, + [5081] = 4960, + [5082] = 5009, + [5083] = 5030, + [5084] = 5084, + [5085] = 5045, + [5086] = 4974, + [5087] = 949, + [5088] = 4962, + [5089] = 5089, + [5090] = 5090, + [5091] = 5091, + [5092] = 4991, + [5093] = 4948, + [5094] = 4960, + [5095] = 4955, + [5096] = 4960, + [5097] = 4984, + [5098] = 4960, + [5099] = 4951, + [5100] = 5100, + [5101] = 5101, + [5102] = 5045, + [5103] = 5059, + [5104] = 4950, + [5105] = 4957, + [5106] = 4962, + [5107] = 4948, + [5108] = 5108, + [5109] = 5066, + [5110] = 5110, + [5111] = 4953, + [5112] = 5012, + [5113] = 5113, + [5114] = 5068, + [5115] = 4984, + [5116] = 4962, + [5117] = 5117, + [5118] = 4963, + [5119] = 4965, + [5120] = 5064, + [5121] = 4955, + [5122] = 5122, + [5123] = 498, + [5124] = 5124, + [5125] = 5125, + [5126] = 2517, + [5127] = 5045, + [5128] = 5076, + [5129] = 4999, + [5130] = 5100, + [5131] = 4963, + [5132] = 5030, + [5133] = 5133, + [5134] = 4965, + [5135] = 4966, + [5136] = 5136, + [5137] = 5137, + [5138] = 5138, + [5139] = 4961, + [5140] = 5140, + [5141] = 2539, + [5142] = 5142, + [5143] = 4828, + [5144] = 4999, + [5145] = 4949, + [5146] = 5146, + [5147] = 4963, + [5148] = 4951, + [5149] = 5017, + [5150] = 5150, + [5151] = 5151, + [5152] = 4951, + [5153] = 497, + [5154] = 5009, + [5155] = 5091, + [5156] = 5071, + [5157] = 510, + [5158] = 4966, + [5159] = 488, + [5160] = 5017, [5161] = 5161, - [5162] = 5162, - [5163] = 4828, - [5164] = 4924, + [5162] = 4952, + [5163] = 4965, + [5164] = 5030, [5165] = 5165, - [5166] = 5166, - [5167] = 4904, - [5168] = 4907, - [5169] = 5169, - [5170] = 5170, + [5166] = 4955, + [5167] = 4957, + [5168] = 5168, + [5169] = 4959, + [5170] = 5101, [5171] = 5171, - [5172] = 4819, + [5172] = 5011, [5173] = 5173, - [5174] = 4803, - [5175] = 4798, - [5176] = 4929, - [5177] = 4809, - [5178] = 4811, - [5179] = 4795, - [5180] = 4797, - [5181] = 4792, - [5182] = 4802, - [5183] = 4806, - [5184] = 4827, - [5185] = 4819, - [5186] = 5186, - [5187] = 4793, - [5188] = 4794, - [5189] = 4795, - [5190] = 4816, - [5191] = 4929, - [5192] = 4989, - [5193] = 4823, - [5194] = 4967, - [5195] = 4836, - [5196] = 4802, - [5197] = 4950, - [5198] = 4868, - [5199] = 4872, - [5200] = 5002, - [5201] = 2540, - [5202] = 4792, - [5203] = 5203, + [5174] = 491, + [5175] = 4999, + [5176] = 4991, + [5177] = 4991, + [5178] = 5178, + [5179] = 5179, + [5180] = 5117, + [5181] = 5069, + [5182] = 4952, + [5183] = 4962, + [5184] = 5184, + [5185] = 4949, + [5186] = 5136, + [5187] = 5017, + [5188] = 2533, + [5189] = 5117, + [5190] = 5190, + [5191] = 4960, + [5192] = 4957, + [5193] = 5045, + [5194] = 5194, + [5195] = 5195, + [5196] = 5045, + [5197] = 5079, + [5198] = 4999, + [5199] = 4985, + [5200] = 4960, + [5201] = 4950, + [5202] = 4962, + [5203] = 4960, + [5204] = 4951, + [5205] = 5205, + [5206] = 4950, + [5207] = 5045, + [5208] = 5208, + [5209] = 491, + [5210] = 5045, + [5211] = 5064, + [5212] = 5068, + [5213] = 5069, + [5214] = 5070, + [5215] = 5010, + [5216] = 4962, + [5217] = 5090, + [5218] = 4957, + [5219] = 5219, + [5220] = 4962, + [5221] = 4957, + [5222] = 5011, + [5223] = 5223, + [5224] = 4963, + [5225] = 4965, + [5226] = 4966, + [5227] = 4991, + [5228] = 4963, + [5229] = 5223, + [5230] = 4965, + [5231] = 4949, + [5232] = 5136, + [5233] = 5122, + [5234] = 4960, + [5235] = 4966, + [5236] = 5045, + [5237] = 5223, + [5238] = 4950, + [5239] = 5070, + [5240] = 5059, + [5241] = 4962, + [5242] = 5084, + [5243] = 5125, + [5244] = 5219, + [5245] = 4963, + [5246] = 4965, + [5247] = 4966, + [5248] = 4951, + [5249] = 5076, + [5250] = 4949, + [5251] = 5136, + [5252] = 5084, + [5253] = 5064, + [5254] = 5068, + [5255] = 5069, + [5256] = 5070, + [5257] = 4949, + [5258] = 5090, + [5259] = 5223, + [5260] = 5260, + [5261] = 4966, + [5262] = 5064, + [5263] = 5068, + [5264] = 5069, + [5265] = 5070, + [5266] = 5064, + [5267] = 5068, + [5268] = 5069, + [5269] = 5070, + [5270] = 5064, + [5271] = 5068, + [5272] = 5069, + [5273] = 5070, + [5274] = 5064, + [5275] = 5069, + [5276] = 5070, + [5277] = 5064, + [5278] = 5069, + [5279] = 5070, + [5280] = 5064, + [5281] = 5069, + [5282] = 5070, + [5283] = 5064, + [5284] = 5069, + [5285] = 5070, + [5286] = 5064, + [5287] = 5069, + [5288] = 5070, + [5289] = 5064, + [5290] = 5069, + [5291] = 5070, + [5292] = 5064, + [5293] = 5069, + [5294] = 5070, + [5295] = 5064, + [5296] = 5069, + [5297] = 5070, + [5298] = 5064, + [5299] = 5069, + [5300] = 5070, + [5301] = 5064, + [5302] = 5069, + [5303] = 5070, + [5304] = 5064, + [5305] = 5069, + [5306] = 5070, + [5307] = 5064, + [5308] = 5069, + [5309] = 5070, + [5310] = 5064, + [5311] = 5069, + [5312] = 5070, + [5313] = 5064, + [5314] = 5069, + [5315] = 5070, + [5316] = 4991, + [5317] = 5011, + [5318] = 5318, + [5319] = 4951, + [5320] = 5009, + [5321] = 2506, + [5322] = 5179, + [5323] = 4960, + [5324] = 5017, + [5325] = 4952, + [5326] = 4951, + [5327] = 4952, + [5328] = 2509, + [5329] = 5030, + [5330] = 5330, + [5331] = 5030, + [5332] = 4961, + [5333] = 5009, + [5334] = 4955, + [5335] = 498, + [5336] = 5336, + [5337] = 5337, + [5338] = 5337, + [5339] = 5339, + [5340] = 5110, + [5341] = 5341, + [5342] = 5318, + [5343] = 4974, + [5344] = 5090, + [5345] = 5113, + [5346] = 4957, + [5347] = 5089, + [5348] = 5348, + [5349] = 4984, + [5350] = 4999, + [5351] = 5089, + [5352] = 4960, + [5353] = 4960, + [5354] = 5078, + [5355] = 4999, + [5356] = 5137, + [5357] = 5357, + [5358] = 5009, + [5359] = 4962, + [5360] = 5337, + [5361] = 5045, + [5362] = 5017, + [5363] = 4952, + [5364] = 5038, + [5365] = 4963, + [5366] = 5337, + [5367] = 5138, + [5368] = 5089, + [5369] = 4957, + [5370] = 5091, + [5371] = 5030, + [5372] = 2547, + [5373] = 4991, + [5374] = 4961, + [5375] = 5184, + [5376] = 4965, + [5377] = 4966, + [5378] = 498, + [5379] = 5379, }; static const TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -10679,1918 +10879,1885 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '$', 1510, - '&', 824, - '\'', 1688, - '(', 1561, - ')', 1616, - '*', 1112, - '+', 1117, - ',', 1469, - '-', 1118, - '.', 1721, - '/', 1114, - ':', 1713, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1144, - '?', 1717, - '@', 1481, - '[', 1665, - ']', 1466, - '^', 1731, - '_', 1502, - '`', 1692, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1717, + '"', 1684, + '#', 2187, + '$', 1509, + '&', 823, + '\'', 1687, + '(', 1560, + ')', 1615, + '*', 1111, + '+', 1116, + ',', 1468, + '-', 1117, + '.', 1720, + '/', 1113, + ':', 1712, + ';', 1450, + '<', 1140, + '=', 672, + '>', 1143, + '?', 1716, + '@', 1480, + '[', 1664, + ']', 1465, + '^', 1730, + '_', 1501, + '`', 1691, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(571); + lookahead == ' ') SKIP(565); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1373); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1372); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1718, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, + '!', 1717, + '#', 2187, + '$', 1469, + '(', 1466, + ')', 1467, + ',', 1468, + '-', 1486, '.', 1724, - ':', 1463, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1479, - '?', 1717, - '@', 1481, - '[', 1465, - ']', 1466, - '{', 1498, - '|', 1452, - '}', 1499, + ':', 1462, + '<', 1140, + '=', 672, + '>', 1478, + '?', 1716, + '@', 1480, + '[', 1464, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`') ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1718, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1725, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '?', 1717, - '[', 1465, - ']', 1466, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1717, + '#', 2187, + '$', 1469, + '(', 1466, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1723, + ':', 1462, + '=', 672, + '>', 1478, + '?', 1716, + '[', 1464, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`') ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1720, - ':', 1713, - ';', 1451, - '=', 323, - '?', 1717, - 'a', 421, + '!', 1717, + '#', 2187, + '(', 1466, + ')', 1467, + '-', 297, + '.', 1719, + ':', 1712, + ';', 1450, + '=', 674, + '>', 1478, + '?', 1716, + '[', 1464, + 'a', 416, 'e', 288, - 'i', 387, + 'i', 382, 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1722, - ':', 1713, - ';', 1451, - '=', 323, - '?', 1717, - 'a', 421, + '!', 1717, + '#', 2187, + '(', 1466, + ')', 1467, + '-', 297, + '.', 1721, + ':', 1712, + ';', 1450, + '=', 674, + '>', 1478, + '?', 1716, + '[', 1464, + 'a', 416, 'e', 288, - 'i', 387, + 'i', 382, 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1717, + '#', 2187, + ')', 1467, + '.', 1719, + ':', 1712, + ';', 1450, + '=', 323, + '?', 1716, + 'a', 416, + 'e', 288, + 'i', 382, + 'o', 289, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(6); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1717, + '#', 2187, + ')', 1467, + '.', 1721, + ':', 1712, + ';', 1450, + '=', 323, + '?', 1716, + 'a', 416, + 'e', 288, + 'i', 382, + 'o', 289, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(6); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, + '!', 1792, + '#', 2187, + '$', 1469, + '(', 1560, + '*', 1511, '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, + '-', 1492, + '.', 1603, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1865, 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, + 'i', 1862, + 'l', 1850, + 'm', 1873, 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + 'o', 1878, + 's', 1898, + 'x', 1870, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); case 9: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, + '!', 1792, + '#', 2187, + '$', 1469, + '(', 1560, + '*', 1511, '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '-', 1492, + '.', 1814, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1865, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); case 10: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1594, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1804, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1878, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '{', 1497, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1594, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1815, 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, + 'i', 1862, + 'l', 1850, + 'm', 1873, 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + 'o', 1878, + 's', 1898, + 'x', 1870, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 12: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1808, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '_', 1812, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1804, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1878, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '{', 1497, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(30); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 13: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1804, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1878, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '{', 1497, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 14: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, + 'E', 1809, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1807, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1878, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '{', 1497, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 15: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1815, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(30); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 16: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1815, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 17: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + 'a', 1864, + 'b', 1851, + 'e', 1865, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 18: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1593, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1815, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 19: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1815, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(30); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 20: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, - '{', 1498, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1815, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(20); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 21: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + 'a', 1864, + 'b', 1851, + 'e', 1865, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 22: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2187, + '$', 1469, + '*', 1511, + '+', 1576, + '-', 1493, + '.', 336, + '/', 1566, + '<', 1549, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 420, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 446, + 's', 480, + 'x', 426, + '{', 1497, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); END_STATE(); case 23: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, + '#', 2187, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 284, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 480, + 'x', 426, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); END_STATE(); case 24: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2187, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 287, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 289, + 's', 480, + 'x', 426, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); END_STATE(); case 25: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ':', 1712, + ';', 1450, + '<', 1549, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 284, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 279, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); END_STATE(); case 26: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 284, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); END_STATE(); case 27: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1479, + 'a', 416, + 'b', 395, 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + '<', 1549, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, - '{', 1498, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 284, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 279, + 's', 480, + 'x', 426, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1713, - ';', 1451, - '=', 1729, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '}', 1499, + '!', 320, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + '<', 1549, + '=', 322, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 287, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 289, + 's', 480, + 'x', 426, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1713, - ';', 1451, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '}', 1499, + '!', 320, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + '<', 1549, + '=', 322, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 420, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 446, + 's', 480, + 'x', 426, + '{', 1497, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); END_STATE(); case 31: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 1580, - '-', 1491, - '.', 698, - '0', 1623, - ':', 1463, - ';', 1451, - '<', 1141, - '=', 323, - '>', 1479, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + ')', 1467, + '+', 701, + '-', 1490, + '.', 696, + '0', 1622, + ':', 1712, + ';', 1450, + '=', 1728, + '@', 1461, + 'I', 808, + 'N', 804, + '[', 1464, + '^', 1730, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 768, + 't', 771, + 'u', 784, + 'w', 746, + '{', 1497, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead)) ADVANCE(824); + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); case 32: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 1580, - '-', 1491, - '.', 698, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 323, - '>', 1479, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + ')', 1467, + '+', 701, + '-', 1490, + '.', 696, + '0', 1622, + ':', 1712, + ';', 1450, + '@', 1461, + 'I', 808, + 'N', 804, + '[', 1464, + '^', 1730, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 768, + 't', 771, + 'u', 784, + 'w', 746, + '{', 1497, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead)) ADVANCE(824); + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); case 33: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + ')', 1467, + '+', 1579, + '-', 1490, '.', 697, - '0', 1623, - ';', 1451, - '=', 1729, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '\t', 1450, - ' ', 1450, + '0', 1622, + ':', 1462, + ';', 1450, + '<', 1140, + '=', 323, + '>', 1478, + '@', 1461, + 'I', 808, + 'N', 804, + '[', 1464, + ']', 1465, + '^', 1730, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 768, + 't', 771, + 'u', 784, + 'w', 746, + '{', 1497, + '|', 1451, + '}', 1498, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead == '\t' || + lookahead == ' ') SKIP(34); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead)) ADVANCE(823); END_STATE(); case 34: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + ')', 1467, + '+', 1579, + '-', 1490, '.', 697, - '0', 1623, - '=', 673, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '0', 1622, + ':', 1462, + ';', 1450, + '=', 323, + '>', 1478, + '@', 1461, + 'I', 808, + 'N', 804, + '[', 1464, + ']', 1465, + '^', 1730, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 768, + 't', 771, + 'u', 784, + 'w', 746, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == ' ') SKIP(34); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '0' || '>' < lookahead)) ADVANCE(823); END_STATE(); case 35: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - '=', 673, - '>', 1479, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 701, + '-', 1490, + '.', 696, + '0', 1622, + ';', 1450, + '=', 1728, + 'I', 808, + 'N', 804, + '[', 1464, + '^', 1730, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 768, + 't', 771, + 'u', 784, + 'w', 750, + '{', 1497, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 36: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 691, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 'o', 693, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 701, + '-', 1490, + '.', 696, + '0', 1622, + '=', 672, + '>', 1478, + '@', 1480, + 'I', 808, + 'N', 804, + '[', 1464, + '^', 1730, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 768, + 't', 771, + 'u', 784, + 'w', 750, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(37); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); case 37: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 299, - '.', 718, - '=', 1729, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 701, + '-', 1490, + '.', 696, + '0', 1622, + '=', 672, + '>', 1478, + 'I', 808, + 'N', 804, + '[', 1464, + '^', 1730, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 768, + 't', 771, + 'u', 784, + 'w', 750, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(37); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 38: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 701, '-', 299, - '.', 718, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '.', 717, + '=', 1728, + 'I', 808, + 'N', 804, + '[', 1464, + ']', 1465, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(39); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 39: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 308, - '-', 1491, - '.', 309, - '0', 1626, - ':', 1713, - 'N', 533, - '[', 1465, - '_', 342, - '`', 1692, - 'f', 347, - 'n', 442, - 't', 457, - '{', 1498, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 701, + '-', 299, + '.', 717, + 'I', 808, + 'N', 804, + '[', 1464, + ']', 1465, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + '{', 1497, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(542); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 40: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 1580, - '-', 1491, - '.', 701, - '0', 1628, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 309, + '-', 1490, + '.', 310, + '0', 1625, + ':', 1712, + 'N', 527, + '[', 1464, + '_', 338, + '`', 1691, + 'f', 343, + 'n', 437, + 't', 451, + '{', 1497, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(536); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 41: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1491, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2027, - 't', 2030, - '{', 1498, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 1579, + '-', 1490, + '.', 700, + '0', 1627, + 'I', 808, + 'N', 804, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(41); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + END_STATE(); + case 42: + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 1999, + '-', 1490, + '.', 1997, + '0', 1623, + 'N', 2046, + '[', 1464, + '_', 2011, + '`', 1691, + 'f', 2014, + 'n', 2026, + 't', 2029, + '{', 1497, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(42); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2050); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 42: + case 43: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ':', 1713, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1989, - 'f', 2015, - 'n', 2043, - 'o', 1990, - 't', 2030, - '{', 1498, - '|', 1452, - '}', 1499, - '\t', 1449, - ' ', 1449, - 'I', 2051, - 'i', 2051, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 1999, + '-', 1487, + '.', 1998, + '0', 1623, + ':', 1712, + ';', 1450, + 'N', 2046, + '[', 1464, + '_', 2011, + '`', 1691, + 'e', 1988, + 'f', 2014, + 'n', 2042, + 'o', 1989, + 't', 2029, + '{', 1497, + '|', 1451, + '}', 1498, + '\t', 1448, + ' ', 1448, + 'I', 2050, + 'i', 2050, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(2070); + lookahead != ']') ADVANCE(2069); END_STATE(); - case 43: + case 44: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1993, - 'f', 2015, - 'n', 2043, - 'o', 1994, - 't', 2030, - '{', 1498, - '\t', 1450, - ' ', 1450, - 'I', 2051, - 'i', 2051, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 1999, + '-', 1487, + '.', 1998, + '0', 1623, + ';', 1450, + 'N', 2046, + '[', 1464, + '_', 2011, + '`', 1691, + 'e', 1992, + 'f', 2014, + 'n', 2042, + 'o', 1993, + 't', 2029, + '{', 1497, + '\t', 1449, + ' ', 1449, + 'I', 2050, + 'i', 2050, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 44: + case 45: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2082, - ',', 1469, - '-', 2081, - '.', 2083, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 2081, + ',', 1468, + '-', 2080, + '.', 2082, + '0', 1624, + 'N', 2099, + '[', 1464, + ']', 1465, + '_', 2086, + '`', 1691, + 'f', 2089, + 'n', 2098, + 't', 2095, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(44); + lookahead == ' ') SKIP(45); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == 'i') ADVANCE(2105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2127); END_STATE(); - case 45: + case 46: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2139, - '-', 2138, - '.', 2137, - '0', 1627, - 'N', 2154, - '[', 1465, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, - '{', 1498, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 2138, + '-', 2137, + '.', 2136, + '0', 1626, + 'N', 2153, + '[', 1464, + '_', 2140, + '`', 1691, + 'f', 2143, + 'n', 2152, + 't', 2149, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(45); + lookahead == ' ') SKIP(46); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2160); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2174); + lookahead == 'i') ADVANCE(2159); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2173); END_STATE(); - case 46: + case 47: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, + '"', 1684, + '#', 2187, + '$', 1469, + '\'', 1687, + '(', 1466, + '+', 1999, '-', 298, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 1501, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '}', 1499, + '.', 1997, + '0', 1623, + 'N', 2046, + '[', 1464, + '_', 1500, + '`', 1691, + 'f', 2014, + 'n', 2042, + 't', 2029, + '{', 1497, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(46); + lookahead == ' ') SKIP(47); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2050); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 47: + case 48: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2082, - ',', 1469, - '-', 2081, - '.', 2080, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, + '"', 1684, + '#', 2187, + '$', 1469, + '\'', 1687, + '(', 1466, + '+', 2081, + ',', 1468, + '-', 2080, + '.', 2079, + '0', 1624, + 'N', 2099, + '[', 1464, + ']', 1465, + '_', 2086, + '`', 1691, + 'f', 2089, + 'n', 2098, + 't', 2095, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(47); + lookahead == ' ') SKIP(48); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == 'i') ADVANCE(2105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2127); END_STATE(); - case 48: + case 49: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '-', 1486, - '`', 1692, - 'f', 1515, - 'n', 1519, - 't', 1520, - '{', 1498, + '"', 1684, + '#', 2187, + '$', 1469, + '\'', 1687, + '(', 1466, + '-', 1485, + '`', 1691, + 'f', 1514, + 'n', 1518, + 't', 1519, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(48); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + lookahead == ' ') SKIP(49); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); - case 49: + case 50: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 2139, - '-', 2138, - '.', 2137, - '>', 1479, - 'N', 2154, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 2138, + '-', 2137, + '.', 2136, + '>', 1478, + 'N', 2153, + '_', 2140, + '`', 1691, + 'f', 2143, + 'n', 2152, + 't', 2149, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(49); + lookahead == ' ') SKIP(50); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2174); + lookahead == 'i') ADVANCE(2159); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2173); END_STATE(); - case 50: + case 51: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 1492, - '.', 849, - '0', 864, - ':', 1713, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 944, - 't', 959, - '{', 1498, + '"', 1684, + '#', 2190, + '$', 1471, + '\'', 1687, + '(', 1466, + '+', 847, + '-', 1491, + '.', 848, + '0', 863, + ':', 1712, + 'N', 1019, + '[', 1464, + '_', 865, + '`', 1691, + 'f', 873, + 'n', 943, + 't', 958, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); + lookahead == ' ') SKIP(40); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(869); + lookahead == 'i') ADVANCE(1024); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(868); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); - END_STATE(); - case 51: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '+', 1963, - ',', 1469, - '-', 1489, - '.', 1601, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(73); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); END_STATE(); case 52: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '+', 1963, - ',', 1469, - '-', 1489, - '.', 1964, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '+', 1960, + ',', 1468, + '-', 1488, + '.', 1599, + ':', 1462, + '=', 672, + ']', 1465, + '_', 1344, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(74); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 53: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1599, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '+', 1960, + ',', 1468, + '-', 1488, + '.', 1961, + ':', 1462, + '=', 672, + ']', 1465, + '_', 1344, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || - lookahead == '+' || lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 54: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1599, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1600, + ':', 1462, + '=', 672, + 'E', 1334, + 'G', 1342, + 'K', 1342, + 'M', 1342, + 'P', 1342, + 'T', 1342, + ']', 1465, + 'd', 1347, + 'e', 1333, + 'g', 1341, + 'h', 1365, + 'k', 1341, + 'm', 1343, + 'n', 1367, + 'p', 1341, + 's', 1352, + 't', 1341, + 'u', 1367, + 'w', 1353, + '|', 1451, + 0xb5, 1367, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == ' ') SKIP(76); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12598,49 +12765,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 55: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - '_', 1345, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1600, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == ' ') SKIP(76); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1335); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12648,49 +12795,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 56: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1964, + ':', 1462, + '=', 672, + 'E', 1334, + 'G', 1342, + 'K', 1342, + 'M', 1342, + 'P', 1342, + 'T', 1342, + ']', 1465, + '_', 1344, + 'd', 1347, + 'e', 1333, + 'g', 1341, + 'h', 1365, + 'k', 1341, + 'm', 1343, + 'n', 1367, + 'p', 1341, + 's', 1352, + 't', 1341, + 'u', 1367, + 'w', 1353, + '|', 1451, + 0xb5, 1367, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(76); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1656); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12698,48 +12845,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 57: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1343, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1342, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1964, + ':', 1462, + '=', 672, + 'E', 1334, + 'G', 1342, + 'K', 1342, + 'M', 1342, + 'P', 1342, + 'T', 1342, + ']', 1465, + 'd', 1347, + 'e', 1333, + 'g', 1341, + 'h', 1365, + 'k', 1341, + 'm', 1343, + 'n', 1367, + 'p', 1341, + 's', 1352, + 't', 1341, + 'u', 1367, + 'w', 1353, + '|', 1451, + 0xb5, 1367, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(76); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1656); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12747,30 +12895,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 58: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1964, + ':', 1462, + '=', 672, + 'E', 1342, + 'G', 1342, + 'K', 1342, + 'M', 1342, + 'P', 1342, + 'T', 1342, + ']', 1465, + 'd', 1347, + 'e', 1341, + 'g', 1341, + 'h', 1365, + 'k', 1341, + 'm', 1343, + 'n', 1367, + 'p', 1341, + 's', 1352, + 't', 1341, + 'u', 1367, + 'w', 1353, + '|', 1451, + 0xb5, 1367, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == ' ') SKIP(76); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12778,30 +12944,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 59: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1964, + ':', 1462, + '=', 672, + ']', 1465, + '_', 1344, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1335); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12809,27 +12975,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 60: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1964, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(76); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1335); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12837,29 +13006,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 61: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1600, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1964, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == ' ') SKIP(76); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12867,30 +13034,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 62: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1598, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1335); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12898,30 +13064,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 63: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1962, + ':', 1462, + '=', 672, + ']', 1465, + '_', 1344, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1335); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12929,27 +13095,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 64: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1962, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(76); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1335); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12957,1238 +13126,1231 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 65: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1962, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(76); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); case 66: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1603, + ';', 1450, + '_', 1812, + '\t', 1449, + ' ', 1449, + '+', 1790, + '-', 1790, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(75); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); case 67: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - '=', 1796, - '_', 1813, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1603, + '=', 1795, + '_', 1812, + 'i', 1844, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(77); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); case 68: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1603, + '=', 1795, + '_', 1812, + '|', 1451, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(78); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); case 69: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1814, + ';', 1450, + '_', 1812, + '\t', 1449, + ' ', 1449, + '+', 1790, + '-', 1790, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(75); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); case 70: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - '=', 1796, - '_', 1813, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1814, + '=', 1795, + '_', 1812, + 'i', 1844, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(77); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); case 71: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 312, - ':', 1463, - '=', 673, - '?', 1483, - '[', 1665, - ']', 1466, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1814, + '=', 1795, + '_', 1812, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(78); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); case 72: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, + '#', 2187, + '$', 1469, + '(', 1466, + ')', 1467, + ',', 1468, + '-', 1486, '.', 312, - ':', 1463, - '=', 673, - '[', 1465, - ']', 1466, - '|', 1452, + ':', 1462, + '=', 672, + '[', 1464, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 73: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - '+', 314, - ',', 1469, - '-', 1490, - '.', 313, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2187, + '$', 1469, + '(', 1466, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1962, + ':', 1462, + '=', 672, + '[', 1664, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(72); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(1985); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1372); END_STATE(); case 74: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 312, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2187, + '$', 1469, + ')', 1467, + '+', 314, + ',', 1468, + '-', 1489, + '.', 313, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 75: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '.', 337, + '#', 2187, + '$', 1469, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 312, + ':', 1462, + '=', 672, + '?', 1482, + ']', 1465, + '|', 1451, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(76); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); + END_STATE(); + case 76: + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '#', 2187, + '$', 1469, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 312, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(76); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); + END_STATE(); + case 77: + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '#', 2187, + '$', 1469, + '.', 336, '=', 323, - 'i', 386, - '|', 1452, + 'i', 381, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(75); + lookahead == ' ') SKIP(77); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); - case 76: - if (lookahead == '\n') ADVANCE(1448); + case 78: + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '.') ADVANCE(336); if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(78); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); - case 77: + case 79: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1594, + ';', 1450, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + 0xb5, 1890, + '\t', 1449, + ' ', 1449, + 'B', 1652, + 'b', 1652, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); - case 78: + case 80: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1595, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); - END_STATE(); - case 79: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); - END_STATE(); - case 80: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1594, + ';', 1450, + '\t', 1449, + ' ', 1449, + 'E', 1818, + 'e', 1818, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 81: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1789, + ';', 1450, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '_', 1812, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + 0xb5, 1890, + '\t', 1449, + ' ', 1449, + 'B', 1652, + 'b', 1652, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 82: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2187, + '(', 1560, + '.', 1789, + ';', 1450, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + 0xb5, 1890, + '\t', 1449, + ' ', 1449, + 'B', 1652, + 'b', 1652, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 83: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2187, + '(', 1560, + '.', 1789, + ';', 1450, + 'E', 1809, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1808, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + 0xb5, 1890, + '\t', 1449, + ' ', 1449, + 'B', 1652, + 'b', 1652, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 84: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '\t', 1450, - ' ', 1450, + '#', 2187, + '(', 1560, + '.', 1789, + ';', 1450, + '_', 1812, + '\t', 1449, + ' ', 1449, + 'E', 1818, + 'e', 1818, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 85: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1594, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2187, + '(', 1560, + '.', 1789, + ';', 1450, + '\t', 1449, + ' ', 1449, + 'E', 1818, + 'e', 1818, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 86: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2187, + '(', 1560, + '.', 1789, + ';', 1450, + '\t', 1449, + ' ', 1449, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 87: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2187, + '(', 1560, + '.', 1593, + ';', 1450, + '\t', 1449, + ' ', 1449, + 'E', 1818, + 'e', 1818, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 88: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ';') ADVANCE(1451); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); - END_STATE(); - case 89: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 297, - '.', 1723, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '@', 1481, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '{', 1498, - '}', 1499, + '#', 2187, + '(', 1560, + ';', 1450, + '_', 1812, + '\t', 1449, + ' ', 1449, + 'E', 1818, + 'e', 1818, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(90); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); - case 90: + case 89: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 297, - '.', 1723, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '{', 1498, - '}', 1499, + '#', 2187, + '(', 1560, + ';', 1450, + '\t', 1449, + ' ', 1449, + 'E', 1818, + 'e', 1818, ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + END_STATE(); + case 90: + if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == ';') ADVANCE(1450); if (lookahead == '\t' || - lookahead == ' ') SKIP(90); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') ADVANCE(1449); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 91: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, + '#', 2187, + '(', 1466, + ')', 1467, + ',', 1468, '-', 297, - '.', 310, - ':', 1463, - ';', 1451, - '=', 675, - '>', 1479, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '.', 1722, + ':', 1462, + ';', 1450, + '=', 672, + '>', 1478, + '@', 1480, + '[', 1464, + ']', 1465, + 'c', 1350, + 'f', 1369, + 'i', 1358, + 'o', 1361, + 'v', 1346, + '{', 1497, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(92); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 92: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, + '#', 2187, + '(', 1466, + ')', 1467, + ',', 1468, '-', 297, - ':', 1463, - ';', 1451, - '=', 675, - '>', 1479, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '.', 1722, + ':', 1462, + ';', 1450, + '=', 672, + '>', 1478, + '[', 1464, + ']', 1465, + 'c', 1350, + 'f', 1369, + 'i', 1358, + 'o', 1361, + 'v', 1346, + '{', 1497, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(92); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 93: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - ',', 1469, - ':', 1463, - '=', 673, - ']', 1466, - 'i', 422, + '#', 2187, + '.', 1594, + '=', 1795, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'i', 1844, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(93); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1666); + lookahead == ' ') SKIP(114); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 94: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '.', 1595, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2187, + '.', 1594, + '=', 1795, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + 0xb5, 1890, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 95: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1595, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, - ); + if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1594); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == 'i') ADVANCE(1844); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(114); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1594); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '#', 2187, + '.', 1789, + '=', 1795, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '_', 1812, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'i', 1844, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + 0xb5, 1890, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(114); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 98: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2187, + '.', 1789, + '=', 1795, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '_', 1812, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + 0xb5, 1890, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 99: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2187, + '.', 1789, + '=', 1795, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'i', 1844, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 100: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2187, + '.', 1789, + '=', 1795, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + 0xb5, 1890, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 101: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2187, + '.', 1789, + '=', 1795, + 'E', 1809, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1808, + 'g', 1808, + 'h', 1877, + 'i', 1844, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 102: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2187, + '.', 1789, + '=', 1795, + 'E', 1809, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1808, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + 0xb5, 1890, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 103: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2187, + '.', 1789, + '=', 1795, + '_', 1812, + 'i', 1844, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(114); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 104: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, - ); + if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1789); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '_') ADVANCE(1812); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1789); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == 'i') ADVANCE(1844); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1789); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == 'i') ADVANCE(1844); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(114); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1789); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1789); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(115); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1593); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == 'i') ADVANCE(1844); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(114); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 110: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1593); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 111: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); - if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); - END_STATE(); - case 112: ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - ':', 1713, - ';', 1451, - '=', 1729, + '#', 2187, + ':', 1712, + ';', 1450, + '=', 1728, 'e', 288, 'o', 290, - '|', 1452, - '}', 1499, - '\t', 1449, - ' ', 1449, + '|', 1451, + '}', 1498, + '\t', 1448, + ' ', 1448, ); END_STATE(); + case 112: + if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == ':') ADVANCE(1712); + if (lookahead == '{') ADVANCE(1497); + if (lookahead == '\t' || + lookahead == ' ') SKIP(112); + END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == ';') ADVANCE(1450); + if (lookahead == '=') ADVANCE(1728); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); + lookahead == ' ') ADVANCE(1449); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1446); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ';') ADVANCE(1451); - if (lookahead == '=') ADVANCE(1729); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(323); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + lookahead == ' ') SKIP(114); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2187); if (lookahead == '=') ADVANCE(323); - if (lookahead == 'i') ADVANCE(386); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || lookahead == ' ') SKIP(115); END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '_') ADVANCE(1812); + if (lookahead == 'i') ADVANCE(1844); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(114); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 117: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '_') ADVANCE(1812); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == 'i') ADVANCE(1844); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 119: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == 'i') ADVANCE(1844); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(114); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(115); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == ':') ADVANCE(1712); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 123: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2191); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '{') ADVANCE(1498); - if (lookahead == '\t' || - lookahead == ' ') SKIP(113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); - END_STATE(); - case 124: ADVANCE_MAP( - '\n', 1707, - '\r', 1707, - '!', 1719, - '#', 2188, - '(', 1561, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1722, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1481, - '[', 1465, - ']', 1466, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + '\n', 1706, + '\r', 1706, + '!', 1718, + '#', 2187, + '(', 1560, + '*', 1512, + '+', 1577, + '-', 1494, + '.', 1721, + '/', 1567, + ':', 1712, + ';', 1450, + '<', 1549, + '=', 673, + '>', 1479, + '?', 1716, + '@', 1480, + '[', 1464, + ']', 1465, + 'a', 416, + 'b', 395, + 'e', 284, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, - '\t', 1708, - ' ', 1708, - 0x0b, 1707, - '\f', 1707, - ',', 1707, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, + '\t', 1707, + ' ', 1707, + 0x0b, 1706, + '\f', 1706, + ',', 1706, ); END_STATE(); - case 125: + case 124: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '$', 181, - '\'', 1688, - '.', 1720, - ';', 1716, - '?', 1717, - '`', 1692, - '\t', 125, - ' ', 125, + '!', 1717, + '"', 1684, + '#', 2187, + '$', 180, + '\'', 1687, + '.', 1719, + ';', 1715, + '?', 1716, + '`', 1691, + '\t', 124, + ' ', 124, ); if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); END_STATE(); - case 126: + case 125: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '$', 181, - '\'', 1688, - '.', 1720, - ';', 1716, - '?', 1717, - '`', 1692, - '\t', 125, - ' ', 125, + '!', 1717, + '"', 1684, + '#', 2187, + '$', 180, + '\'', 1687, + '.', 1719, + ';', 1715, + '?', 1716, + '`', 1691, + '\t', 124, + ' ', 124, ); if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); if (lookahead != 0 && @@ -14197,1839 +14359,1854 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1730); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1729); + END_STATE(); + case 126: + ADVANCE_MAP( + '!', 1717, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 299, + '.', 1725, + '?', 1716, + 'I', 808, + 'N', 804, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 127: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, + '!', 1717, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, '-', 299, - '.', 1726, - '?', 1717, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '.', 1725, + 'I', 808, + 'N', 804, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, ); if (lookahead == '\t' || lookahead == ' ') SKIP(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 128: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '!', 1717, + '#', 2187, + ',', 1706, + '.', 1722, + ';', 1715, + '?', 1716, + ']', 1465, + '\t', 1709, + ' ', 1709, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(128); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1710); END_STATE(); case 129: ADVANCE_MAP( - '!', 1718, - '#', 2188, - ',', 1707, - '.', 1723, - ';', 1716, - '?', 1717, - ']', 1466, - '\t', 1710, - ' ', 1710, + '!', 1717, + '#', 2187, + '.', 1721, + ':', 1712, + '>', 1478, + '?', 1716, + ']', 1465, + '}', 1498, + '\t', 1711, + ' ', 1711, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1706); END_STATE(); case 130: ADVANCE_MAP( - '!', 1718, - '#', 2188, + '!', 1717, + '#', 2187, '.', 1722, - ':', 1713, - '>', 1479, - '?', 1717, - 'E', 333, - 'G', 333, - 'K', 333, - 'M', 333, - 'P', 333, - 'T', 333, - ']', 1466, - 'd', 346, - 'e', 332, - 'g', 332, - 'h', 451, - 'k', 332, - 'm', 335, - 'n', 469, - 'p', 332, - 's', 376, - 't', 332, - 'u', 469, - 'w', 408, - '}', 1499, - 0xb5, 469, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + ':', 1462, + '>', 1478, + '?', 1716, + ']', 1465, + '}', 1498, + '\t', 1711, + ' ', 1711, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); END_STATE(); case 131: ADVANCE_MAP( - '!', 1718, - '#', 2188, - '.', 1723, - ':', 1463, + '!', 1792, + '#', 2187, + '$', 1469, + '(', 1560, + '*', 1511, + '+', 1575, + '-', 1492, + '.', 1603, + '/', 1566, + '<', 1549, + '=', 1793, '>', 1479, - '?', 1717, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1865, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (lookahead == '\t' || + lookahead == ' ') SKIP(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); case 132: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1792, + '#', 2187, + '$', 1469, + '(', 1560, + '*', 1511, + '+', 1575, + '-', 1492, + '.', 1814, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1865, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); case 133: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1594, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'B', 1652, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1804, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1878, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + 0xb5, 1890, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 134: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1594, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1815, 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, + 'i', 1862, + 'l', 1850, + 'm', 1873, 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + 'o', 1878, + 's', 1898, + 'x', 1870, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 135: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'B', 1652, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '_', 1812, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1804, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1878, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(146); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 136: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'B', 1652, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1804, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1878, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 137: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'B', 1652, + 'E', 1809, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1807, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1878, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 138: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1808, - 'g', 1809, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'E', 1818, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1815, 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, + 'i', 1862, + 'l', 1850, + 'm', 1873, 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + 'o', 1878, + 's', 1898, + 'x', 1870, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(146); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 139: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1815, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 140: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'a', 1864, + 'b', 1851, + 'e', 1865, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 141: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1593, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1815, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 142: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'E', 1818, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1815, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(146); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 143: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1815, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 144: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'a', 1864, + 'b', 1851, + 'e', 1865, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 145: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 320, + '#', 2187, + '$', 1469, + '*', 1511, + '+', 1576, + '-', 1493, + '.', 336, + '/', 1566, + '<', 1549, + '=', 321, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 420, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 446, + 's', 480, + 'x', 426, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(145); END_STATE(); case 146: ADVANCE_MAP( '!', 320, - '#', 2188, - '$', 1470, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - '<', 1550, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + '<', 1549, '=', 321, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 420, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 446, + 's', 480, + 'x', 426, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); END_STATE(); case 147: ADVANCE_MAP( - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 321, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - END_STATE(); - case 148: - ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1561, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - ';', 1716, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '\t', 151, - ' ', 151, - 'I', 2051, - 'i', 2051, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1560, + '+', 1999, + '-', 308, + '.', 1997, + '0', 1623, + ';', 1715, + 'N', 2046, + '[', 1464, + '_', 2011, + '`', 1691, + 'f', 2014, + 'n', 2042, + 't', 2029, + '{', 1497, + '\t', 150, + ' ', 150, + 'I', 2050, + 'i', 2050, ); if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 149: + case 148: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 1580, - '-', 1491, - '.', 701, - '0', 1628, - ':', 1463, - '<', 1141, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - '\t', 1712, - ' ', 1712, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 1579, + '-', 1490, + '.', 700, + '0', 1627, + ':', 1462, + '<', 1140, + '>', 1478, + '@', 1480, + 'I', 808, + 'N', 804, + ']', 1465, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + '}', 1498, + '\t', 1711, + ' ', 1711, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ',') ADVANCE(1706); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 150: + case 149: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - ':', 1713, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 1999, + '-', 308, + '.', 1997, + '0', 1623, + ':', 1712, + 'N', 2046, + '[', 1464, + '_', 2011, + '`', 1691, + 'f', 2014, + 'n', 2042, + 't', 2029, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(150); + lookahead == ' ') SKIP(149); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2050); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 151: + case 150: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - ';', 1716, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '\t', 151, - ' ', 151, - 'I', 2051, - 'i', 2051, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 1999, + '-', 308, + '.', 1997, + '0', 1623, + ';', 1715, + 'N', 2046, + '[', 1464, + '_', 2011, + '`', 1691, + 'f', 2014, + 'n', 2042, + 't', 2029, + '{', 1497, + '\t', 150, + ' ', 150, + 'I', 2050, + 'i', 2050, ); if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 152: + case 151: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 1999, + '-', 308, + '.', 1997, + '0', 1623, + 'N', 2046, + '[', 1464, + '_', 2011, + '`', 1691, + 'f', 2014, + 'n', 2042, + 't', 2029, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(152); + lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2050); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 153: + case 152: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - ':', 1713, - 'N', 2047, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 1999, + '-', 308, + '.', 1997, + ':', 1712, + 'N', 2046, + '_', 2011, + '`', 1691, + 'f', 2014, + 'n', 2042, + 't', 2029, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(153); + lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2050); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 154: + case 153: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - 'N', 2047, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 1999, + '-', 308, + '.', 1997, + 'N', 2046, + '_', 2011, + '`', 1691, + 'f', 2014, + 'n', 2042, + 't', 2029, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(154); + lookahead == ' ') SKIP(153); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2050); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 155: + case 154: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2082, - '-', 2081, - '.', 2083, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, - '\t', 1712, - ' ', 1712, - 'I', 2106, - 'i', 2106, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 2081, + '-', 2080, + '.', 2082, + '0', 1624, + 'N', 2099, + '[', 1464, + ']', 1465, + '_', 2086, + '`', 1691, + 'f', 2089, + 'n', 2098, + 't', 2095, + '{', 1497, + '\t', 1711, + ' ', 1711, + 'I', 2105, + 'i', 2105, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == ',') ADVANCE(1706); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2127); END_STATE(); - case 156: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1471); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '`') ADVANCE(1692); + case 155: + if (lookahead == '"') ADVANCE(1684); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1470); + if (lookahead == '\'') ADVANCE(1687); + if (lookahead == '(') ADVANCE(1466); + if (lookahead == '`') ADVANCE(1691); if (lookahead == '\t' || - lookahead == ' ') SKIP(156); + lookahead == ' ') SKIP(155); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); - case 157: + case 156: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - ',', 1707, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 1501, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '}', 1499, - '\t', 1709, - ' ', 1709, - 'I', 2051, - 'i', 2051, + '"', 1684, + '#', 2187, + '$', 1469, + '\'', 1687, + '(', 1466, + '+', 1999, + ',', 1706, + '-', 308, + '.', 1997, + '0', 1623, + 'N', 2046, + '[', 1464, + '_', 1500, + '`', 1691, + 'f', 2014, + 'n', 2042, + 't', 2029, + '{', 1497, + '}', 1498, + '\t', 1708, + ' ', 1708, + 'I', 2050, + 'i', 2050, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1706); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 158: + case 157: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '"', 1684, + '#', 2187, + '$', 1469, + '\'', 1687, + '(', 1466, + '+', 1999, + '-', 308, + '.', 1997, + '0', 1623, + 'N', 2046, + '[', 1464, + '_', 2011, + '`', 1691, + 'f', 2014, + 'n', 2042, + 't', 2029, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(158); + lookahead == ' ') SKIP(157); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2050); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 159: + case 158: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2082, - '-', 2081, - '.', 2080, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, - '\t', 1712, - ' ', 1712, - 'I', 2106, - 'i', 2106, + '"', 1684, + '#', 2187, + '$', 1469, + '\'', 1687, + '(', 1466, + '+', 2081, + '-', 2080, + '.', 2079, + '0', 1624, + 'N', 2099, + '[', 1464, + ']', 1465, + '_', 2086, + '`', 1691, + 'f', 2089, + 'n', 2098, + 't', 2095, + '{', 1497, + '\t', 1711, + ' ', 1711, + 'I', 2105, + 'i', 2105, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == ',') ADVANCE(1706); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2127); END_STATE(); - case 160: + case 159: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1561, - '+', 702, - '-', 307, - '.', 718, - ':', 1463, - '>', 1479, - 'I', 809, - 'N', 805, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - '\t', 1712, - ' ', 1712, + '"', 1684, + '#', 2187, + '\'', 1687, + '(', 1560, + '+', 701, + '-', 308, + '.', 717, + ':', 1462, + '>', 1478, + 'I', 808, + 'N', 804, + ']', 1465, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + '}', 1498, + '\t', 1711, + ' ', 1711, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + END_STATE(); + case 160: + ADVANCE_MAP( + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 308, + '.', 717, + ':', 1712, + 'I', 808, + 'N', 804, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 161: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 307, - '.', 718, - ':', 1713, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 299, + '.', 1725, + '?', 1716, + 'I', 808, + 'N', 804, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, ); if (lookahead == '\t' || lookahead == ' ') SKIP(161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 162: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, '-', 299, - '.', 1726, - '?', 1717, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '.', 1725, + 'I', 808, + 'N', 804, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 163: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, '-', 299, - '.', 1726, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '.', 717, + ':', 1712, + 'I', 808, + 'N', 804, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, ); if (lookahead == '\t' || lookahead == ' ') SKIP(163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 164: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, '-', 299, - '.', 718, - ':', 1713, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '.', 717, + '=', 1728, + 'I', 1442, + 'N', 1437, + '_', 1378, + '`', 1691, + 'a', 1402, + 'c', 1379, + 'd', 1386, + 'e', 1407, + 'f', 1380, + 'i', 1377, + 'l', 1393, + 'm', 1382, + 'n', 1433, + 't', 1416, + 'u', 1422, + 'w', 1399, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1378); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1446); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 165: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, '-', 299, - '.', 718, - '=', 1729, - 'I', 1443, - 'N', 1438, - '_', 1379, - '`', 1692, - 'a', 1403, - 'c', 1380, - 'd', 1387, - 'e', 1408, - 'f', 1381, - 'i', 1378, - 'l', 1394, - 'm', 1383, - 'n', 1434, - 't', 1417, - 'u', 1423, - 'w', 1400, + '.', 717, + 'I', 808, + 'N', 804, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1379); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 166: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 718, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); - END_STATE(); - case 167: - ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 1596, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 1781, + '.', 1595, + 'E', 708, + 'G', 713, + 'I', 808, + 'K', 713, + 'M', 713, + 'N', 804, + 'P', 713, + 'T', 713, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 721, + 'e', 707, + 'f', 722, + 'g', 712, + 'h', 773, + 'i', 714, + 'k', 712, + 'l', 738, + 'm', 709, + 'n', 781, + 'p', 712, + 's', 739, + 't', 711, + 'u', 783, + 'w', 749, + 0xb5, 782, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(165); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1652); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 168: + case 167: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 718, - 'I', 809, - 'N', 805, - '[', 1665, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 1781, + '.', 717, + 'I', 808, + 'N', 804, + '[', 1664, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(165); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 169: + case 168: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 1781, + '.', 699, + 'E', 708, + 'G', 713, + 'I', 808, + 'K', 713, + 'M', 713, + 'N', 804, + 'P', 713, + 'T', 713, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 721, + 'e', 707, + 'f', 722, + 'g', 712, + 'h', 773, + 'i', 714, + 'k', 712, + 'l', 738, + 'm', 709, + 'n', 781, + 'p', 712, + 's', 739, + 't', 711, + 'u', 783, + 'w', 749, + 0xb5, 782, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(165); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1652); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 170: + case 169: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 720, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 1781, + '.', 699, + 'E', 708, + 'G', 713, + 'I', 808, + 'K', 713, + 'M', 713, + 'N', 804, + 'P', 713, + 'T', 713, + '_', 718, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 721, + 'e', 707, + 'f', 722, + 'g', 712, + 'h', 773, + 'i', 714, + 'k', 712, + 'l', 738, + 'm', 709, + 'n', 781, + 'p', 712, + 's', 739, + 't', 711, + 'u', 783, + 'w', 749, + 0xb5, 782, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(165); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1652); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == '^') ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 171: + case 170: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 714, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 711, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 1781, + '.', 699, + 'E', 713, + 'G', 713, + 'I', 808, + 'K', 713, + 'M', 713, + 'N', 804, + 'P', 713, + 'T', 713, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 721, + 'e', 710, + 'f', 722, + 'g', 712, + 'h', 773, + 'i', 714, + 'k', 712, + 'l', 738, + 'm', 709, + 'n', 781, + 'p', 712, + 's', 739, + 't', 711, + 'u', 783, + 'w', 749, + 0xb5, 782, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(165); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1652); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 172: + case 171: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 2139, - '-', 2138, - '.', 2137, - '>', 1479, - 'N', 2154, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, - '\t', 1712, - ' ', 1712, - 'I', 2160, - 'i', 2160, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 2138, + '-', 2137, + '.', 2136, + '>', 1478, + 'N', 2153, + '_', 2140, + '`', 1691, + 'f', 2143, + 'n', 2152, + 't', 2149, + '\t', 1711, + ' ', 1711, + 'I', 2159, + 'i', 2159, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2174); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2173); END_STATE(); - case 173: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '`') ADVANCE(1692); + case 172: + if (lookahead == '"') ADVANCE(1684); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '\'') ADVANCE(1687); + if (lookahead == '`') ADVANCE(1691); if (lookahead == '\t' || - lookahead == ' ') SKIP(173); + lookahead == ' ') SKIP(172); END_STATE(); - case 174: + case 173: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - '0', 865, - ':', 1713, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, - '{', 1498, + '"', 1684, + '#', 2190, + '$', 1471, + '\'', 1687, + '(', 1466, + '+', 847, + '-', 846, + '.', 848, + '0', 864, + ':', 1712, + 'N', 1019, + '[', 1464, + '_', 865, + '`', 1691, + 'f', 873, + 'n', 1009, + 't', 958, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(150); + lookahead == ' ') SKIP(149); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1024); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(871); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); END_STATE(); - case 175: + case 174: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - '0', 865, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, - '{', 1498, + '"', 1684, + '#', 2190, + '$', 1471, + '\'', 1687, + '(', 1466, + '+', 847, + '-', 846, + '.', 848, + '0', 864, + 'N', 1019, + '[', 1464, + '_', 865, + '`', 1691, + 'f', 873, + 'n', 1009, + 't', 958, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(152); + lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1024); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(871); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); END_STATE(); - case 176: + case 175: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - ':', 1713, - 'N', 1020, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, + '"', 1684, + '#', 2190, + '$', 1471, + '\'', 1687, + '(', 1466, + '+', 847, + '-', 846, + '.', 848, + ':', 1712, + 'N', 1019, + '_', 865, + '`', 1691, + 'f', 873, + 'n', 1009, + 't', 958, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(153); + lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1024); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2069); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); END_STATE(); - case 177: + case 176: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - 'N', 1020, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, + '"', 1684, + '#', 2190, + '$', 1471, + '\'', 1687, + '(', 1466, + '+', 847, + '-', 846, + '.', 848, + 'N', 1019, + '_', 865, + '`', 1691, + 'f', 873, + 'n', 1009, + 't', 958, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(154); + lookahead == ' ') SKIP(153); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1024); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2069); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); END_STATE(); - case 178: + case 177: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '\'', 1688, - '+', 848, - '-', 847, - '.', 866, - ':', 1713, - 'I', 1025, - 'N', 1020, - '_', 866, - '`', 1692, - 'a', 932, - 'c', 879, - 'd', 895, - 'e', 935, - 'f', 873, - 'i', 861, - 'l', 905, - 'm', 881, - 'n', 1010, - 't', 964, - 'u', 980, - 'w', 916, + '"', 1684, + '#', 2190, + '\'', 1687, + '+', 847, + '-', 846, + '.', 865, + ':', 1712, + 'I', 1024, + 'N', 1019, + '_', 865, + '`', 1691, + 'a', 931, + 'c', 878, + 'd', 894, + 'e', 934, + 'f', 872, + 'i', 860, + 'l', 904, + 'm', 880, + 'n', 1009, + 't', 963, + 'u', 979, + 'w', 915, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(161); + lookahead == ' ') SKIP(160); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '^') ADVANCE(1045); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); - case 179: + case 178: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '\'', 1688, - '+', 848, - '-', 840, - '.', 866, - ':', 1713, - 'I', 1025, - 'N', 1020, - '_', 866, - '`', 1692, - 'a', 932, - 'c', 879, - 'd', 895, - 'e', 935, - 'f', 873, - 'i', 861, - 'l', 905, - 'm', 881, - 'n', 1010, - 't', 964, - 'u', 980, - 'w', 916, + '"', 1684, + '#', 2190, + '\'', 1687, + '+', 847, + '-', 839, + '.', 865, + ':', 1712, + 'I', 1024, + 'N', 1019, + '_', 865, + '`', 1691, + 'a', 931, + 'c', 878, + 'd', 894, + 'e', 934, + 'f', 872, + 'i', 860, + 'l', 904, + 'm', 880, + 'n', 1009, + 't', 963, + 'u', 979, + 'w', 915, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(164); + lookahead == ' ') SKIP(163); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '^') ADVANCE(1045); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); - case 180: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(1687); - if (lookahead == '\\') ADVANCE(512); + case 179: + if (lookahead == '"') ADVANCE(1684); + if (lookahead == '#') ADVANCE(1686); + if (lookahead == '\\') ADVANCE(506); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1686); - if (lookahead != 0) ADVANCE(1687); + lookahead == ' ') ADVANCE(1685); + if (lookahead != 0) ADVANCE(1686); + END_STATE(); + case 180: + if (lookahead == '"') ADVANCE(1701); + if (lookahead == '\'') ADVANCE(1700); END_STATE(); case 181: if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + if (lookahead == '#') ADVANCE(1697); + if (lookahead == '(') ADVANCE(1466); + if (lookahead == '\\') ADVANCE(501); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1696); + if (lookahead != 0) ADVANCE(1697); END_STATE(); case 182: - if (lookahead == '"') ADVANCE(1703); - if (lookahead == '#') ADVANCE(1698); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '\\') ADVANCE(507); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(1603); + if (lookahead == '_') ADVANCE(1812); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1697); - if (lookahead != 0) ADVANCE(1698); + lookahead == ' ') SKIP(191); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); case 183: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1604); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); - if (lookahead == '\t' || - lookahead == ' ') SKIP(192); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1601, + ']', 1465, + '_', 1974, + '}', 1498, + '\t', 1711, + ' ', 1711, + '+', 1960, + '-', 1960, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1985); END_STATE(); case 184: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1603, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1971, + '_', 1974, + '}', 1498, + '\t', 1711, + ' ', 1711, + '+', 1960, + '-', 1960, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1985); + END_STATE(); + case 185: + ADVANCE_MAP( + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1944, + ']', 1465, + '_', 1943, + '\t', 1711, + ' ', 1711, + '+', 1937, + '-', 1937, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16037,42 +16214,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); - END_STATE(); - case 185: - ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1972, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1963, - '-', 1963, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); case 186: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1945, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1935, + ']', 1465, + '_', 1943, + '\t', 1711, + ' ', 1711, + '+', 1937, + '-', 1937, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16080,24 +16239,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); case 187: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1936, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1602, + ']', 1465, + '_', 1943, + '\t', 1711, + ' ', 1711, + '+', 1937, + '-', 1937, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16105,136 +16264,118 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); case 188: - ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1602, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1963, - '-', 1963, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1986); - END_STATE(); - case 189: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(1814); + if (lookahead == '_') ADVANCE(1812); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); - case 190: + case 189: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1598, - '[', 1665, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1597, + '[', 1664, + ']', 1465, + '_', 1943, + '}', 1498, + '\t', 1711, + ' ', 1711, + '+', 1937, + '-', 1937, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + END_STATE(); + case 190: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '.') ADVANCE(336); + if (lookahead == ']') ADVANCE(1465); + if (lookahead == '\t' || + lookahead == ' ') SKIP(190); + if (lookahead == '+' || + lookahead == '-') ADVANCE(314); END_STATE(); case 191: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == ']') ADVANCE(1466); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '.') ADVANCE(336); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); case 192: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '.') ADVANCE(336); if (lookahead == '\t' || lookahead == ' ') SKIP(192); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); case 193: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == ':') ADVANCE(1712); if (lookahead == '\t' || lookahead == ' ') SKIP(193); - if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 194: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '\t' || - lookahead == ' ') SKIP(194); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); - END_STATE(); - case 195: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1594, + 'E', 1939, + 'G', 1941, + 'K', 1941, + 'M', 1941, + 'P', 1941, + 'T', 1941, + ']', 1465, + 'd', 1948, + 'e', 1938, + 'g', 1940, + 'h', 1954, + 'k', 1940, + 'm', 1942, + 'n', 1955, + 'p', 1940, + 's', 1951, + 't', 1940, + 'u', 1955, + 'w', 1952, + '}', 1498, + 0xb5, 1955, + '\t', 1711, + ' ', 1711, + 'B', 1652, + 'b', 1652, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16242,40 +16383,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 196: + case 195: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1594, + 'E', 1939, + 'G', 1941, + 'K', 1941, + 'M', 1941, + 'P', 1941, + 'T', 1941, + ']', 1465, + 'd', 1948, + 'e', 1938, + 'g', 1940, + 'h', 1954, + 'k', 1940, + 'm', 1942, + 'n', 1955, + 'p', 1940, + 's', 1951, + 't', 1940, + 'u', 1955, + 'w', 1952, + 0xb5, 1955, + '\t', 1711, + ' ', 1711, + 'B', 1652, + 'b', 1652, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16283,56 +16424,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 197: + case 196: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1594, + 'E', 1966, + 'G', 1968, + 'K', 1968, + 'M', 1968, + 'P', 1968, + 'T', 1968, + 'd', 1975, + 'e', 1965, + 'g', 1967, + 'h', 1981, + 'k', 1967, + 'm', 1969, + 'n', 1982, + 'p', 1967, + 's', 1978, + 't', 1967, + 'u', 1982, + 'w', 1979, + '}', 1498, + 0xb5, 1982, + '\t', 1711, + ' ', 1711, + 'B', 1652, + 'b', 1652, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); - case 198: + case 197: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2187, + '(', 1560, + '.', 1594, + ']', 1465, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16340,21 +16481,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 199: + case 198: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2187, + '(', 1560, + '.', 1594, + ']', 1465, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16362,37 +16503,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 200: + case 199: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2187, + '(', 1560, + '.', 1594, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); - case 201: + case 200: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1594, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2187, + '(', 1560, + '.', 1593, + ']', 1465, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16400,58 +16541,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 202: + case 201: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1594, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2187, + '(', 1560, + '.', 1593, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); - case 203: + case 202: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - '_', 1944, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1934, + 'E', 1939, + 'G', 1941, + 'K', 1941, + 'M', 1941, + 'P', 1941, + 'T', 1941, + ']', 1465, + '_', 1943, + 'd', 1948, + 'e', 1938, + 'g', 1940, + 'h', 1954, + 'k', 1940, + 'm', 1942, + 'n', 1955, + 'p', 1940, + 's', 1951, + 't', 1940, + 'u', 1955, + 'w', 1952, + '}', 1498, + 0xb5, 1955, + '\t', 1711, + ' ', 1711, + 'B', 1652, + 'b', 1652, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16460,42 +16601,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 204: + case 203: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - '_', 1944, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1934, + 'E', 1939, + 'G', 1941, + 'K', 1941, + 'M', 1941, + 'P', 1941, + 'T', 1941, + ']', 1465, + '_', 1943, + 'd', 1948, + 'e', 1938, + 'g', 1940, + 'h', 1954, + 'k', 1940, + 'm', 1942, + 'n', 1955, + 'p', 1940, + 's', 1951, + 't', 1940, + 'u', 1955, + 'w', 1952, + 0xb5, 1955, + '\t', 1711, + ' ', 1711, + 'B', 1652, + 'b', 1652, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16504,41 +16645,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 205: + case 204: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1934, + 'E', 1939, + 'G', 1941, + 'K', 1941, + 'M', 1941, + 'P', 1941, + 'T', 1941, + ']', 1465, + 'd', 1948, + 'e', 1938, + 'g', 1940, + 'h', 1954, + 'k', 1940, + 'm', 1942, + 'n', 1955, + 'p', 1940, + 's', 1951, + 't', 1940, + 'u', 1955, + 'w', 1952, + '}', 1498, + 0xb5, 1955, + '\t', 1711, + ' ', 1711, + 'B', 1652, + 'b', 1652, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16546,40 +16687,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 206: + case 205: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1934, + 'E', 1939, + 'G', 1941, + 'K', 1941, + 'M', 1941, + 'P', 1941, + 'T', 1941, + ']', 1465, + 'd', 1948, + 'e', 1938, + 'g', 1940, + 'h', 1954, + 'k', 1940, + 'm', 1942, + 'n', 1955, + 'p', 1940, + 's', 1951, + 't', 1940, + 'u', 1955, + 'w', 1952, + 0xb5, 1955, + '\t', 1711, + ' ', 1711, + 'B', 1652, + 'b', 1652, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16587,41 +16728,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 207: + case 206: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1942, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1941, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1934, + 'E', 1941, + 'G', 1941, + 'K', 1941, + 'M', 1941, + 'P', 1941, + 'T', 1941, + ']', 1465, + 'd', 1948, + 'e', 1940, + 'g', 1940, + 'h', 1954, + 'k', 1940, + 'm', 1942, + 'n', 1955, + 'p', 1940, + 's', 1951, + 't', 1940, + 'u', 1955, + 'w', 1952, + '}', 1498, + 0xb5, 1955, + '\t', 1711, + ' ', 1711, + 'B', 1652, + 'b', 1652, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16629,40 +16770,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 208: + case 207: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1942, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1941, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1934, + 'E', 1941, + 'G', 1941, + 'K', 1941, + 'M', 1941, + 'P', 1941, + 'T', 1941, + ']', 1465, + 'd', 1948, + 'e', 1940, + 'g', 1940, + 'h', 1954, + 'k', 1940, + 'm', 1942, + 'n', 1955, + 'p', 1940, + 's', 1951, + 't', 1940, + 'u', 1955, + 'w', 1952, + 0xb5, 1955, + '\t', 1711, + ' ', 1711, + 'B', 1652, + 'b', 1652, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16670,24 +16811,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 209: + case 208: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2187, + '(', 1560, + '.', 1934, + ']', 1465, + '_', 1943, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16696,23 +16837,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 210: + case 209: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2187, + '(', 1560, + '.', 1934, + ']', 1465, + '_', 1943, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16721,22 +16862,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 211: + case 210: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2187, + '(', 1560, + '.', 1934, + ']', 1465, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16744,18 +16885,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 212: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1935); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '}') ADVANCE(1499); + case 211: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(1934); + if (lookahead == ']') ADVANCE(1465); + if (lookahead == '}') ADVANCE(1498); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1711); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16763,21 +16904,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 213: + case 212: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2187, + '(', 1560, + '.', 1934, + ']', 1465, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16785,17 +16926,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 214: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1935); - if (lookahead == ']') ADVANCE(1466); + case 213: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(1934); + if (lookahead == ']') ADVANCE(1465); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1711); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16803,23 +16944,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 215: + case 214: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1937, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2187, + '(', 1560, + '.', 1936, + ']', 1465, + '_', 1943, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16828,21 +16969,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 216: + case 215: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1937, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2187, + '(', 1560, + '.', 1936, + ']', 1465, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16850,17 +16991,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 217: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1937); - if (lookahead == ']') ADVANCE(1466); + case 216: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(1936); + if (lookahead == ']') ADVANCE(1465); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1711); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16868,21 +17009,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 218: + case 217: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1597, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2187, + '(', 1560, + '.', 1596, + ']', 1465, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16890,169 +17031,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + END_STATE(); + case 218: + ADVANCE_MAP( + '#', 2187, + '(', 1560, + '.', 1959, + 'E', 1966, + 'G', 1968, + 'K', 1968, + 'M', 1968, + 'P', 1968, + 'T', 1968, + '_', 1974, + 'd', 1975, + 'e', 1965, + 'g', 1967, + 'h', 1981, + 'k', 1967, + 'm', 1969, + 'n', 1982, + 'p', 1967, + 's', 1978, + 't', 1967, + 'u', 1982, + 'w', 1979, + '}', 1498, + 0xb5, 1982, + '\t', 1711, + ' ', 1711, + 'B', 1652, + 'b', 1652, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 219: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - '_', 1975, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1959, + 'E', 1966, + 'G', 1968, + 'K', 1968, + 'M', 1968, + 'P', 1968, + 'T', 1968, + 'd', 1975, + 'e', 1965, + 'g', 1967, + 'h', 1981, + 'k', 1967, + 'm', 1969, + 'n', 1982, + 'p', 1967, + 's', 1978, + 't', 1967, + 'u', 1982, + 'w', 1979, + '}', 1498, + 0xb5, 1982, + '\t', 1711, + ' ', 1711, + 'B', 1652, + 'b', 1652, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 220: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1959, + 'E', 1968, + 'G', 1968, + 'K', 1968, + 'M', 1968, + 'P', 1968, + 'T', 1968, + 'd', 1975, + 'e', 1967, + 'g', 1967, + 'h', 1981, + 'k', 1967, + 'm', 1969, + 'n', 1982, + 'p', 1967, + 's', 1978, + 't', 1967, + 'u', 1982, + 'w', 1979, + '}', 1498, + 0xb5, 1982, + '\t', 1711, + ' ', 1711, + 'B', 1652, + 'b', 1652, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 221: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1968, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + '.', 1959, + '_', 1974, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 222: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2187, + '(', 1560, + '.', 1959, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 223: - ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); - END_STATE(); - case 224: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == '}') ADVANCE(1499); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(1959); + if (lookahead == '}') ADVANCE(1498); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1711); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); - case 225: + case 224: ADVANCE_MAP( - '#', 2188, - '(', 1561, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2187, + '(', 1560, + ']', 1465, + '_', 1943, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17061,17 +17202,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 226: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '}') ADVANCE(1499); + case 225: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == ']') ADVANCE(1465); + if (lookahead == '}') ADVANCE(1498); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1711); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17079,18 +17220,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 227: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ']') ADVANCE(1466); + case 226: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == ']') ADVANCE(1465); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1711); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1947); + lookahead == 'e') ADVANCE(1946); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17098,668 +17239,678 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 228: + case 227: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2187, + '(', 1560, + '_', 1974, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); - case 229: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '{') ADVANCE(1498); + case 228: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); - case 230: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '}') ADVANCE(1499); + case 229: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '}') ADVANCE(1498); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1711); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); + lookahead == 'e') ADVANCE(1972); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); - case 231: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '}') ADVANCE(1499); + case 230: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '}') ADVANCE(1498); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1711); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + END_STATE(); + case 231: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '\t' || + lookahead == ' ') SKIP(272); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 232: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 233: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); + ADVANCE_MAP( + '#', 2187, + '(', 1466, + '-', 1782, + '.', 1594, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '[', 1464, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + 0xb5, 1890, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(239); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 234: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1595, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2187, + '(', 1466, + '-', 1782, + '.', 1789, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '[', 1464, + '_', 1812, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(239); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 235: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2187, + '(', 1466, + '-', 1782, + '.', 1789, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '[', 1464, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(239); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 236: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2187, + '(', 1466, + '-', 1782, + '.', 1789, + 'E', 1809, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '[', 1464, + 'd', 1823, + 'e', 1808, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(239); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 237: - ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - ); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1466); + if (lookahead == '-') ADVANCE(1782); + if (lookahead == '[') ADVANCE(1464); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(239); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 238: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(1783); - if (lookahead == '[') ADVANCE(1465); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1466); + if (lookahead == '-') ADVANCE(297); + if (lookahead == '=') ADVANCE(1728); + if (lookahead == '[') ADVANCE(1464); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(239); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1446); END_STATE(); case 239: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1466); if (lookahead == '-') ADVANCE(297); - if (lookahead == '=') ADVANCE(1729); - if (lookahead == '[') ADVANCE(1465); + if (lookahead == '[') ADVANCE(1464); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + lookahead == ' ') SKIP(239); END_STATE(); case 240: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(297); - if (lookahead == '[') ADVANCE(1465); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == ',') ADVANCE(1468); + if (lookahead == ']') ADVANCE(1465); if (lookahead == '\t' || lookahead == ' ') SKIP(240); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1665); END_STATE(); case 241: ADVANCE_MAP( - '#', 2188, - '.', 1595, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2187, + '.', 1594, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '{', 1497, + 0xb5, 1890, ); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 242: ADVANCE_MAP( - '#', 2188, - '.', 1595, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2187, + '.', 1594, + 'E', 1966, + 'G', 1968, + 'K', 1968, + 'M', 1968, + 'P', 1968, + 'T', 1968, + 'd', 1975, + 'e', 1965, + 'g', 1967, + 'h', 1981, + 'k', 1967, + 'm', 1969, + 'n', 1982, + 'p', 1967, + 's', 1978, + 't', 1967, + 'u', 1982, + 'w', 1979, + 0xb5, 1982, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 243: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1594); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 244: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1594); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1972); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 245: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1720); - if (lookahead == 'i') ADVANCE(1361); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1719); + if (lookahead == 'i') ADVANCE(1360); if (lookahead == '\t' || lookahead == ' ') SKIP(245); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 246: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1604); - if (lookahead == '_') ADVANCE(1813); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1603); + if (lookahead == '_') ADVANCE(1812); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 247: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2187, + '.', 1789, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '_', 1812, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '{', 1497, + 0xb5, 1890, ); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 248: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2187, + '.', 1789, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '{', 1497, + 0xb5, 1890, ); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 249: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2187, + '.', 1789, + 'E', 1809, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1808, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '{', 1497, + 0xb5, 1890, ); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 250: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1789); + if (lookahead == '_') ADVANCE(1812); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 251: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1789); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 252: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1789); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 253: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1593); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 254: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1593); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1972); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 255: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(337); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(336); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); case 256: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1972); - if (lookahead == '_') ADVANCE(1975); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1601); + if (lookahead == '_') ADVANCE(1974); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '-') ADVANCE(1960); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 257: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1602); - if (lookahead == '_') ADVANCE(1975); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1971); + if (lookahead == '_') ADVANCE(1974); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '-') ADVANCE(1960); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 258: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '_') ADVANCE(1813); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1814); + if (lookahead == '_') ADVANCE(1812); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 259: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - '_', 1975, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2187, + '.', 1959, + 'E', 1966, + 'G', 1968, + 'K', 1968, + 'M', 1968, + 'P', 1968, + 'T', 1968, + '_', 1974, + 'd', 1975, + 'e', 1965, + 'g', 1967, + 'h', 1981, + 'k', 1967, + 'm', 1969, + 'n', 1982, + 'p', 1967, + 's', 1978, + 't', 1967, + 'u', 1982, + 'w', 1979, + 0xb5, 1982, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 260: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2187, + '.', 1959, + 'E', 1966, + 'G', 1968, + 'K', 1968, + 'M', 1968, + 'P', 1968, + 'T', 1968, + 'd', 1975, + 'e', 1965, + 'g', 1967, + 'h', 1981, + 'k', 1967, + 'm', 1969, + 'n', 1982, + 'p', 1967, + 's', 1978, + 't', 1967, + 'u', 1982, + 'w', 1979, + 0xb5, 1982, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 261: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1968, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2187, + '.', 1959, + 'E', 1968, + 'G', 1968, + 'K', 1968, + 'M', 1968, + 'P', 1968, + 'T', 1968, + 'd', 1975, + 'e', 1967, + 'g', 1967, + 'h', 1981, + 'k', 1967, + 'm', 1969, + 'n', 1982, + 'p', 1967, + 's', 1978, + 't', 1967, + 'u', 1982, + 'w', 1979, + 0xb5, 1982, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 262: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == '_') ADVANCE(1975); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1959); + if (lookahead == '_') ADVANCE(1974); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 263: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1959); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1972); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 264: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1959); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 265: ADVANCE_MAP( - '#', 2188, - ':', 1713, - 'a', 413, - 'c', 439, - 'd', 374, - 'e', 518, - 'm', 437, - 'u', 475, + '#', 2187, + ':', 1712, + 'a', 408, + 'c', 434, + 'd', 370, + 'e', 512, + 'm', 432, + 'u', 469, ); if (lookahead == '\t' || lookahead == ' ') SKIP(265); END_STATE(); case 266: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ':') ADVANCE(1713); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == ':') ADVANCE(1712); if (lookahead == '\t' || lookahead == ' ') SKIP(266); END_STATE(); case 267: ADVANCE_MAP( - '#', 2188, - '>', 1479, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '\t', 1712, - ' ', 1712, + '#', 2187, + '>', 1478, + '[', 1464, + ']', 1465, + 'c', 1350, + 'f', 1369, + 'i', 1358, + 'o', 1361, + 'v', 1346, + '\t', 1711, + ' ', 1711, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -17767,75 +17918,75 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1373); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1372); END_STATE(); case 268: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '_') ADVANCE(1812); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 269: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '_') ADVANCE(1975); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '_') ADVANCE(1974); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 270: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || lookahead == ' ') SKIP(270); END_STATE(); case 271: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 272: - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2187); if (lookahead == '\t' || lookahead == ' ') SKIP(272); END_STATE(); case 273: - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2187); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1972); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 274: - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2187); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1461); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1460); END_STATE(); case 275: - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2187); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1497); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1496); END_STATE(); case 276: - if (lookahead == '#') ADVANCE(2191); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == ':') ADVANCE(1713); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1472); + if (lookahead == ':') ADVANCE(1712); if (lookahead == '\t' || - lookahead == ' ') SKIP(194); + lookahead == ' ') SKIP(193); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -17844,300 +17995,296 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1030); + lookahead == '^') ADVANCE(1045); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1029); END_STATE(); case 277: ADVANCE_MAP( - '#', 2191, - ':', 1713, - 'a', 932, - 'c', 951, - 'd', 895, - 'e', 1019, - 'm', 952, - 'u', 980, + '#', 2190, + ':', 1712, + 'a', 931, + 'c', 950, + 'd', 894, + 'e', 1018, + 'm', 951, + 'u', 979, ); if (lookahead == '\t' || lookahead == ' ') SKIP(265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 278: - if (lookahead == '#') ADVANCE(1700); - if (lookahead == '\'') ADVANCE(1691); - if (lookahead == '(') ADVANCE(1467); + if (lookahead == '#') ADVANCE(1699); + if (lookahead == '\'') ADVANCE(1690); + if (lookahead == '(') ADVANCE(1466); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); - if (lookahead != 0) ADVANCE(1700); + lookahead == ' ') ADVANCE(1698); + if (lookahead != 0) ADVANCE(1699); END_STATE(); case 279: - if (lookahead == '+') ADVANCE(378); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(488); + if (lookahead == '+') ADVANCE(373); + if (lookahead == '>') ADVANCE(1738); + if (lookahead == 'r') ADVANCE(1530); + if (lookahead == 'u') ADVANCE(482); END_STATE(); case 280: - if (lookahead == '+') ADVANCE(339); - if (lookahead == '-') ADVANCE(341); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == '_') ADVANCE(341); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '+') ADVANCE(374); + if (lookahead == '>') ADVANCE(1734); END_STATE(); case 281: - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(1735); - END_STATE(); - case 282: ADVANCE_MAP( - '+', 430, - '>', 1737, - 'I', 534, - 'i', 534, - 'n', 364, - 'r', 453, - 'B', 1653, - 'b', 1653, + '+', 425, + '>', 1736, + 'I', 528, + 'i', 528, + 'n', 360, + 'r', 447, + 'x', 440, + 'B', 1652, + 'b', 1652, ); END_STATE(); + case 282: + if (lookahead == '+') ADVANCE(425); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'l') ADVANCE(467); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'r') ADVANCE(447); + END_STATE(); case 283: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); + if (lookahead == '+') ADVANCE(425); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'l') ADVANCE(467); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 'x') ADVANCE(440); END_STATE(); case 284: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); - if (lookahead == 'x') ADVANCE(445); + if (lookahead == '+') ADVANCE(425); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'r') ADVANCE(447); END_STATE(); case 285: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); + if (lookahead == '+') ADVANCE(425); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 'x') ADVANCE(440); END_STATE(); case 286: - if (lookahead == '+') ADVANCE(429); - if (lookahead == '>') ADVANCE(1733); + if (lookahead == '+') ADVANCE(424); + if (lookahead == '>') ADVANCE(1732); END_STATE(); case 287: - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(458); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(517); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'r') ADVANCE(452); END_STATE(); case 288: - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(458); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(517); + if (lookahead == 'r') ADVANCE(452); END_STATE(); case 289: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(493); + if (lookahead == '+') ADVANCE(375); + if (lookahead == '>') ADVANCE(518); + if (lookahead == 'r') ADVANCE(1530); + if (lookahead == 'u') ADVANCE(487); END_STATE(); case 290: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(493); + if (lookahead == '+') ADVANCE(375); + if (lookahead == '>') ADVANCE(518); + if (lookahead == 'u') ADVANCE(487); END_STATE(); case 291: - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '+') ADVANCE(438); + if (lookahead == '>') ADVANCE(520); END_STATE(); case 292: - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '+') ADVANCE(379); + if (lookahead == '>') ADVANCE(522); END_STATE(); case 293: - if (lookahead == '-') ADVANCE(355); + if (lookahead == '-') ADVANCE(351); END_STATE(); case 294: - if (lookahead == '-') ADVANCE(385); + if (lookahead == '-') ADVANCE(380); END_STATE(); case 295: - if (lookahead == '-') ADVANCE(385); + if (lookahead == '-') ADVANCE(380); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); + lookahead == ' ') ADVANCE(1559); END_STATE(); case 296: - if (lookahead == '-') ADVANCE(513); + if (lookahead == '-') ADVANCE(507); END_STATE(); case 297: - if (lookahead == '-') ADVANCE(1484); + if (lookahead == '-') ADVANCE(1483); END_STATE(); case 298: - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '>') ADVANCE(1464); - if (lookahead == '_') ADVANCE(308); + if (lookahead == '-') ADVANCE(1483); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '>') ADVANCE(1463); + if (lookahead == '_') ADVANCE(309); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + lookahead == 'i') ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 299: - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); + if (lookahead == '-') ADVANCE(1483); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(309); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + lookahead == 'i') ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 300: - if (lookahead == '-') ADVANCE(433); + if (lookahead == '-') ADVANCE(1483); + if (lookahead == '>') ADVANCE(1463); END_STATE(); case 301: - if (lookahead == '-') ADVANCE(490); + if (lookahead == '-') ADVANCE(428); END_STATE(); case 302: - if (lookahead == '-') ADVANCE(560); + if (lookahead == '-') ADVANCE(484); END_STATE(); case 303: - if (lookahead == '-') ADVANCE(514); + if (lookahead == '-') ADVANCE(554); END_STATE(); case 304: - if (lookahead == '-') ADVANCE(515); + if (lookahead == '-') ADVANCE(508); END_STATE(); case 305: - if (lookahead == '-') ADVANCE(450); + if (lookahead == '-') ADVANCE(509); END_STATE(); case 306: - if (lookahead == '-') ADVANCE(516); + if (lookahead == '-') ADVANCE(445); END_STATE(); case 307: - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '-') ADVANCE(510); END_STATE(); case 308: - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(309); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 309: - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(309); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 310: - if (lookahead == '.') ADVANCE(1593); + if (lookahead == '.') ADVANCE(1506); + if (lookahead == '_') ADVANCE(339); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); END_STATE(); case 311: - if (lookahead == '.') ADVANCE(1482); + if (lookahead == '.') ADVANCE(1481); END_STATE(); case 312: if (lookahead == '.') ADVANCE(311); END_STATE(); case 313: if (lookahead == '.') ADVANCE(311); - if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '_') ADVANCE(336); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 314: - if (lookahead == '.') ADVANCE(338); + if (lookahead == '.') ADVANCE(337); if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); END_STATE(); case 315: - if (lookahead == '2') ADVANCE(548); + if (lookahead == '2') ADVANCE(542); if (lookahead == '0' || - lookahead == '1') ADVANCE(554); + lookahead == '1') ADVANCE(548); END_STATE(); case 316: - if (lookahead == ':') ADVANCE(555); + if (lookahead == ':') ADVANCE(549); END_STATE(); case 317: - if (lookahead == ':') ADVANCE(556); + if (lookahead == ':') ADVANCE(550); END_STATE(); case 318: - if (lookahead == ';') ADVANCE(1716); + if (lookahead == ';') ADVANCE(1715); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(318); END_STATE(); case 319: - if (lookahead == '=') ADVANCE(1139); - if (lookahead == '~') ADVANCE(1121); + if (lookahead == '=') ADVANCE(1138); + if (lookahead == '~') ADVANCE(1120); END_STATE(); case 320: - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); - END_STATE(); - case 321: if (lookahead == '=') ADVANCE(1547); - if (lookahead == '>') ADVANCE(1500); if (lookahead == '~') ADVANCE(1553); END_STATE(); + case 321: + if (lookahead == '=') ADVANCE(1546); + if (lookahead == '>') ADVANCE(1499); + if (lookahead == '~') ADVANCE(1552); + END_STATE(); case 322: - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == '=') ADVANCE(1546); + if (lookahead == '~') ADVANCE(1552); END_STATE(); case 323: - if (lookahead == '>') ADVANCE(1500); + if (lookahead == '>') ADVANCE(1499); END_STATE(); case 324: - if (lookahead == '>') ADVANCE(1747); + if (lookahead == '>') ADVANCE(1746); END_STATE(); case 325: - if (lookahead == '>') ADVANCE(1745); + if (lookahead == '>') ADVANCE(1744); END_STATE(); case 326: - if (lookahead == '>') ADVANCE(1741); + if (lookahead == '>') ADVANCE(1740); END_STATE(); case 327: - if (lookahead == '>') ADVANCE(1743); + if (lookahead == '>') ADVANCE(1742); END_STATE(); case 328: - if (lookahead == '>') ADVANCE(525); + if (lookahead == '>') ADVANCE(519); END_STATE(); case 329: - if (lookahead == '>') ADVANCE(527); + if (lookahead == '>') ADVANCE(521); END_STATE(); case 330: - if (lookahead == '>') ADVANCE(529); + if (lookahead == '>') ADVANCE(523); END_STATE(); case 331: - if (lookahead == '>') ADVANCE(530); + if (lookahead == '>') ADVANCE(524); END_STATE(); case 332: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(534); + if (lookahead == 'I') ADVANCE(528); + if (lookahead == 'i') ADVANCE(528); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1652); END_STATE(); case 333: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(357); + if (lookahead == 'I') ADVANCE(528); + if (lookahead == 'i') ADVANCE(353); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1652); END_STATE(); case 334: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(420); - if (lookahead == 'o') ADVANCE(362); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(528); + if (lookahead == 'i') ADVANCE(415); + if (lookahead == 'o') ADVANCE(358); + if (lookahead == 's') ADVANCE(1657); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1652); END_STATE(); case 335: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(420); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '_') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); END_STATE(); case 336: if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 337: if (lookahead == '_') ADVANCE(337); @@ -18145,3197 +18292,3365 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 338: if (lookahead == '_') ADVANCE(338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 339: - if (lookahead == '_') ADVANCE(341); - if (lookahead == 'o') ADVANCE(324); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '_') ADVANCE(339); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); END_STATE(); case 340: - if (lookahead == '_') ADVANCE(341); - if (lookahead == '+' || - lookahead == '-') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == 'a') ADVANCE(464); END_STATE(); case 341: - if (lookahead == '_') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == 'a') ADVANCE(464); + if (lookahead == 'r') ADVANCE(1657); END_STATE(); case 342: - if (lookahead == '_') ADVANCE(342); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == 'a') ADVANCE(513); + if (lookahead == 'e') ADVANCE(383); END_STATE(); case 343: - if (lookahead == '_') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == 'a') ADVANCE(413); END_STATE(); case 344: - if (lookahead == 'a') ADVANCE(470); + if (lookahead == 'a') ADVANCE(456); END_STATE(); case 345: - if (lookahead == 'a') ADVANCE(470); - if (lookahead == 'r') ADVANCE(1658); + if (lookahead == 'a') ADVANCE(465); END_STATE(); case 346: - if (lookahead == 'a') ADVANCE(519); + if (lookahead == 'a') ADVANCE(462); END_STATE(); case 347: - if (lookahead == 'a') ADVANCE(418); + if (lookahead == 'a') ADVANCE(476); END_STATE(); case 348: - if (lookahead == 'a') ADVANCE(462); + if (lookahead == 'a') ADVANCE(493); END_STATE(); case 349: - if (lookahead == 'a') ADVANCE(471); + if (lookahead == 'a') ADVANCE(495); END_STATE(); case 350: - if (lookahead == 'a') ADVANCE(468); + if (lookahead == 'a') ADVANCE(494); END_STATE(); case 351: - if (lookahead == 'a') ADVANCE(482); + if (lookahead == 'a') ADVANCE(421); + if (lookahead == 'o') ADVANCE(449); + if (lookahead == 's') ADVANCE(386); + if (lookahead == 'x') ADVANCE(435); END_STATE(); case 352: - if (lookahead == 'a') ADVANCE(499); + if (lookahead == 'a') ADVANCE(461); END_STATE(); case 353: - if (lookahead == 'a') ADVANCE(501); + if (lookahead == 'b') ADVANCE(1652); END_STATE(); case 354: - if (lookahead == 'a') ADVANCE(500); + if (lookahead == 'c') ADVANCE(1657); END_STATE(); case 355: - if (lookahead == 'a') ADVANCE(426); - if (lookahead == 'o') ADVANCE(455); - if (lookahead == 's') ADVANCE(391); - if (lookahead == 'x') ADVANCE(440); + if (lookahead == 'c') ADVANCE(385); END_STATE(); case 356: - if (lookahead == 'a') ADVANCE(467); + if (lookahead == 'c') ADVANCE(378); END_STATE(); case 357: - if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'd') ADVANCE(1526); END_STATE(); case 358: - if (lookahead == 'c') ADVANCE(1658); + if (lookahead == 'd') ADVANCE(1570); END_STATE(); case 359: - if (lookahead == 'c') ADVANCE(390); + if (lookahead == 'd') ADVANCE(1584); END_STATE(); case 360: - if (lookahead == 'c') ADVANCE(383); + if (lookahead == 'd') ADVANCE(466); END_STATE(); case 361: - if (lookahead == 'd') ADVANCE(1527); + if (lookahead == 'd') ADVANCE(503); END_STATE(); case 362: - if (lookahead == 'd') ADVANCE(1571); + if (lookahead == 'd') ADVANCE(472); END_STATE(); case 363: - if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(1046); END_STATE(); case 364: - if (lookahead == 'd') ADVANCE(472); + if (lookahead == 'e') ADVANCE(1070); END_STATE(); case 365: - if (lookahead == 'd') ADVANCE(509); + if (lookahead == 'e') ADVANCE(1088); END_STATE(); case 366: - if (lookahead == 'd') ADVANCE(478); + if (lookahead == 'e') ADVANCE(1091); END_STATE(); case 367: - if (lookahead == 'e') ADVANCE(1047); + if (lookahead == 'e') ADVANCE(1055); END_STATE(); case 368: - if (lookahead == 'e') ADVANCE(1071); + if (lookahead == 'e') ADVANCE(1555); END_STATE(); case 369: - if (lookahead == 'e') ADVANCE(1089); + if (lookahead == 'e') ADVANCE(1557); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(1092); + if (lookahead == 'e') ADVANCE(383); END_STATE(); case 371: - if (lookahead == 'e') ADVANCE(1056); + if (lookahead == 'e') ADVANCE(1477); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(1556); + if (lookahead == 'e') ADVANCE(354); + if (lookahead == 't') ADVANCE(344); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(1558); + if (lookahead == 'e') ADVANCE(325); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(388); + if (lookahead == 'e') ADVANCE(457); END_STATE(); case 375: - if (lookahead == 'e') ADVANCE(1478); + if (lookahead == 'e') ADVANCE(329); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(358); + if (lookahead == 'e') ADVANCE(453); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(358); - if (lookahead == 't') ADVANCE(348); + if (lookahead == 'e') ADVANCE(455); END_STATE(); case 378: - if (lookahead == 'e') ADVANCE(325); + if (lookahead == 'e') ADVANCE(410); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(463); + if (lookahead == 'e') ADVANCE(458); END_STATE(); case 380: - if (lookahead == 'e') ADVANCE(329); + if (lookahead == 'e') ADVANCE(423); + if (lookahead == 'h') ADVANCE(345); + if (lookahead == 'i') ADVANCE(418); + if (lookahead == 'l') ADVANCE(401); + if (lookahead == 's') ADVANCE(500); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(459); + if (lookahead == 'f') ADVANCE(1067); END_STATE(); case 382: - if (lookahead == 'e') ADVANCE(461); + if (lookahead == 'f') ADVANCE(1067); + if (lookahead == 'n') ADVANCE(1082); END_STATE(); case 383: - if (lookahead == 'e') ADVANCE(415); + if (lookahead == 'f') ADVANCE(824); END_STATE(); case 384: - if (lookahead == 'e') ADVANCE(464); + if (lookahead == 'f') ADVANCE(1476); END_STATE(); case 385: - if (lookahead == 'e') ADVANCE(428); - if (lookahead == 'h') ADVANCE(349); - if (lookahead == 'i') ADVANCE(423); - if (lookahead == 'l') ADVANCE(406); - if (lookahead == 's') ADVANCE(506); + if (lookahead == 'h') ADVANCE(1076); END_STATE(); case 386: - if (lookahead == 'f') ADVANCE(1068); + if (lookahead == 'h') ADVANCE(407); END_STATE(); case 387: - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1083); + if (lookahead == 'h') ADVANCE(1542); END_STATE(); case 388: - if (lookahead == 'f') ADVANCE(825); + if (lookahead == 'h') ADVANCE(1538); END_STATE(); case 389: - if (lookahead == 'f') ADVANCE(1477); + if (lookahead == 'h') ADVANCE(1544); END_STATE(); case 390: - if (lookahead == 'h') ADVANCE(1077); + if (lookahead == 'h') ADVANCE(1540); END_STATE(); case 391: - if (lookahead == 'h') ADVANCE(412); + if (lookahead == 'h') ADVANCE(1473); END_STATE(); case 392: - if (lookahead == 'h') ADVANCE(1543); + if (lookahead == 'h') ADVANCE(1474); END_STATE(); case 393: - if (lookahead == 'h') ADVANCE(1539); + if (lookahead == 'h') ADVANCE(301); END_STATE(); case 394: - if (lookahead == 'h') ADVANCE(1545); + if (lookahead == 'i') ADVANCE(404); END_STATE(); case 395: - if (lookahead == 'h') ADVANCE(1541); + if (lookahead == 'i') ADVANCE(475); END_STATE(); case 396: - if (lookahead == 'h') ADVANCE(1474); + if (lookahead == 'i') ADVANCE(483); END_STATE(); case 397: - if (lookahead == 'h') ADVANCE(1475); + if (lookahead == 'i') ADVANCE(485); END_STATE(); case 398: - if (lookahead == 'h') ADVANCE(300); + if (lookahead == 'i') ADVANCE(488); END_STATE(); case 399: - if (lookahead == 'i') ADVANCE(409); + if (lookahead == 'i') ADVANCE(489); END_STATE(); case 400: - if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'i') ADVANCE(490); END_STATE(); case 401: - if (lookahead == 'i') ADVANCE(489); + if (lookahead == 'i') ADVANCE(405); END_STATE(); case 402: - if (lookahead == 'i') ADVANCE(491); + if (lookahead == 'i') ADVANCE(346); END_STATE(); case 403: - if (lookahead == 'i') ADVANCE(494); + if (lookahead == 'k') ADVANCE(1657); END_STATE(); case 404: - if (lookahead == 'i') ADVANCE(495); + if (lookahead == 'k') ADVANCE(368); END_STATE(); case 405: - if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'k') ADVANCE(369); END_STATE(); case 406: - if (lookahead == 'i') ADVANCE(410); + if (lookahead == 'l') ADVANCE(1094); END_STATE(); case 407: - if (lookahead == 'i') ADVANCE(350); + if (lookahead == 'l') ADVANCE(1580); + if (lookahead == 'r') ADVANCE(1582); END_STATE(); case 408: - if (lookahead == 'k') ADVANCE(1658); + if (lookahead == 'l') ADVANCE(402); END_STATE(); case 409: - if (lookahead == 'k') ADVANCE(372); + if (lookahead == 'l') ADVANCE(406); END_STATE(); case 410: - if (lookahead == 'k') ADVANCE(373); + if (lookahead == 'l') ADVANCE(411); END_STATE(); case 411: - if (lookahead == 'l') ADVANCE(1095); + if (lookahead == 'l') ADVANCE(306); END_STATE(); case 412: - if (lookahead == 'l') ADVANCE(1581); - if (lookahead == 'r') ADVANCE(1583); + if (lookahead == 'l') ADVANCE(367); END_STATE(); case 413: - if (lookahead == 'l') ADVANCE(407); + if (lookahead == 'l') ADVANCE(468); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(411); + if (lookahead == 'n') ADVANCE(1052); END_STATE(); case 415: - if (lookahead == 'l') ADVANCE(416); + if (lookahead == 'n') ADVANCE(1657); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); END_STATE(); case 416: - if (lookahead == 'l') ADVANCE(305); + if (lookahead == 'n') ADVANCE(357); END_STATE(); case 417: - if (lookahead == 'l') ADVANCE(371); + if (lookahead == 'n') ADVANCE(1082); END_STATE(); case 418: - if (lookahead == 'l') ADVANCE(474); + if (lookahead == 'n') ADVANCE(1532); END_STATE(); case 419: - if (lookahead == 'n') ADVANCE(1053); + if (lookahead == 'n') ADVANCE(1475); END_STATE(); case 420: - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == 'n') ADVANCE(360); END_STATE(); case 421: - if (lookahead == 'n') ADVANCE(361); + if (lookahead == 'n') ADVANCE(359); END_STATE(); case 422: - if (lookahead == 'n') ADVANCE(1083); + if (lookahead == 'n') ADVANCE(470); END_STATE(); case 423: - if (lookahead == 'n') ADVANCE(1533); + if (lookahead == 'n') ADVANCE(362); END_STATE(); case 424: - if (lookahead == 'n') ADVANCE(1476); + if (lookahead == 'o') ADVANCE(502); END_STATE(); case 425: - if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'o') ADVANCE(324); END_STATE(); case 426: - if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'o') ADVANCE(448); END_STATE(); case 427: - if (lookahead == 'n') ADVANCE(476); + if (lookahead == 'o') ADVANCE(384); END_STATE(); case 428: - if (lookahead == 'n') ADVANCE(366); + if (lookahead == 'o') ADVANCE(442); END_STATE(); case 429: - if (lookahead == 'o') ADVANCE(508); + if (lookahead == 'o') ADVANCE(481); END_STATE(); case 430: - if (lookahead == 'o') ADVANCE(324); + if (lookahead == 'o') ADVANCE(481); + if (lookahead == 's') ADVANCE(1657); END_STATE(); case 431: - if (lookahead == 'o') ADVANCE(454); + if (lookahead == 'o') ADVANCE(358); END_STATE(); case 432: - if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'o') ADVANCE(361); END_STATE(); case 433: - if (lookahead == 'o') ADVANCE(447); + if (lookahead == 'o') ADVANCE(328); END_STATE(); case 434: - if (lookahead == 'o') ADVANCE(487); + if (lookahead == 'o') ADVANCE(422); END_STATE(); case 435: - if (lookahead == 'o') ADVANCE(487); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'o') ADVANCE(450); END_STATE(); case 436: - if (lookahead == 'o') ADVANCE(362); + if (lookahead == 'o') ADVANCE(478); END_STATE(); case 437: - if (lookahead == 'o') ADVANCE(365); + if (lookahead == 'o') ADVANCE(479); + if (lookahead == 'u') ADVANCE(409); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(534); END_STATE(); case 438: - if (lookahead == 'o') ADVANCE(328); + if (lookahead == 'o') ADVANCE(505); END_STATE(); case 439: - if (lookahead == 'o') ADVANCE(427); + if (lookahead == 'o') ADVANCE(460); END_STATE(); case 440: - if (lookahead == 'o') ADVANCE(456); + if (lookahead == 'p') ADVANCE(439); + if (lookahead == 't') ADVANCE(376); END_STATE(); case 441: - if (lookahead == 'o') ADVANCE(484); + if (lookahead == 'p') ADVANCE(371); END_STATE(); case 442: - if (lookahead == 'o') ADVANCE(485); - if (lookahead == 'u') ADVANCE(414); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == 'p') ADVANCE(492); END_STATE(); case 443: - if (lookahead == 'o') ADVANCE(511); + if (lookahead == 'p') ADVANCE(348); END_STATE(); case 444: - if (lookahead == 'o') ADVANCE(466); + if (lookahead == 'p') ADVANCE(349); END_STATE(); case 445: - if (lookahead == 'p') ADVANCE(444); - if (lookahead == 't') ADVANCE(381); + if (lookahead == 'p') ADVANCE(350); END_STATE(); case 446: - if (lookahead == 'p') ADVANCE(375); + if (lookahead == 'r') ADVANCE(1530); END_STATE(); case 447: - if (lookahead == 'p') ADVANCE(498); + if (lookahead == 'r') ADVANCE(286); END_STATE(); case 448: - if (lookahead == 'p') ADVANCE(352); + if (lookahead == 'r') ADVANCE(1528); END_STATE(); case 449: - if (lookahead == 'p') ADVANCE(353); + if (lookahead == 'r') ADVANCE(1588); END_STATE(); case 450: - if (lookahead == 'p') ADVANCE(354); + if (lookahead == 'r') ADVANCE(1586); END_STATE(); case 451: - if (lookahead == 'r') ADVANCE(1658); + if (lookahead == 'r') ADVANCE(504); END_STATE(); case 452: - if (lookahead == 'r') ADVANCE(1531); + if (lookahead == 'r') ADVANCE(291); END_STATE(); case 453: - if (lookahead == 'r') ADVANCE(286); + if (lookahead == 'r') ADVANCE(414); END_STATE(); case 454: - if (lookahead == 'r') ADVANCE(1529); + if (lookahead == 'r') ADVANCE(327); END_STATE(); case 455: - if (lookahead == 'r') ADVANCE(1589); + if (lookahead == 'r') ADVANCE(419); END_STATE(); case 456: - if (lookahead == 'r') ADVANCE(1587); + if (lookahead == 'r') ADVANCE(498); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(510); + if (lookahead == 'r') ADVANCE(454); END_STATE(); case 458: - if (lookahead == 'r') ADVANCE(291); + if (lookahead == 'r') ADVANCE(459); END_STATE(); case 459: - if (lookahead == 'r') ADVANCE(419); + if (lookahead == 'r') ADVANCE(331); END_STATE(); case 460: - if (lookahead == 'r') ADVANCE(327); + if (lookahead == 'r') ADVANCE(477); END_STATE(); case 461: - if (lookahead == 'r') ADVANCE(424); + if (lookahead == 'r') ADVANCE(499); END_STATE(); case 462: - if (lookahead == 'r') ADVANCE(504); + if (lookahead == 's') ADVANCE(669); END_STATE(); case 463: - if (lookahead == 'r') ADVANCE(460); + if (lookahead == 's') ADVANCE(1657); END_STATE(); case 464: - if (lookahead == 'r') ADVANCE(465); + if (lookahead == 's') ADVANCE(1534); END_STATE(); case 465: - if (lookahead == 'r') ADVANCE(331); + if (lookahead == 's') ADVANCE(1536); END_STATE(); case 466: - if (lookahead == 'r') ADVANCE(483); + if (lookahead == 's') ADVANCE(296); END_STATE(); case 467: - if (lookahead == 'r') ADVANCE(505); + if (lookahead == 's') ADVANCE(364); END_STATE(); case 468: - if (lookahead == 's') ADVANCE(670); + if (lookahead == 's') ADVANCE(366); END_STATE(); case 469: - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 's') ADVANCE(363); END_STATE(); case 470: - if (lookahead == 's') ADVANCE(1535); + if (lookahead == 's') ADVANCE(474); END_STATE(); case 471: - if (lookahead == 's') ADVANCE(1537); + if (lookahead == 's') ADVANCE(304); END_STATE(); case 472: - if (lookahead == 's') ADVANCE(296); + if (lookahead == 's') ADVANCE(305); END_STATE(); case 473: - if (lookahead == 's') ADVANCE(368); + if (lookahead == 's') ADVANCE(307); END_STATE(); case 474: - if (lookahead == 's') ADVANCE(370); + if (lookahead == 't') ADVANCE(681); END_STATE(); case 475: - if (lookahead == 's') ADVANCE(367); + if (lookahead == 't') ADVANCE(293); END_STATE(); case 476: - if (lookahead == 's') ADVANCE(480); + if (lookahead == 't') ADVANCE(355); END_STATE(); case 477: - if (lookahead == 's') ADVANCE(303); + if (lookahead == 't') ADVANCE(665); END_STATE(); case 478: - if (lookahead == 's') ADVANCE(304); + if (lookahead == 't') ADVANCE(295); END_STATE(); case 479: - if (lookahead == 's') ADVANCE(306); + if (lookahead == 't') ADVANCE(543); END_STATE(); case 480: - if (lookahead == 't') ADVANCE(682); + if (lookahead == 't') ADVANCE(344); END_STATE(); case 481: - if (lookahead == 't') ADVANCE(293); + if (lookahead == 't') ADVANCE(294); END_STATE(); case 482: - if (lookahead == 't') ADVANCE(359); + if (lookahead == 't') ADVANCE(280); END_STATE(); case 483: - if (lookahead == 't') ADVANCE(666); + if (lookahead == 't') ADVANCE(387); END_STATE(); case 484: - if (lookahead == 't') ADVANCE(295); + if (lookahead == 't') ADVANCE(514); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(549); + if (lookahead == 't') ADVANCE(388); END_STATE(); case 486: - if (lookahead == 't') ADVANCE(348); + if (lookahead == 't') ADVANCE(326); END_STATE(); case 487: - if (lookahead == 't') ADVANCE(294); + if (lookahead == 't') ADVANCE(292); END_STATE(); case 488: - if (lookahead == 't') ADVANCE(281); + if (lookahead == 't') ADVANCE(389); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(392); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 490: - if (lookahead == 't') ADVANCE(520); + if (lookahead == 't') ADVANCE(393); END_STATE(); case 491: - if (lookahead == 't') ADVANCE(393); + if (lookahead == 't') ADVANCE(330); END_STATE(); case 492: - if (lookahead == 't') ADVANCE(326); + if (lookahead == 't') ADVANCE(302); END_STATE(); case 493: - if (lookahead == 't') ADVANCE(292); + if (lookahead == 't') ADVANCE(391); END_STATE(); case 494: - if (lookahead == 't') ADVANCE(394); + if (lookahead == 't') ADVANCE(392); END_STATE(); case 495: - if (lookahead == 't') ADVANCE(395); + if (lookahead == 't') ADVANCE(497); END_STATE(); case 496: - if (lookahead == 't') ADVANCE(398); + if (lookahead == 't') ADVANCE(376); END_STATE(); case 497: - if (lookahead == 't') ADVANCE(330); + if (lookahead == 't') ADVANCE(377); END_STATE(); case 498: - if (lookahead == 't') ADVANCE(301); + if (lookahead == 't') ADVANCE(471); END_STATE(); case 499: - if (lookahead == 't') ADVANCE(396); + if (lookahead == 't') ADVANCE(473); END_STATE(); case 500: - if (lookahead == 't') ADVANCE(397); + if (lookahead == 't') ADVANCE(352); END_STATE(); case 501: - if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(515); + if (lookahead == 'x') ADVANCE(562); + if (lookahead != 0) ADVANCE(1703); END_STATE(); case 502: - if (lookahead == 't') ADVANCE(381); + if (lookahead == 'u') ADVANCE(486); END_STATE(); case 503: - if (lookahead == 't') ADVANCE(382); + if (lookahead == 'u') ADVANCE(412); END_STATE(); case 504: - if (lookahead == 't') ADVANCE(477); + if (lookahead == 'u') ADVANCE(365); END_STATE(); case 505: - if (lookahead == 't') ADVANCE(479); + if (lookahead == 'u') ADVANCE(491); END_STATE(); case 506: - if (lookahead == 't') ADVANCE(356); + if (lookahead == 'u') ADVANCE(516); + if (lookahead == 'x') ADVANCE(563); + if (lookahead != 0) ADVANCE(1695); END_STATE(); case 507: - if (lookahead == 'u') ADVANCE(521); - if (lookahead == 'x') ADVANCE(568); - if (lookahead != 0) ADVANCE(1704); + if (lookahead == 'w') ADVANCE(396); END_STATE(); case 508: - if (lookahead == 'u') ADVANCE(492); + if (lookahead == 'w') ADVANCE(397); END_STATE(); case 509: - if (lookahead == 'u') ADVANCE(417); + if (lookahead == 'w') ADVANCE(398); END_STATE(); case 510: - if (lookahead == 'u') ADVANCE(369); + if (lookahead == 'w') ADVANCE(399); END_STATE(); case 511: - if (lookahead == 'u') ADVANCE(497); + if (lookahead == 'w') ADVANCE(400); END_STATE(); case 512: - if (lookahead == 'u') ADVANCE(522); - if (lookahead == 'x') ADVANCE(569); - if (lookahead != 0) ADVANCE(1696); + if (lookahead == 'x') ADVANCE(496); END_STATE(); case 513: - if (lookahead == 'w') ADVANCE(401); + if (lookahead == 'y') ADVANCE(1657); END_STATE(); case 514: - if (lookahead == 'w') ADVANCE(402); + if (lookahead == 'y') ADVANCE(441); END_STATE(); case 515: - if (lookahead == 'w') ADVANCE(403); + if (lookahead == '{') ADVANCE(559); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(557); END_STATE(); case 516: - if (lookahead == 'w') ADVANCE(404); + if (lookahead == '{') ADVANCE(561); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(564); END_STATE(); case 517: - if (lookahead == 'w') ADVANCE(405); + if (lookahead == '|') ADVANCE(1454); END_STATE(); case 518: - if (lookahead == 'x') ADVANCE(502); + if (lookahead == '|') ADVANCE(1455); END_STATE(); case 519: - if (lookahead == 'y') ADVANCE(1658); + if (lookahead == '|') ADVANCE(1459); END_STATE(); case 520: - if (lookahead == 'y') ADVANCE(446); + if (lookahead == '|') ADVANCE(1452); END_STATE(); case 521: - if (lookahead == '{') ADVANCE(565); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); + if (lookahead == '|') ADVANCE(1458); END_STATE(); case 522: - if (lookahead == '{') ADVANCE(567); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(570); + if (lookahead == '|') ADVANCE(1453); END_STATE(); case 523: - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '|') ADVANCE(1456); END_STATE(); case 524: - if (lookahead == '|') ADVANCE(1456); + if (lookahead == '|') ADVANCE(1457); END_STATE(); case 525: - if (lookahead == '|') ADVANCE(1460); + if (lookahead == '}') ADVANCE(1703); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(525); END_STATE(); case 526: - if (lookahead == '|') ADVANCE(1453); + if (lookahead == '}') ADVANCE(1695); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(526); END_STATE(); case 527: - if (lookahead == '|') ADVANCE(1459); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(534); END_STATE(); case 528: - if (lookahead == '|') ADVANCE(1454); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); END_STATE(); case 529: - if (lookahead == '|') ADVANCE(1457); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1104); END_STATE(); case 530: - if (lookahead == '|') ADVANCE(1458); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1102); END_STATE(); case 531: - if (lookahead == '}') ADVANCE(1704); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(538); END_STATE(); case 532: - if (lookahead == '}') ADVANCE(1696); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(539); END_STATE(); case 533: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(529); END_STATE(); case 534: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1108); END_STATE(); case 535: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1105); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(531); END_STATE(); case 536: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1103); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(530); END_STATE(); case 537: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(544); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(532); END_STATE(); case 538: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(545); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(541); END_STATE(); case 539: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(535); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(540); END_STATE(); case 540: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1097); END_STATE(); case 541: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(537); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1103); END_STATE(); case 542: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(536); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1670); END_STATE(); case 543: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(538); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1559); END_STATE(); case 544: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); END_STATE(); case 545: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 546: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); END_STATE(); case 547: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); END_STATE(); case 548: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); END_STATE(); case 549: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(544); END_STATE(); case 550: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(545); END_STATE(); case 551: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); END_STATE(); case 552: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); END_STATE(); case 553: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); END_STATE(); case 554: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(551); END_STATE(); case 555: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 556: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(551); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(555); END_STATE(); case 557: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); - END_STATE(); - case 558: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); - END_STATE(); - case 559: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(558); - END_STATE(); - case 560: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); - END_STATE(); - case 561: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); - END_STATE(); - case 562: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(561); - END_STATE(); - case 563: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(562); END_STATE(); - case 564: + case 558: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1704); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1703); END_STATE(); - case 565: + case 559: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(525); END_STATE(); - case 566: + case 560: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1696); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1695); END_STATE(); - case 567: + case 561: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(526); END_STATE(); - case 568: + case 562: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(564); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(558); END_STATE(); - case 569: + case 563: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(566); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(560); END_STATE(); - case 570: + case 564: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); END_STATE(); - case 571: - if (eof) ADVANCE(661); + case 565: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '$', 1471, - '&', 824, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - ',', 1469, - '-', 1486, - '.', 1721, - '/', 1570, - ':', 1713, - ';', 1451, - '<', 1549, - '=', 673, - '>', 1480, - '?', 1717, - '@', 1462, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 1502, - '`', 1692, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1717, + '"', 1684, + '#', 2187, + '$', 1470, + '&', 823, + '\'', 1687, + '(', 1466, + ')', 1467, + '*', 1511, + '+', 1574, + ',', 1468, + '-', 1485, + '.', 1720, + '/', 1569, + ':', 1712, + ';', 1450, + '<', 1548, + '=', 672, + '>', 1479, + '?', 1716, + '@', 1461, + '[', 1464, + ']', 1465, + '^', 1730, + '_', 1501, + '`', 1691, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(571); + lookahead == ' ') SKIP(565); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1373); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1372); END_STATE(); - case 572: - if (eof) ADVANCE(661); + case 566: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - '?', 1717, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '!', 1717, + '"', 1684, + '#', 2187, + '\'', 1687, + ')', 1467, + '*', 1510, + '+', 701, + '-', 308, + '.', 1725, + ';', 1450, + '?', 1716, + 'I', 808, + 'N', 804, + '[', 1464, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(572); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ' ') SKIP(566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 573: - if (eof) ADVANCE(661); + case 567: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '!', 1717, + '"', 1684, + '#', 2187, + '\'', 1687, + ')', 1467, + '*', 1510, + '+', 701, + '-', 308, + '.', 1725, + ';', 1450, + 'I', 808, + 'N', 804, + '[', 1464, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); - case 574: - if (eof) ADVANCE(661); + case 568: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1718, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 1720, - ':', 1713, - ';', 1451, - '=', 675, - '>', 1479, - '?', 1717, - '[', 1465, - 'a', 421, + '!', 1717, + '#', 2187, + '(', 1466, + ')', 1467, + '-', 300, + '.', 1719, + ':', 1462, + ';', 1450, + '=', 672, + '>', 1478, + '?', 1716, + '[', 1464, + 'a', 416, 'e', 288, - 'i', 387, + 'i', 417, 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(574); + lookahead == ' ') SKIP(568); END_STATE(); - case 575: - if (eof) ADVANCE(661); + case 569: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1718, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 1722, - ':', 1713, - ';', 1451, - '=', 675, - '>', 1479, - '?', 1717, - '[', 1465, - 'a', 421, + '!', 1717, + '#', 2187, + '(', 1466, + ')', 1467, + '-', 300, + '.', 1721, + ':', 1462, + ';', 1450, + '<', 1140, + '=', 672, + '>', 1478, + '?', 1716, + '@', 1480, + '[', 1464, + 'a', 416, 'e', 288, - 'i', 387, + 'i', 417, 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(574); + lookahead == ' ') SKIP(568); END_STATE(); - case 576: - if (eof) ADVANCE(661); + case 570: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1722, - ';', 1451, - '=', 1729, - '?', 1717, - 'e', 1374, - 'o', 1375, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '!', 1717, + '#', 2187, + '(', 1466, + ')', 1467, + '-', 297, + '.', 1719, + ':', 1462, + ';', 1450, + '=', 674, + '>', 1478, + '?', 1716, + '[', 1464, + 'a', 416, + 'e', 288, + 'i', 382, + 'o', 289, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + if (lookahead == '\t' || + lookahead == ' ') SKIP(570); END_STATE(); - case 577: - if (eof) ADVANCE(661); + case 571: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1719, - '#', 2188, - '$', 1509, - '\'', 1691, - '(', 1561, - ')', 1468, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1722, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, + '!', 1717, + '#', 2187, + '(', 1466, + ')', 1467, + '-', 297, + '.', 1721, + ':', 1462, + ';', 1450, '=', 674, - '>', 1480, - '?', 1717, - '@', 1462, - ']', 1466, - '`', 1695, - 'a', 421, - 'b', 400, - 'c', 351, - 'd', 374, - 'e', 284, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '>', 1478, + '?', 1716, + '[', 1464, + 'a', 416, + 'e', 288, + 'i', 382, + 'o', 289, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + lookahead == ' ') SKIP(570); END_STATE(); - case 578: - if (eof) ADVANCE(661); + case 572: + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1717, + '#', 2187, + ')', 1467, + '.', 1721, + ';', 1450, + '=', 1728, + '?', 1716, + 'e', 1373, + 'o', 1374, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, + ); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1446); + END_STATE(); + case 573: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1719, - '#', 2188, - '(', 1561, - ')', 1468, + '!', 1718, + '#', 2187, + '$', 1508, + '\'', 1690, + '(', 1560, + ')', 1467, '*', 1512, - '+', 1575, - '-', 1486, - '.', 1722, + '+', 1577, + '-', 1494, + '.', 1721, '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, + ':', 1712, + ';', 1450, + '<', 1549, + '=', 673, + '>', 1479, + '?', 1716, + '@', 1480, + ']', 1465, + '`', 1694, + 'a', 416, + 'b', 395, + 'c', 347, + 'd', 370, + 'e', 283, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 279, + 's', 480, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(576); + END_STATE(); + case 574: + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1718, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1721, + '/', 1566, + ':', 1712, + ';', 1450, + '<', 1549, '=', 321, - '>', 1480, - '?', 1717, - 'B', 1653, + '>', 1479, + '?', 1716, + '@', 1461, + 'B', 1652, 'E', 333, 'G', 333, 'K', 333, 'M', 333, 'P', 333, 'T', 333, - '[', 1665, - 'a', 421, - 'b', 1655, - 'd', 346, - 'e', 282, + '[', 1664, + 'a', 416, + 'b', 1654, + 'd', 342, + 'e', 281, 'g', 332, - 'h', 345, - 'i', 387, + 'h', 341, + 'i', 382, 'k', 332, - 'l', 399, + 'l', 394, 'm', 334, - 'n', 435, + 'n', 430, 'o', 279, 'p', 332, - 's', 377, + 's', 372, 't', 332, - 'u', 469, - 'w', 408, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - 0xb5, 469, + 'u', 463, + 'w', 403, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, + 0xb5, 463, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(579); + lookahead == ' ') SKIP(575); END_STATE(); - case 579: - if (eof) ADVANCE(661); + case 575: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1719, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1720, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, + '!', 1718, + '#', 2187, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1719, + '/', 1566, + ':', 1712, + ';', 1450, + '<', 1549, '=', 321, - '>', 1480, - '?', 1717, - 'a', 421, - 'b', 400, + '>', 1479, + '?', 1716, + '@', 1461, + 'a', 416, + 'b', 395, + 'd', 370, 'e', 285, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 340, + 'i', 382, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 's', 480, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(579); + lookahead == ' ') SKIP(575); END_STATE(); - case 580: - if (eof) ADVANCE(661); + case 576: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1719, - '#', 2188, - ')', 1468, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1720, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1462, - ']', 1466, - 'a', 421, - 'b', 400, - 'c', 351, - 'd', 374, - 'e', 284, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + '!', 1718, + '#', 2187, + ')', 1467, + '*', 1512, + '+', 1577, + '-', 1494, + '.', 1719, + '/', 1567, + ':', 1712, + ';', 1450, + '<', 1549, + '=', 673, + '>', 1479, + '?', 1716, + ']', 1465, + 'a', 416, + 'b', 395, + 'c', 347, + 'd', 370, + 'e', 283, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 's', 480, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + lookahead == ' ') SKIP(576); END_STATE(); - case 581: - if (eof) ADVANCE(661); + case 577: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1575, + '-', 1492, + '.', 1603, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1771, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1762, + 's', 1898, + 'x', 1870, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ' ') SKIP(609); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1933); END_STATE(); - case 582: - if (eof) ADVANCE(661); + case 578: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1575, + '-', 1492, + '.', 1603, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1775, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(611); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); - case 583: - if (eof) ADVANCE(661); + case 579: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1575, + '-', 1492, + '.', 1814, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1771, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1762, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + END_STATE(); + case 580: + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1792, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1575, + '-', 1492, + '.', 1814, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1775, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(611); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + END_STATE(); + case 581: + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1594, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1763, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1762, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '|', 1451, + '}', 1498, + 0xb5, 1890, ); if (lookahead == '\t' || lookahead == ' ') SKIP(614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); - case 584: - if (eof) ADVANCE(661); + case 582: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1594, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1765, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1777, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '|', 1451, + '}', 1498, + 0xb5, 1890, ); if (lookahead == '\t' || lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); - case 585: - if (eof) ADVANCE(661); + case 583: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1594, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, 'e', 1764, - 'g', 1809, 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, + 'i', 1862, + 'l', 1850, + 'm', 1873, 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + 'o', 1762, + 's', 1898, + 'x', 1870, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(613); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1933); END_STATE(); - case 586: - if (eof) ADVANCE(661); + case 584: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1594, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1767, 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, + 'i', 1862, + 'l', 1850, + 'm', 1873, 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); - case 587: - if (eof) ADVANCE(661); + case 585: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '_', 1812, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1763, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1762, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '|', 1451, + '}', 1498, + 0xb5, 1890, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + END_STATE(); + case 586: + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '_', 1812, + 'a', 1864, + 'b', 1655, + 'd', 1823, 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1777, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '|', 1451, + '}', 1498, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + END_STATE(); + case 587: + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1763, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1762, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '|', 1451, + '}', 1498, + 0xb5, 1890, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(614); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 588: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1765, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1777, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '|', 1451, + '}', 1498, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 589: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, + 'E', 1809, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1770, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1762, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '|', 1451, + '}', 1498, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(614); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 590: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, + 'E', 1809, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1773, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1777, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '|', 1451, + '}', 1498, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 591: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + '_', 1812, + 'a', 1864, + 'b', 1851, 'e', 1764, - 'g', 1809, 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, + 'i', 1862, + 'l', 1850, + 'm', 1873, 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + 'o', 1762, + 's', 1898, + 'x', 1870, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1933); END_STATE(); case 592: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1767, 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, + 'i', 1862, + 'l', 1850, + 'm', 1873, 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 593: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1771, - 'g', 1809, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1764, 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, + 'i', 1862, + 'l', 1850, + 'm', 1873, 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + 'o', 1762, + 's', 1898, + 'x', 1870, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(613); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1933); END_STATE(); case 594: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1774, - 'g', 1809, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1767, 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, + 'i', 1862, + 'l', 1850, + 'm', 1873, 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 595: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'a', 1864, + 'b', 1851, + 'e', 1771, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1762, + 's', 1898, + 'x', 1870, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ' ') SKIP(613); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1933); END_STATE(); case 596: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'a', 1864, + 'b', 1851, + 'e', 1775, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 597: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1593, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1764, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1762, + 's', 1898, + 'x', 1870, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(613); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1933); END_STATE(); case 598: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1593, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1767, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 599: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1764, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1762, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') SKIP(614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 600: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1767, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 601: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1764, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1762, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(614); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 602: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1767, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 603: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'a', 1864, + 'b', 1851, + 'e', 1771, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1762, + 's', 1898, + 'x', 1870, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(613); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1933); END_STATE(); case 604: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'a', 1864, + 'b', 1851, + 'e', 1775, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 605: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 851, + '#', 2190, + ')', 1467, + '*', 1513, + '+', 1578, + '-', 1495, + '/', 1568, + ':', 1712, + ';', 1450, + '<', 1549, + '=', 322, + '>', 1479, + 'a', 935, + 'b', 917, + 'e', 828, + 'h', 874, + 'i', 936, + 'l', 916, + 'm', 948, + 'n', 949, + 'o', 827, + 's', 994, + 'x', 947, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1045); END_STATE(); case 606: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 851, + '#', 2190, + ')', 1467, + '*', 1513, + '+', 1578, + '-', 1495, + '/', 1568, + ';', 1450, + '<', 1549, + '=', 322, + '>', 1479, + 'a', 935, + 'b', 917, + 'e', 832, + 'h', 874, + 'i', 936, + 'l', 916, + 'm', 948, + 'n', 949, + 'o', 831, + 's', 994, + 'x', 947, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1045); END_STATE(); case 607: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 320, + '#', 2187, + '$', 1469, + '(', 1466, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1719, + '/', 1566, + ':', 1462, + ';', 1450, + '<', 1549, + '=', 322, + '>', 1479, + '?', 1716, + '[', 1464, + 'a', 416, + 'b', 395, + 'c', 347, + 'e', 282, + 'f', 343, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 436, + 'o', 279, + 's', 480, + 't', 451, + 'x', 426, + '{', 1497, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') SKIP(607); END_STATE(); case 608: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 320, + '#', 2187, + '$', 1469, + '(', 1466, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1721, + '/', 1566, + ':', 1462, + ';', 1450, + '<', 1549, + '=', 322, + '>', 1479, + '?', 1716, + '[', 1464, + 'a', 416, + 'b', 395, + 'c', 347, + 'e', 282, + 'f', 343, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 436, + 'o', 279, + 's', 480, + 't', 451, + 'x', 426, + '{', 1497, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(607); END_STATE(); case 609: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 852, - '#', 2191, - ')', 1468, - '*', 1514, - '+', 1579, - '-', 1496, - '/', 1569, - ':', 1713, - ';', 1451, - '<', 1550, + '!', 320, + '#', 2187, + '$', 1469, + ')', 1467, + '*', 1511, + '+', 1576, + '-', 1493, + '.', 336, + '/', 1566, + ';', 1450, + '<', 1549, '=', 322, - '>', 1480, - 'a', 936, - 'b', 918, - 'e', 829, - 'h', 875, - 'i', 937, - 'l', 917, - 'm', 949, - 'n', 950, - 'o', 828, - 's', 995, - 'x', 948, - '|', 1452, - '}', 1499, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 284, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 279, + 's', 480, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(616); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + lookahead == ' ') SKIP(609); END_STATE(); case 610: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 852, - '#', 2191, - ')', 1468, - '*', 1514, - '+', 1579, - '-', 1496, - '/', 1569, - ';', 1451, - '<', 1550, + '!', 320, + '#', 2187, + '$', 1469, + ')', 1467, + '*', 1511, + '+', 1576, + '-', 1493, + '.', 336, + '/', 1566, + ';', 1450, + '<', 1549, '=', 322, - '>', 1480, - 'a', 936, - 'b', 918, - 'e', 833, - 'h', 875, - 'i', 937, - 'l', 917, - 'm', 949, - 'n', 950, - 'o', 832, - 's', 995, - 'x', 948, - '|', 1452, - '}', 1499, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 284, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 279, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + lookahead == ' ') SKIP(610); END_STATE(); case 611: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ':', 1463, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - 'E', 340, - '[', 1465, - 'a', 421, - 'b', 400, - 'c', 351, - 'e', 280, - 'f', 347, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 441, - 'o', 279, - 's', 486, - 't', 457, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '#', 2187, + '$', 1469, + ')', 1467, + '*', 1511, + '+', 1576, + '-', 1493, + '.', 336, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 322, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 287, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 289, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(612); + lookahead == ' ') SKIP(611); END_STATE(); case 612: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1463, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - '[', 1465, - 'a', 421, - 'b', 400, - 'c', 351, - 'e', 283, - 'f', 347, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 441, + '#', 2187, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ':', 1712, + ';', 1450, + '<', 1549, + '=', 322, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 284, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 279, - 's', 486, - 't', 457, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(612); END_STATE(); case 613: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2187, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 284, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 's', 480, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(613); END_STATE(); case 614: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2187, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 284, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(614); END_STATE(); case 615: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2187, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1479, + 'a', 416, + 'b', 395, 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(615); END_STATE(); case 616: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - ')', 1468, + '#', 2187, + ')', 1467, '*', 1512, - '+', 1575, - '-', 1486, + '+', 1577, + '-', 1494, + '.', 1719, '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + ':', 1462, + ';', 1450, + '<', 1549, + '=', 673, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 284, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(616); END_STATE(); case 617: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - ')', 1468, + '#', 2187, + ')', 1467, '*', 1512, - '+', 1575, - '-', 1486, + '+', 1577, + '-', 1494, + '.', 1721, '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + ':', 1462, + ';', 1450, + '<', 1549, + '=', 673, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 284, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(616); END_STATE(); case 618: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + '>', 1479, + 'a', 416, + 'b', 395, + 'e', 284, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 480, + 'x', 426, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(618); END_STATE(); case 619: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1479, + 'a', 416, + 'b', 395, 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 480, + 'x', 426, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); END_STATE(); case 620: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + ')', 1615, + '+', 701, + '-', 1490, + '.', 696, + '0', 1622, + ':', 1462, + ';', 1450, + '=', 672, + '@', 1461, + 'I', 808, + 'N', 804, + '[', 1464, + '^', 1730, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 768, + 't', 771, + 'u', 784, + 'w', 746, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); + lookahead == ' ') SKIP(623); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(823); END_STATE(); case 621: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + ')', 1467, + '+', 701, + '-', 1490, + '.', 696, + '0', 1622, + ':', 1462, + ';', 1450, + '<', 1140, + '=', 672, + '>', 1478, + '@', 1480, + 'I', 808, + 'N', 804, + '[', 1464, + '^', 1730, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 690, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 768, + 'o', 692, + 't', 771, + 'u', 784, + 'w', 746, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); + lookahead == ' ') SKIP(622); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(823); END_STATE(); case 622: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1616, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 673, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + ')', 1467, + '+', 701, + '-', 1490, + '.', 696, + '0', 1622, + ':', 1462, + ';', 1450, + '=', 672, + '>', 1478, + 'I', 808, + 'N', 804, + '[', 1464, + '^', 1730, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 690, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 768, + 'o', 692, + 't', 771, + 'u', 784, + 'w', 746, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == ' ') SKIP(622); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(824); + lookahead != '@' && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(823); END_STATE(); case 623: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 673, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + ')', 1467, + '+', 701, + '-', 1490, + '.', 696, + '0', 1622, + ':', 1462, + ';', 1450, + '=', 672, + '@', 1461, + 'I', 808, + 'N', 804, + '[', 1464, + '^', 1730, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 768, + 't', 771, + 'u', 784, + 'w', 746, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(824); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(823); END_STATE(); case 624: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1989, - 'f', 2015, - 'n', 2043, - 'o', 1990, - 't', 2030, - '{', 1498, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - 'I', 2051, - 'i', 2051, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + ')', 1467, + '+', 1999, + '-', 1487, + '.', 1998, + '0', 1623, + ';', 1450, + 'N', 2046, + '[', 1464, + '_', 2011, + '`', 1691, + 'e', 1988, + 'f', 2014, + 'n', 2042, + 'o', 1989, + 't', 2029, + '{', 1497, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, + 'I', 2050, + 'i', 2050, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2070); + lookahead != ']') ADVANCE(2069); END_STATE(); case 625: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1511, - '+', 702, - '-', 298, - '.', 718, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '}', 1499, + '"', 1684, + '#', 2187, + '\'', 1687, + '(', 1466, + ')', 1467, + '*', 1510, + '+', 701, + '-', 299, + '.', 717, + ';', 1450, + '=', 672, + 'I', 808, + 'N', 804, + '[', 1464, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + '{', 1497, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead == ' ') SKIP(625); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 626: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1511, - '+', 702, - '-', 298, - '.', 718, - ';', 1451, - '=', 673, - '>', 1479, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '}', 1499, + '"', 1684, + '#', 2187, + '\'', 1687, + ')', 1467, + '*', 1510, + '+', 701, + '-', 308, + '.', 1725, + ';', 1450, + '?', 1716, + 'I', 808, + 'N', 804, + '[', 1464, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); - END_STATE(); - case 627: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - '?', 1717, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 628: - if (eof) ADVANCE(661); + case 627: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '"', 1684, + '#', 2187, + '\'', 1687, + ')', 1467, + '*', 1510, + '+', 701, + '-', 308, + '.', 1725, + ';', 1450, + 'I', 808, + 'N', 804, + '[', 1464, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(628); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(627); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); - case 629: - if (eof) ADVANCE(661); + case 628: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '"', 1685, - '#', 2190, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ';', 1451, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, + '"', 1684, + '#', 2189, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 701, + '-', 1490, + '.', 696, + '0', 1622, + ';', 1450, + '@', 1461, + 'I', 808, + 'N', 804, + '[', 1464, + '^', 1730, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 768, + 't', 771, + 'u', 784, + 'w', 746, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(629); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == ' ') SKIP(628); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 630: - if (eof) ADVANCE(661); + case 629: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1604, - ';', 1451, - '[', 1665, - '_', 1813, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '.', 1603, + ';', 1450, + '[', 1664, + '_', 1812, + 'e', 1776, + 'o', 1778, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, + '+', 1790, + '-', 1790, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -21343,7746 +21658,7751 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1934); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1933); END_STATE(); - case 631: - if (eof) ADVANCE(661); + case 630: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1604, - ';', 1451, - '_', 1813, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '.', 1603, + ';', 1450, + '_', 1812, + 'a', 1864, + 'e', 1776, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); + lookahead == ' ') SKIP(633); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); - case 632: - if (eof) ADVANCE(661); + case 631: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1815, - ';', 1451, - '_', 1813, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '.', 1814, + ';', 1450, + '_', 1812, + 'a', 1864, + 'e', 1776, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); + lookahead == ' ') SKIP(633); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); - case 633: - if (eof) ADVANCE(661); + case 632: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1815, - ';', 1451, - '_', 1813, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '.', 1814, + ';', 1450, + '_', 1812, + 'e', 1776, + 'o', 1778, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, + '+', 1790, + '-', 1790, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); - case 634: - if (eof) ADVANCE(661); + case 633: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - '.', 337, - ';', 1451, - 'a', 421, + '#', 2187, + '$', 1469, + ')', 1467, + '.', 336, + ';', 1450, + 'a', 416, 'e', 288, 'o', 289, - 'x', 431, - '|', 1452, - '}', 1499, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); + lookahead == ' ') SKIP(633); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); - case 635: - if (eof) ADVANCE(661); + case 634: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1594, + ';', 1450, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'd', 1823, + 'e', 1766, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'o', 1777, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '|', 1451, + '}', 1498, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); + lookahead == ' ') SKIP(659); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + END_STATE(); + case 635: + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1594, + ';', 1450, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1766, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'o', 1778, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + '}', 1498, + 0xb5, 1890, + '\t', 1449, + ' ', 1449, + 'B', 1652, + 'b', 1652, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 636: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1594, + ';', 1450, + 'E', 1818, + 'a', 1864, + 'e', 1768, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(659); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 637: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1594, + ';', 1450, + 'E', 1818, + 'e', 1768, 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 638: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '_', 1812, + 'a', 1864, + 'd', 1823, + 'e', 1766, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'o', 1777, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '|', 1451, + '}', 1498, + 0xb5, 1890, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(659); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 639: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '_', 1812, + 'd', 1823, + 'e', 1766, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + '}', 1498, + 0xb5, 1890, + '\t', 1449, + ' ', 1449, + 'B', 1652, + 'b', 1652, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 640: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'd', 1823, + 'e', 1766, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'o', 1777, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '|', 1451, + '}', 1498, + 0xb5, 1890, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(659); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 641: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1766, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + '}', 1498, + 0xb5, 1890, + '\t', 1449, + ' ', 1449, + 'B', 1652, + 'b', 1652, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 642: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1809, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'a', 1864, + 'd', 1823, + 'e', 1774, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'o', 1777, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '|', 1451, + '}', 1498, + 0xb5, 1890, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(659); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 643: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1775, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1809, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1774, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + '}', 1498, + 0xb5, 1890, + '\t', 1449, + ' ', 1449, + 'B', 1652, + 'b', 1652, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 644: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1775, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1818, + '_', 1812, + 'a', 1864, + 'e', 1768, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(659); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 645: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'e', 1769, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1818, + '_', 1812, + 'e', 1768, 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 646: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - '_', 1813, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1818, + 'a', 1864, + 'e', 1768, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(659); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 647: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1818, + 'e', 1768, 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 648: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'a', 1864, + 'e', 1776, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(659); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 649: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'a', 1865, - 'e', 1777, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'e', 1776, 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 650: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1593, + ';', 1450, + 'E', 1818, + 'a', 1864, + 'e', 1768, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(659); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 651: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1594, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1593, + ';', 1450, + 'E', 1818, + 'e', 1768, 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 652: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1594, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2187, + '(', 1560, + ')', 1467, + ';', 1450, + 'E', 1818, + '_', 1812, + 'a', 1864, + 'e', 1768, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(659); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 653: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'e', 1769, + '#', 2187, + '(', 1560, + ')', 1467, + ';', 1450, + 'E', 1818, + '_', 1812, + 'e', 1768, 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 654: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - '_', 1813, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2187, + '(', 1560, + ')', 1467, + ';', 1450, + 'E', 1818, + 'a', 1864, + 'e', 1768, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(659); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 655: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, + '#', 2187, + '(', 1560, + ')', 1467, + ';', 1450, + 'E', 1818, + 'e', 1768, 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 656: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2187, + '(', 1560, + ')', 1467, + ';', 1450, + 'a', 1864, + 'e', 1776, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(659); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 657: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'a', 1865, - 'e', 1777, + '#', 2187, + '(', 1560, + ')', 1467, + ';', 1450, + 'e', 1776, 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 658: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2187, + ')', 1467, + ';', 1450, + '=', 1728, + 'e', 1755, + 'o', 1756, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); END_STATE(); case 659: - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '#', 2188, - ')', 1468, - ';', 1451, - '=', 1729, - 'e', 1756, - 'o', 1757, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - ); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); - END_STATE(); - case 660: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ')', 1468, - ';', 1451, - 'a', 421, + '#', 2187, + ')', 1467, + ';', 1450, + 'a', 416, 'e', 288, 'o', 289, - 'x', 431, - '|', 1452, - '}', 1499, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); + lookahead == ' ') SKIP(659); END_STATE(); - case 661: + case 660: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 662: + case 661: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); + case 662: + ACCEPT_TOKEN(aux_sym_shebang_token1); + END_STATE(); case 663: ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(662); + if (lookahead == '\r') ADVANCE(664); + if (lookahead == '#') ADVANCE(2188); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(663); + if (lookahead != 0) ADVANCE(664); END_STATE(); case 664: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead == '#') ADVANCE(2189); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(664); - if (lookahead != 0) ADVANCE(665); + if (lookahead == '\n') ADVANCE(662); + if (lookahead == '\r') ADVANCE(664); + if (lookahead != 0) ADVANCE(664); END_STATE(); case 665: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead != 0) ADVANCE(665); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 666: ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(1394); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 667: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1395); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '-') ADVANCE(741); END_STATE(); case 668: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(742); + if (lookahead == '-') ADVANCE(901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 669: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 670: ACCEPT_TOKEN(anon_sym_alias); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 671: ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 672: - ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 673: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1546); + if (lookahead == '~') ADVANCE(1552); END_STATE(); case 674: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == '>') ADVANCE(1499); END_STATE(); case 675: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(1500); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 676: ACCEPT_TOKEN(anon_sym_let); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 677: ACCEPT_TOKEN(anon_sym_let); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 678: - ACCEPT_TOKEN(anon_sym_let); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 679: ACCEPT_TOKEN(anon_sym_mut); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 680: ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 681: - ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 682: ACCEPT_TOKEN(anon_sym_const); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 683: ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 684: - ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 686: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '$') ADVANCE(1616); + if (lookahead == '(') ADVANCE(1590); + if (lookahead == '{') ADVANCE(1705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 690: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '{') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(765); + if (lookahead == '>') ADVANCE(517); + if (lookahead == 'l') ADVANCE(785); + if (lookahead == 'r') ADVANCE(774); + if (lookahead == 'x') ADVANCE(770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 691: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(766); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'r') ADVANCE(775); - if (lookahead == 'x') ADVANCE(771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(520); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 692: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(767); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(744); + if (lookahead == '>') ADVANCE(518); + if (lookahead == 'u') ADVANCE(794); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 693: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(745); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(743); + if (lookahead == '>') ADVANCE(522); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 694: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(744); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '-') ADVANCE(820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1506); + if (lookahead == '_') ADVANCE(717); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1503); + if (lookahead == '_') ADVANCE(717); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1504); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1592); + if (lookahead == '_') ADVANCE(717); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(698); + if (lookahead == '_') ADVANCE(717); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(699); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(716); + if (lookahead == '_') ADVANCE(701); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(717); - if (lookahead == '_') ADVANCE(702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == ':') ADVANCE(549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(519); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(521); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 707: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); - END_STATE(); - case 708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 806, + 'I', 805, '_', 719, - 'i', 806, - 'l', 786, - 'x', 771, + 'i', 805, + 'l', 785, + 'x', 770, '+', 719, '-', 719, - 'B', 1653, - 'b', 1653, + 'B', 1652, + 'b', 1652, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); - case 709: + case 708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); + if (lookahead == 'I') ADVANCE(805); if (lookahead == '_') ADVANCE(719); - if (lookahead == 'i') ADVANCE(726); + if (lookahead == 'i') ADVANCE(725); if (lookahead == '+' || lookahead == '-') ADVANCE(719); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); - case 710: + case 709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 806, - 'a', 796, - 'i', 763, - 'o', 730, - 's', 1658, - 'u', 791, - 'B', 1653, - 'b', 1653, + 'I', 805, + 'a', 795, + 'i', 762, + 'o', 729, + 's', 1657, + 'u', 790, + 'B', 1652, + 'b', 1652, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + END_STATE(); + case 710: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'I') ADVANCE(805); + if (lookahead == 'i') ADVANCE(805); + if (lookahead == 'l') ADVANCE(785); + if (lookahead == 'x') ADVANCE(770); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'x') ADVANCE(771); + if (lookahead == 'I') ADVANCE(805); + if (lookahead == 'i') ADVANCE(805); + if (lookahead == 'r') ADVANCE(798); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'r') ADVANCE(799); + if (lookahead == 'I') ADVANCE(805); + if (lookahead == 'i') ADVANCE(805); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); + if (lookahead == 'I') ADVANCE(805); + if (lookahead == 'i') ADVANCE(725); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(726); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N') ADVANCE(806); + if (lookahead == 'f') ADVANCE(1067); + if (lookahead == 'n') ADVANCE(1083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(807); - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(716); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(719); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(788); + if (lookahead == 'o') ADVANCE(763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'o') ADVANCE(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(802); + if (lookahead == 'e') ADVANCE(745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(803); - if (lookahead == 'e') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(759); + if (lookahead == 'o') ADVANCE(772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'o') ADVANCE(773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(780); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(781); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(795); + if (lookahead == 'o') ADVANCE(729); + if (lookahead == 'u') ADVANCE(790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(796); - if (lookahead == 'o') ADVANCE(730); - if (lookahead == 'u') ADVANCE(791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'c') ADVANCE(748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'd') ADVANCE(800); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1070); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1088); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(789); + if (lookahead == 'o') ADVANCE(764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(790); - if (lookahead == 'o') ADVANCE(765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(777); + if (lookahead == 'i') ADVANCE(756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(778); - if (lookahead == 'i') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(778); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'f') ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(1076); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(1079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(752); + if (lookahead == 'k') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(753); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'i') ADVANCE(723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'i') ADVANCE(756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(1094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(736); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'l') ADVANCE(737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(785); + if (lookahead == 'x') ADVANCE(770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'x') ADVANCE(771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(787); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(1052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1053); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(1657); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(776); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(791); + if (lookahead == 'u') ADVANCE(755); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(792); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'p') ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'p') ADVANCE(767); + if (lookahead == 't') ADVANCE(742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(768); - if (lookahead == 't') ADVANCE(743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(798); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(1058); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1059); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(793); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1657); + if (lookahead == 'u') ADVANCE(755); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 's') ADVANCE(732); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(793); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(727); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(679); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(694); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(755); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(733); + if (lookahead == 'y') ADVANCE(1073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(734); - if (lookahead == 'y') ADVANCE(1074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(796); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'v') ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'y') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '{') ADVANCE(1705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '{') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1099); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(806); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + lookahead == 'n') ADVANCE(1108); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + lookahead == 'n') ADVANCE(807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(808); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1097); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(702); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 822: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); - END_STATE(); - case 823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); - case 824: + case 823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + END_STATE(); + case 824: + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 825: ACCEPT_TOKEN(anon_sym_def); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 826: ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 827: - ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '+') ADVANCE(899); + if (lookahead == '>') ADVANCE(1738); + if (lookahead == 'r') ADVANCE(1531); + if (lookahead == 'u') ADVANCE(992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(900); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1532); - if (lookahead == 'u') ADVANCE(993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(944); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'n') ADVANCE(888); + if (lookahead == 'r') ADVANCE(959); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(945); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(889); - if (lookahead == 'r') ADVANCE(960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(900); + if (lookahead == '>') ADVANCE(1734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(901); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(946); + if (lookahead == '>') ADVANCE(1732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(947); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(902); + if (lookahead == '>') ADVANCE(518); + if (lookahead == 'r') ADVANCE(1531); + if (lookahead == 'u') ADVANCE(998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(903); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1532); - if (lookahead == 'u') ADVANCE(999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(952); + if (lookahead == '>') ADVANCE(517); + if (lookahead == 'n') ADVANCE(888); + if (lookahead == 'r') ADVANCE(965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(953); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(889); - if (lookahead == 'r') ADVANCE(966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(954); + if (lookahead == '>') ADVANCE(520); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(955); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(905); + if (lookahead == '>') ADVANCE(522); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(906); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1035); + if (lookahead == '_') ADVANCE(865); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1036); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(879); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1484); + if (lookahead == '.') ADVANCE(865); + if (lookahead == '_') ADVANCE(847); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1024); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1485); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1038); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '-') ADVANCE(1017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1043); + if (lookahead == '_') ADVANCE(865); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1044); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(865); + if (lookahead == '_') ADVANCE(847); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1024); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(865); + if (lookahead == '_') ADVANCE(847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(1507); + if (lookahead == '_') ADVANCE(865); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(1508); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == ':') ADVANCE(549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == ':') ADVANCE(2068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(2069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '=') ADVANCE(1547); + if (lookahead == '~') ADVANCE(1554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(519); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(521); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N') ADVANCE(1020); + if (lookahead == 'f') ADVANCE(1069); + if (lookahead == 'n') ADVANCE(1084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N') ADVANCE(1021); - if (lookahead == 'f') ADVANCE(1070); - if (lookahead == 'n') ADVANCE(1085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'T') ADVANCE(1038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'T') ADVANCE(1039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(865); + if (lookahead == 'b') ADVANCE(1651); + if (lookahead == 'o') ADVANCE(1661); + if (lookahead == 'x') ADVANCE(1663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'o') ADVANCE(1662); - if (lookahead == 'x') ADVANCE(1664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(865); + if (lookahead == 'b') ADVANCE(1651); + if (lookahead == 'o') ADVANCE(1661); + if (lookahead == 'x') ADVANCE(1663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'o') ADVANCE(1662); - if (lookahead == 'x') ADVANCE(1664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(865); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(865); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(865); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); + if (lookahead == '_') ADVANCE(865); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(865); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(865); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); + if (lookahead == '_') ADVANCE(865); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(927); + if (lookahead == 'o') ADVANCE(964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(928); - if (lookahead == 'o') ADVANCE(965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'a') ADVANCE(976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(986); + if (lookahead == 'o') ADVANCE(941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(987); - if (lookahead == 'o') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(940); + if (lookahead == 'o') ADVANCE(961); + if (lookahead == 's') ADVANCE(908); + if (lookahead == 'x') ADVANCE(953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(941); - if (lookahead == 'o') ADVANCE(962); - if (lookahead == 's') ADVANCE(909); - if (lookahead == 'x') ADVANCE(954); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(1002); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'u') ADVANCE(988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(1003); - if (lookahead == 'o') ADVANCE(888); - if (lookahead == 'u') ADVANCE(989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'c') ADVANCE(913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'c') ADVANCE(914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1585); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(983); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1090); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1556); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(987); + if (lookahead == 'o') ADVANCE(945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(988); - if (lookahead == 'o') ADVANCE(946); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(942); + if (lookahead == 'h') ADVANCE(876); + if (lookahead == 'i') ADVANCE(937); + if (lookahead == 'l') ADVANCE(923); + if (lookahead == 's') ADVANCE(1006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(943); - if (lookahead == 'h') ADVANCE(877); - if (lookahead == 'i') ADVANCE(938); - if (lookahead == 'l') ADVANCE(924); - if (lookahead == 's') ADVANCE(1007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'f') ADVANCE(826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'f') ADVANCE(827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1543); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1539); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1545); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'i') ADVANCE(1000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(877); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'k') ADVANCE(892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'k') ADVANCE(893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(1096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(1581); + if (lookahead == 'r') ADVANCE(1583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1582); - if (lookahead == 'r') ADVANCE(1584); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'l') ADVANCE(898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(980); + if (lookahead == 'x') ADVANCE(957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(981); - if (lookahead == 'x') ADVANCE(958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(985); + if (lookahead == 'u') ADVANCE(930); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(986); - if (lookahead == 'u') ADVANCE(931); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(956); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(885); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'p') ADVANCE(1063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'p') ADVANCE(955); + if (lookahead == 't') ADVANCE(903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(956); - if (lookahead == 't') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1589); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1590); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1587); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(967); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(1535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(1537); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(891); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 's') ADVANCE(896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 's') ADVANCE(844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(1030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 't') ADVANCE(912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(890); + if (lookahead == 'y') ADVANCE(1075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(891); - if (lookahead == 'y') ADVANCE(1076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(930); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(931); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(1002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'v') ADVANCE(1051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'v') ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'x') ADVANCE(1003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'x') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == 'i') ADVANCE(1025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == 'n') ADVANCE(1020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1026: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); - END_STATE(); - case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == 't') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); - case 1028: + case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == 'y') ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); - case 1029: + case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '_') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); - case 1030: + case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1030); + lookahead == '@') ADVANCE(1045); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1029); END_STATE(); - case 1031: + case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == ' ') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); - case 1032: + case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '_') ADVANCE(1031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + END_STATE(); + case 1032: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1044: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); - END_STATE(); - case 1045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); - case 1046: + case 1045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + END_STATE(); + case 1046: + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 1047: ACCEPT_TOKEN(anon_sym_use); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1048: ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1049: - ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_export_DASHenv); END_STATE(); case 1050: ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1051: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1052: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 1053: ACCEPT_TOKEN(anon_sym_extern); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1054: ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1055: - ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 1056: ACCEPT_TOKEN(anon_sym_module); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1057: ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1058: - ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 1059: ACCEPT_TOKEN(anon_sym_for); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1060: ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1061: - ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 1062: ACCEPT_TOKEN(anon_sym_loop); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1063: ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1064: - ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 1065: ACCEPT_TOKEN(anon_sym_while); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1066: ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1067: - ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 1068: ACCEPT_TOKEN(anon_sym_if); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1069: ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1070: - ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 1071: ACCEPT_TOKEN(anon_sym_else); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1072: ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1073: - ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 1074: ACCEPT_TOKEN(anon_sym_try); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1075: ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1076: - ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 1077: ACCEPT_TOKEN(anon_sym_catch); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1078: ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1079: - ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 1080: ACCEPT_TOKEN(anon_sym_match); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1081: ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1082: - ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 1083: ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1098); END_STATE(); case 1084: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1099); + lookahead == 'f') ADVANCE(1022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1085: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == 'f') ADVANCE(1440); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1086: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1087: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1088: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 1089: ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1090: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1091: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 1092: ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1093: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1094: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 1095: ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1096: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1097: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); END_STATE(); case 1098: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(810); END_STATE(); case 1099: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(811); + lookahead == 'i') ADVANCE(2051); END_STATE(); case 1100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2052); + lookahead == 'i') ADVANCE(2106); END_STATE(); case 1101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2107); + lookahead == 'i') ADVANCE(2160); END_STATE(); case 1102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2161); + lookahead == 'i') ADVANCE(537); END_STATE(); case 1103: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(543); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); END_STATE(); case 1104: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(535); END_STATE(); case 1105: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(541); + lookahead == 'i') ADVANCE(1930); END_STATE(); case 1106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1931); + lookahead == 'i') ADVANCE(2108); END_STATE(); case 1107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2109); + lookahead == 'i') ADVANCE(2162); END_STATE(); case 1108: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2163); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); END_STATE(); case 1109: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 1110: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 1111: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(1109); END_STATE(); case 1112: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1110); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(1115); END_STATE(); case 1113: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1116); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1114: - ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 1115: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 1116: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1110); END_STATE(); case 1117: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1111); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 1118: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); case 1119: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); case 1120: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 1121: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 1122: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_like); END_STATE(); case 1123: - ACCEPT_TOKEN(anon_sym_like); + ACCEPT_TOKEN(anon_sym_not_DASHlike); END_STATE(); case 1124: - ACCEPT_TOKEN(anon_sym_not_DASHlike); + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); case 1125: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); case 1126: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); case 1127: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 1128: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 1129: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 1130: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_in2); END_STATE(); case 1131: - ACCEPT_TOKEN(anon_sym_in2); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 1132: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(anon_sym_has); END_STATE(); case 1133: - ACCEPT_TOKEN(anon_sym_has); + ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); case 1134: - ACCEPT_TOKEN(anon_sym_not_DASHhas); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 1135: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); END_STATE(); case 1136: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 1137: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); END_STATE(); case 1138: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 1139: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 1140: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 1141: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1142); END_STATE(); case 1142: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1143); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 1143: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1144); END_STATE(); case 1144: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1145); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 1145: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1221, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1192, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1221, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1195, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1193, 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, + 'i', 1267, + 'l', 1255, + 'm', 1275, 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'o', 1190, + 's', 1301, + 'x', 1274, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1196, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1198, + 's', 1301, + 'x', 1274, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ':', 1712, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ':', 1712, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ':', 1712, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1221, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1192, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1221, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1192, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1221, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1195, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(28); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1221, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1192, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1221, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1195, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ':', 1712, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1193, 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, + 'i', 1267, + 'l', 1255, + 'm', 1275, 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'o', 1190, + 's', 1301, + 'x', 1274, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, - '}', 1499, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1196, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1198, + 's', 1301, + 'x', 1274, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, - '}', 1499, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1193, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1190, + 's', 1301, + 'x', 1274, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1196, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1198, + 's', 1301, + 'x', 1274, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1593, + '/', 1112, + ':', 1712, + '<', 1141, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1217, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1281, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(266); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1594, - '/', 1113, - ':', 1713, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1593, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1217, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1281, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(272); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1594, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ':', 1712, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1217, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1281, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(266); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ':', 1712, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1217, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1281, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + 0xb5, 1293, ); if (lookahead == '\t' || lookahead == ' ') SKIP(266); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ':', 1712, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1221, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1219, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1281, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + 0xb5, 1293, ); if (lookahead == '\t' || lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1220, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1217, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1281, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1217, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1281, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + 0xb5, 1293, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1221, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1219, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1281, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + 0xb5, 1293, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1220, - 'g', 1221, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1269, 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, + 'i', 1267, + 'l', 1255, + 'm', 1275, 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + 'o', 1281, + 's', 1301, + 'x', 1274, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1270, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1282, - 's', 1302, - 'x', 1275, - ); + if (lookahead == '#') ADVANCE(2187); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1189: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); - END_STATE(); - case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( '+', 1224, '-', 1226, - '>', 1737, - 'I', 1322, + '>', 1736, + 'I', 1321, '_', 1226, - 'i', 1322, - 'n', 1240, - 'r', 1283, - 'B', 1653, - 'b', 1653, + 'i', 1321, + 'n', 1239, + 'r', 1282, + 'B', 1652, + 'b', 1652, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + END_STATE(); + case 1190: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == '+') ADVANCE(1244); + if (lookahead == '>') ADVANCE(1738); + if (lookahead == 'r') ADVANCE(1129); + if (lookahead == 'u') ADVANCE(1303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1245); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1130); - if (lookahead == 'u') ADVANCE(1304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1273); + if (lookahead == '>') ADVANCE(1732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1274); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '+', 1272, + '>', 1736, + 'I', 1321, + 'i', 1321, + 'n', 1239, + 'r', 1282, + 'B', 1652, + 'b', 1652, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1273, - '>', 1737, - 'I', 1322, - 'i', 1322, - 'n', 1240, - 'r', 1283, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1272); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'n') ADVANCE(1239); + if (lookahead == 'r') ADVANCE(1282); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1273); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1245); + if (lookahead == '>') ADVANCE(1734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1195: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1246); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); - END_STATE(); - case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1277, - '>', 523, - 'I', 1322, - 'i', 1322, - 'n', 1240, - 'r', 1288, - 'B', 1653, - 'b', 1653, + '+', 1276, + '>', 517, + 'I', 1321, + 'i', 1321, + 'n', 1239, + 'r', 1287, + 'B', 1652, + 'b', 1652, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); - case 1197: + case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1277); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1288); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1276); + if (lookahead == '>') ADVANCE(517); + if (lookahead == 'n') ADVANCE(1239); + if (lookahead == 'r') ADVANCE(1287); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); - case 1198: + case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( '+', 1225, '-', 1226, - '>', 523, - 'I', 1322, + '>', 517, + 'I', 1321, '_', 1226, - 'i', 1322, - 'n', 1240, - 'r', 1288, - 'B', 1653, - 'b', 1653, + 'i', 1321, + 'n', 1239, + 'r', 1287, + 'B', 1652, + 'b', 1652, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + END_STATE(); + case 1198: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == '+') ADVANCE(1246); + if (lookahead == '>') ADVANCE(518); + if (lookahead == 'r') ADVANCE(1129); + if (lookahead == 'u') ADVANCE(1307); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1247); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1130); - if (lookahead == 'u') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1280); + if (lookahead == '>') ADVANCE(520); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1281); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1247); + if (lookahead == '>') ADVANCE(522); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1248); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '.') ADVANCE(1592); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '=') ADVANCE(1139); + if (lookahead == '~') ADVANCE(1121); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '=') ADVANCE(1140); - if (lookahead == '~') ADVANCE(1122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(519); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(521); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1217: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); - END_STATE(); - case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - 'I', 1322, + 'I', 1321, '_', 1226, - 'i', 1322, - 'n', 1240, + 'i', 1321, + 'n', 1239, '+', 1226, '-', 1226, - 'B', 1653, - 'b', 1653, + 'B', 1652, + 'b', 1652, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); - case 1219: + case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); + if (lookahead == 'I') ADVANCE(1321); if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'i') ADVANCE(1235); + if (lookahead == 'i') ADVANCE(1234); if (lookahead == '+' || lookahead == '-') ADVANCE(1226); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + END_STATE(); + case 1219: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'I') ADVANCE(1321); + if (lookahead == 'i') ADVANCE(1321); + if (lookahead == 'n') ADVANCE(1239); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1322); - if (lookahead == 'n') ADVANCE(1240); + if (lookahead == 'I') ADVANCE(1321); + if (lookahead == 'i') ADVANCE(1321); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1322); + if (lookahead == 'I') ADVANCE(1321); + if (lookahead == 'i') ADVANCE(1234); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1235); + if (lookahead == 'I') ADVANCE(1321); + if (lookahead == 'i') ADVANCE(1266); + if (lookahead == 'o') ADVANCE(1237); + if (lookahead == 's') ADVANCE(1657); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1267); - if (lookahead == 'o') ADVANCE(1238); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1210); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1214); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1213); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '_') ADVANCE(1226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1227); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1294); + if (lookahead == 'r') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1295); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1294); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1295); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1286); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1287); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1296); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1270); + if (lookahead == 'o') ADVANCE(1284); + if (lookahead == 's') ADVANCE(1249); + if (lookahead == 'x') ADVANCE(1277); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1271); - if (lookahead == 'o') ADVANCE(1285); - if (lookahead == 's') ADVANCE(1250); - if (lookahead == 'x') ADVANCE(1278); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'c') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1114); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1124); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1125); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1296); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1298); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1235); + if (lookahead == 't') ADVANCE(1230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1236); - if (lookahead == 't') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'e') ADVANCE(1123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1124); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1210); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1289); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1290); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1214); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1291); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1271); + if (lookahead == 'h') ADVANCE(1231); + if (lookahead == 'i') ADVANCE(1268); + if (lookahead == 'l') ADVANCE(1260); + if (lookahead == 's') ADVANCE(1313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1272); - if (lookahead == 'h') ADVANCE(1232); - if (lookahead == 'i') ADVANCE(1269); - if (lookahead == 'l') ADVANCE(1261); - if (lookahead == 's') ADVANCE(1314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1264); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1136); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1137); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1135); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1135); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'i') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'k') ADVANCE(1243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'l') ADVANCE(1118); + if (lookahead == 'r') ADVANCE(1119); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'l') ADVANCE(1119); - if (lookahead == 'r') ADVANCE(1120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1657); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1130); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'n') ADVANCE(1131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1209); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1283); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1284); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1213); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1285); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1286); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1302); + if (lookahead == 's') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1303); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1303); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1192); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1312); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1199); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1200); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1212); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1288); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1289); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1291); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1216); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1133); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1205); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1206); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1201); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1202); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1202); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1203); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1194); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1211); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1200); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1252); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 't') ADVANCE(1253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1215); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1216); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1298); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'u') ADVANCE(1305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'u') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'w') ADVANCE(1256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'y') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(618); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(619); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1221, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1192, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1221, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1195, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(619); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(619); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1193, 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, + 'i', 1267, + 'l', 1255, + 'm', 1275, 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'o', 1190, + 's', 1301, + 'x', 1274, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1448, + '\n', 1447, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ';', 1450, + '<', 1141, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1196, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1198, + 's', 1301, + 'x', 1274, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(619); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1333: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(1345); + if (lookahead == '-') ADVANCE(1973); + if (lookahead == 'I') ADVANCE(1371); + if (lookahead == '_') ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1371); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1334: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == '_') ADVANCE(1346); - if (lookahead == 'i') ADVANCE(1372); + if (lookahead == '+') ADVANCE(1345); + if (lookahead == '-') ADVANCE(1973); + if (lookahead == 'I') ADVANCE(1371); + if (lookahead == '_') ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1348); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1335: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == '_') ADVANCE(1346); - if (lookahead == 'i') ADVANCE(1349); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '+') ADVANCE(1345); + if (lookahead == '-') ADVANCE(1973); + if (lookahead == '_') ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1336: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(443); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1337: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(448); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(356); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1338: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(360); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(427); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1339: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(432); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(444); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1340: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(449); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(511); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1341: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(517); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'I') ADVANCE(1371); + if (lookahead == 'i') ADVANCE(1371); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1342: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1372); + if (lookahead == 'I') ADVANCE(1371); + if (lookahead == 'i') ADVANCE(1348); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1343: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1349); + if (lookahead == 'I') ADVANCE(1371); + if (lookahead == 'i') ADVANCE(1359); + if (lookahead == 's') ADVANCE(1659); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1344: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1360); - if (lookahead == 's') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '_') ADVANCE(1344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1345: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(1345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1346: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'a') ADVANCE(1366); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1347: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1367); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'a') ADVANCE(1370); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1348: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1371); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1349: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'c') ADVANCE(1659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1350: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'e') ADVANCE(1354); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1351: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1355); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'e') ADVANCE(1338); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1352: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'e') ADVANCE(1349); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1353: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1350); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'k') ADVANCE(1659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1354: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1355); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1355: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1356); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1336); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1356: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(1337); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1338); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1356); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1357); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'm') ADVANCE(1363); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1364); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'n') ADVANCE(1659); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'n') ADVANCE(1086); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1087); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'n') ADVANCE(1351); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1352); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'o') ADVANCE(1364); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1365); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'p') ADVANCE(1362); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1363); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'r') ADVANCE(1368); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1369); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'r') ADVANCE(1659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'r') ADVANCE(1340); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1341); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 's') ADVANCE(1659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 't') ADVANCE(1339); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'u') ADVANCE(1357); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1358); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'y') ADVANCE(1659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1373: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(517); + if (lookahead == 'r') ADVANCE(1418); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1374: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1419); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(375); + if (lookahead == '>') ADVANCE(518); + if (lookahead == 'u') ADVANCE(1431); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1375: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1432); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(438); + if (lookahead == '>') ADVANCE(520); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1376: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(379); + if (lookahead == '>') ADVANCE(522); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1377: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N') ADVANCE(1438); + if (lookahead == 'f') ADVANCE(1068); + if (lookahead == 'n') ADVANCE(1085); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1378: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(1439); - if (lookahead == 'f') ADVANCE(1069); - if (lookahead == 'n') ADVANCE(1086); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '_') ADVANCE(1378); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1378); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1379: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1379); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1426); + if (lookahead == 'o') ADVANCE(1411); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1380: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1427); - if (lookahead == 'o') ADVANCE(1412); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1408); + if (lookahead == 'o') ADVANCE(1417); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1381: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1409); - if (lookahead == 'o') ADVANCE(1418); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1421); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1382: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1422); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1432); + if (lookahead == 'o') ADVANCE(1385); + if (lookahead == 'u') ADVANCE(1428); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1383: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1433); - if (lookahead == 'o') ADVANCE(1386); - if (lookahead == 'u') ADVANCE(1429); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'c') ADVANCE(1397); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1384: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'c') ADVANCE(1398); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1385: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1399); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'd') ADVANCE(1435); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1386: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1436); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1396); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1387: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1397); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1047); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1388: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1048); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1071); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1389: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1072); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1089); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1390: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1090); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1092); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1391: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1093); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1065); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1392: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1066); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1056); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1393: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1057); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1427); + if (lookahead == 'o') ADVANCE(1412); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1394: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1428); - if (lookahead == 'o') ADVANCE(1413); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1410); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1395: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1411); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1419); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1396: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1420); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'f') ADVANCE(825); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1397: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(826); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1077); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1398: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1078); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1080); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1399: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1081); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1401); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1400: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1402); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1381); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1401: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1382); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1405); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1402: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1406); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1400); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1403: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1401); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1095); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1404: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1096); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1403); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1405: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1404); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1391); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1406: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'l') ADVANCE(1392); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1407: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1393); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1423); + if (lookahead == 'x') ADVANCE(1415); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1408: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1424); - if (lookahead == 'x') ADVANCE(1416); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1425); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1426); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1053); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1410: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1054); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1436); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1437); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1424); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1412: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1425); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'o') ADVANCE(1414); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1413: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1415); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'o') ADVANCE(1420); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1421); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'p') ADVANCE(1062); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1415: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1063); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'p') ADVANCE(1413); + if (lookahead == 't') ADVANCE(1395); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1416: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1414); - if (lookahead == 't') ADVANCE(1396); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1434); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1417: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1435); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1059); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1418: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1060); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1375); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1419: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1376); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1409); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1410); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1430); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1431); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(670); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(671); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1387); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1423: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 's') ADVANCE(1388); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1389); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1429); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1430); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1390); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1426: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1391); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1383); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1384); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(676); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(677); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(679); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(680); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(682); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(683); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(666); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(667); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1376); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1377); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1384); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1385); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'u') ADVANCE(1404); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1441); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1405); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'u') ADVANCE(1389); + if (lookahead == 'y') ADVANCE(1074); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1390); - if (lookahead == 'y') ADVANCE(1075); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'u') ADVANCE(1406); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1407); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'v') ADVANCE(1050); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1051); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1441); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1440); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1444); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1440: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1445); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + lookahead == 'i') ADVANCE(1443); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1444); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1442: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + lookahead == 'n') ADVANCE(1438); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1443: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1439); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1440); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1445); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1445: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1446); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1447: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 1448: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(1712); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1448); END_STATE(); case 1449: ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(1713); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1449); END_STATE(); case 1450: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 1451: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 1452: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 1453: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 1454: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 1455: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 1456: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 1457: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 1458: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 1459: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 1460: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(sym_attribute_identifier); + if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1460); END_STATE(); case 1461: - ACCEPT_TOKEN(sym_attribute_identifier); - if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1461); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 1462: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 1463: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 1464: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 1465: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 1466: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 1467: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 1468: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 1469: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 1470: ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1701); + if (lookahead == '\'') ADVANCE(1700); END_STATE(); case 1471: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + if (lookahead == '"') ADVANCE(1701); + if (lookahead == '\'') ADVANCE(1700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1472: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1473: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 1474: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 1475: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 1476: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 1477: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 1478: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); case 1479: ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(1551); END_STATE(); case 1480: - ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(1552); + ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_AT2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 1482: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 1483: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 1484: ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1485: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); case 1486: ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1483); END_STATE(); case 1487: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); + if (lookahead == '-') ADVANCE(1483); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(309); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 1488: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '-') ADVANCE(1483); + if (lookahead == '.') ADVANCE(1970); + if (lookahead == '_') ADVANCE(1960); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); END_STATE(); case 1489: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(1971); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '-') ADVANCE(1483); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); END_STATE(); case 1490: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(309); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 1491: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); + if (lookahead == '.') ADVANCE(865); + if (lookahead == '_') ADVANCE(847); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + lookahead == 'i') ADVANCE(1024); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1492: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(1813); + if (lookahead == '_') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); END_STATE(); case 1493: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); END_STATE(); case 1494: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '=') ADVANCE(685); END_STATE(); case 1495: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1496: - ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 1497: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 1498: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 1499: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 1500: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(2011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1501: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1502: - ACCEPT_TOKEN(anon_sym__); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 1503: ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(689); + if (lookahead == '<') ADVANCE(1605); + if (lookahead == '=') ADVANCE(1604); END_STATE(); case 1504: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(690); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + if (lookahead == '.') ADVANCE(1987); + if (lookahead == '<') ADVANCE(1605); + if (lookahead == '=') ADVANCE(1604); END_STATE(); case 1505: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1988); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + if (lookahead == '.') ADVANCE(2077); + if (lookahead == '<') ADVANCE(1605); + if (lookahead == '=') ADVANCE(1604); END_STATE(); case 1506: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2078); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + if (lookahead == '<') ADVANCE(1605); + if (lookahead == '=') ADVANCE(1604); END_STATE(); case 1507: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + if (lookahead == '<') ADVANCE(1605); + if (lookahead == '=') ADVANCE(1604); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1045); END_STATE(); case 1508: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 1509: ACCEPT_TOKEN(anon_sym_DOLLAR2); + if (lookahead == '"') ADVANCE(1701); + if (lookahead == '\'') ADVANCE(1700); END_STATE(); case 1510: - ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); case 1511: ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1561); END_STATE(); case 1512: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1562); + if (lookahead == '*') ADVANCE(1561); + if (lookahead == '=') ADVANCE(686); END_STATE(); case 1513: ACCEPT_TOKEN(anon_sym_STAR2); if (lookahead == '*') ADVANCE(1562); - if (lookahead == '=') ADVANCE(687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1514: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1563); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'a') ADVANCE(1517); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); case 1515: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'a') ADVANCE(1518); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'e') ADVANCE(1088); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); case 1516: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'e') ADVANCE(1091); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); case 1517: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'l') ADVANCE(1520); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); case 1518: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'l') ADVANCE(1521); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'o') ADVANCE(1521); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); case 1519: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'o') ADVANCE(1522); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'r') ADVANCE(1522); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); case 1520: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'r') ADVANCE(1523); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 's') ADVANCE(1516); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); case 1521: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 's') ADVANCE(1517); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 't') ADVANCE(1523); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); case 1522: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 't') ADVANCE(1524); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'u') ADVANCE(1515); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); case 1523: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'u') ADVANCE(1516); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1559); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); case 1524: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); case 1525: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 1526: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_and2); END_STATE(); case 1527: ACCEPT_TOKEN(anon_sym_and2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1528: - ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); case 1529: ACCEPT_TOKEN(anon_sym_xor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1530: - ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_or2); END_STATE(); case 1531: ACCEPT_TOKEN(anon_sym_or2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1532: - ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); case 1533: ACCEPT_TOKEN(anon_sym_not_DASHin2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1534: - ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_has2); END_STATE(); case 1535: ACCEPT_TOKEN(anon_sym_has2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1536: - ACCEPT_TOKEN(anon_sym_has2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); END_STATE(); case 1537: ACCEPT_TOKEN(anon_sym_not_DASHhas2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1538: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); case 1539: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1540: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); END_STATE(); case 1541: ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1542: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); case 1543: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1544: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); END_STATE(); case 1545: ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1546: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); case 1547: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); case 1548: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 1549: ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(1550); END_STATE(); case 1550: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1551); + ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); case 1551: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); case 1552: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); case 1553: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); case 1554: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1555: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_like2); END_STATE(); case 1556: ACCEPT_TOKEN(anon_sym_like2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1557: - ACCEPT_TOKEN(anon_sym_like2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); END_STATE(); case 1558: ACCEPT_TOKEN(anon_sym_not_DASHlike2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1559: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 1560: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 1561: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); case 1562: ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1563: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 1564: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if (lookahead == '=') ADVANCE(688); END_STATE(); case 1565: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1566: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1572); END_STATE(); case 1567: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1573); + if (lookahead == '/') ADVANCE(1572); + if (lookahead == '=') ADVANCE(687); END_STATE(); case 1568: ACCEPT_TOKEN(anon_sym_SLASH2); if (lookahead == '/') ADVANCE(1573); - if (lookahead == '=') ADVANCE(688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1569: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1570: - ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); case 1571: ACCEPT_TOKEN(anon_sym_mod2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1572: - ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); case 1573: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1574: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1563); END_STATE(); case 1575: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); + if (lookahead == '+') ADVANCE(1563); + if (lookahead == '.') ADVANCE(1813); + if (lookahead == '_') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); END_STATE(); case 1576: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '+') ADVANCE(1563); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); END_STATE(); case 1577: ACCEPT_TOKEN(anon_sym_PLUS2); if (lookahead == '+') ADVANCE(1564); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '=') ADVANCE(684); END_STATE(); case 1578: ACCEPT_TOKEN(anon_sym_PLUS2); if (lookahead == '+') ADVANCE(1565); - if (lookahead == '=') ADVANCE(685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1579: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(716); + if (lookahead == '_') ADVANCE(701); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 1580: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(717); - if (lookahead == '_') ADVANCE(702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); case 1581: ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1582: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); case 1583: ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1584: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); case 1585: ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1586: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); case 1587: ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1588: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); case 1589: ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1590: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 1591: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1481); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1606); END_STATE(); case 1592: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1482); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1606); END_STATE(); case 1593: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 1594: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1592); END_STATE(); case 1595: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1593); + if (lookahead == '.') ADVANCE(1592); + if (lookahead == '_') ADVANCE(717); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); END_STATE(); case 1596: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '.') ADVANCE(1502); END_STATE(); case 1597: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1503); + if (lookahead == '.') ADVANCE(1502); + if (lookahead == '_') ADVANCE(1944); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 1598: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1503); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1963); END_STATE(); case 1599: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1592); + if (lookahead == '.') ADVANCE(1963); + if (lookahead == '_') ADVANCE(1971); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 1600: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1962); + if (lookahead == '.') ADVANCE(1591); END_STATE(); case 1601: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '_') ADVANCE(1971); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 1602: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '_') ADVANCE(1944); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 1603: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '_') ADVANCE(1814); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 1604: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 1605: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 1606: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 1607: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 1608: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1608); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); case 1609: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1609); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1610: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(1610); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); END_STATE(); case 1611: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(1611); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 1612: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(1612); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); END_STATE(); case 1613: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); if (lookahead == '_') ADVANCE(1613); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); END_STATE(); @@ -29090,2133 +29410,2128 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); if (lookahead == '_') ADVANCE(1614); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1615: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(1615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 1616: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 1617: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(819); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1618: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(820); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '-') ADVANCE(2063); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1619: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2064); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '-') ADVANCE(2117); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1620: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2118); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '-') ADVANCE(2169); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1621: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2170); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '-') ADVANCE(553); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1622: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(559); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(1643); + if (lookahead == 'b') ADVANCE(1650); + if (lookahead == 'o') ADVANCE(1660); + if (lookahead == 'x') ADVANCE(1662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1629); END_STATE(); case 1623: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); + if (lookahead == '_') ADVANCE(1643); + if (lookahead == 'b') ADVANCE(1650); + if (lookahead == 'o') ADVANCE(1660); + if (lookahead == 'x') ADVANCE(1662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); END_STATE(); case 1624: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if (lookahead == '_') ADVANCE(1643); + if (lookahead == 'b') ADVANCE(1650); + if (lookahead == 'o') ADVANCE(1660); + if (lookahead == 'x') ADVANCE(1662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1625: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '_') ADVANCE(1643); + if (lookahead == 'b') ADVANCE(1650); + if (lookahead == 'o') ADVANCE(1660); + if (lookahead == 'x') ADVANCE(1662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1626: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (lookahead == '_') ADVANCE(1643); + if (lookahead == 'b') ADVANCE(1650); + if (lookahead == 'o') ADVANCE(1660); + if (lookahead == 'x') ADVANCE(1662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); END_STATE(); case 1627: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead == '_') ADVANCE(1643); + if (lookahead == 'b') ADVANCE(813); + if (lookahead == 'o') ADVANCE(815); + if (lookahead == 'x') ADVANCE(822); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1628: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(814); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'x') ADVANCE(823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); case 1629: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1628); END_STATE(); case 1630: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1629); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); END_STATE(); case 1631: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); END_STATE(); case 1632: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); END_STATE(); case 1633: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1620); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); END_STATE(); case 1634: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1621); END_STATE(); case 1635: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1622); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1636: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1620); END_STATE(); case 1637: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1621); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); END_STATE(); case 1638: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1629); END_STATE(); case 1639: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); END_STATE(); case 1640: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1641: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1642: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); END_STATE(); case 1643: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1644: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); if (lookahead == '_') ADVANCE(1644); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 1645: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(1645); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); END_STATE(); case 1646: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); if (lookahead == '_') ADVANCE(1646); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); END_STATE(); case 1647: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - END_STATE(); - case 1648: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1647); END_STATE(); - case 1649: + case 1648: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1649); + lookahead == '_') ADVANCE(1648); END_STATE(); - case 1650: + case 1649: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); + lookahead == '_') ADVANCE(1649); END_STATE(); - case 1651: + case 1650: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1649); + lookahead == '_') ADVANCE(1648); END_STATE(); - case 1652: + case 1651: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '_') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + END_STATE(); + case 1652: + ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); case 1653: ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'i') ADVANCE(1300); END_STATE(); case 1654: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1301); + if (lookahead == 'i') ADVANCE(475); END_STATE(); case 1655: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'i') ADVANCE(1897); END_STATE(); case 1656: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1898); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1657: - ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(sym_duration_unit); END_STATE(); case 1658: ACCEPT_TOKEN(sym_duration_unit); + if (lookahead == 'e') ADVANCE(1046); END_STATE(); case 1659: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1047); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1660: - ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); - END_STATE(); - case 1661: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); + lookahead == '_') ADVANCE(1649); END_STATE(); - case 1662: + case 1661: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '_') ADVANCE(1031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); - case 1663: + case 1662: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1647); END_STATE(); - case 1664: + case 1663: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); - case 1665: + case 1664: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 1666: + case 1665: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1666); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1665); + END_STATE(); + case 1666: + ACCEPT_TOKEN(sym_val_date); END_STATE(); case 1667: ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(547); + if (lookahead == '+' || + lookahead == '-') ADVANCE(315); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1666); END_STATE(); case 1668: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(553); + if (lookahead == '.') ADVANCE(2061); if (lookahead == '+' || - lookahead == '-') ADVANCE(315); + lookahead == '-') ADVANCE(2000); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1666); END_STATE(); case 1669: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2062); + if (lookahead == '.') ADVANCE(2120); if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); + lookahead == '-') ADVANCE(2083); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1666); END_STATE(); case 1670: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2121); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2084); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + if (lookahead == ':') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(546); END_STATE(); case 1671: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(1682); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2056); END_STATE(); case 1672: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(1683); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2114); END_STATE(); case 1673: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1684); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2115); + if (lookahead == 'T') ADVANCE(821); END_STATE(); case 1674: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(822); + if (lookahead == 'T') ADVANCE(2065); END_STATE(); case 1675: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2066); + if (lookahead == 'T') ADVANCE(2123); END_STATE(); case 1676: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2124); + if (lookahead == 'T') ADVANCE(2171); END_STATE(); case 1677: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2172); + if (lookahead == 'T') ADVANCE(556); END_STATE(); case 1678: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(562); + if (lookahead == '+' || + lookahead == '-') ADVANCE(315); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); END_STATE(); case 1679: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(315); + lookahead == '-') ADVANCE(2000); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1666); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); END_STATE(); case 1680: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); + lookahead == '-') ADVANCE(2083); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1666); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); END_STATE(); case 1681: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2084); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(546); END_STATE(); case 1682: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2056); END_STATE(); case 1683: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2114); END_STATE(); case 1684: - ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2115); - END_STATE(); - case 1685: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1686: + case 1685: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(1687); + if (lookahead == '#') ADVANCE(1686); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1686); + lookahead == ' ') ADVANCE(1685); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(1687); + lookahead != '\\') ADVANCE(1686); END_STATE(); - case 1687: + case 1686: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1687); + lookahead != '\\') ADVANCE(1686); END_STATE(); - case 1688: + case 1687: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1689: + case 1688: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); - if (lookahead == '#') ADVANCE(1690); + if (lookahead == '#') ADVANCE(1689); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1689); + lookahead == ' ') ADVANCE(1688); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1690); + lookahead != '\'') ADVANCE(1689); END_STATE(); - case 1690: + case 1689: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1690); + lookahead != '\'') ADVANCE(1689); END_STATE(); - case 1691: + case 1690: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 1692: + case 1691: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 1693: + case 1692: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); - if (lookahead == '#') ADVANCE(1694); + if (lookahead == '#') ADVANCE(1693); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1693); + lookahead == ' ') ADVANCE(1692); if (lookahead != 0 && - lookahead != '`') ADVANCE(1694); + lookahead != '`') ADVANCE(1693); END_STATE(); - case 1694: + case 1693: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); if (lookahead != 0 && - lookahead != '`') ADVANCE(1694); + lookahead != '`') ADVANCE(1693); END_STATE(); - case 1695: + case 1694: ACCEPT_TOKEN(anon_sym_BQUOTE2); END_STATE(); - case 1696: + case 1695: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 1697: + case 1696: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(1698); + if (lookahead == '#') ADVANCE(1697); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1697); + lookahead == ' ') ADVANCE(1696); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(1698); + lookahead != '\\') ADVANCE(1697); END_STATE(); - case 1698: + case 1697: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(1698); + lookahead != '\\') ADVANCE(1697); END_STATE(); - case 1699: + case 1698: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(1700); + if (lookahead == '#') ADVANCE(1699); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); + lookahead == ' ') ADVANCE(1698); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1700); + lookahead != '(') ADVANCE(1699); END_STATE(); - case 1700: + case 1699: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1700); + lookahead != '(') ADVANCE(1699); END_STATE(); - case 1701: + case 1700: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 1702: + case 1701: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 1703: + case 1702: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 1704: + case 1703: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 1705: + case 1704: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 1706: + case 1705: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); + case 1706: + ACCEPT_TOKEN(sym__entry_separator); + END_STATE(); case 1707: ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == '\n') ADVANCE(1706); + if (lookahead == '\r') ADVANCE(1706); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1707); + if (lookahead == 0x0b || + lookahead == '\f' || + lookahead == ',') ADVANCE(1706); END_STATE(); case 1708: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\n') ADVANCE(1707); - if (lookahead == '\r') ADVANCE(1707); + if (lookahead == ',') ADVANCE(1706); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1708); - if (lookahead == 0x0b || - lookahead == '\f' || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1706); END_STATE(); case 1709: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1707); + if (lookahead == ',') ADVANCE(1706); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1709); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1710); END_STATE(); case 1710: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1707); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1710); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); - END_STATE(); - case 1711: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(1716); + if (lookahead == ';') ADVANCE(1715); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(318); END_STATE(); - case 1712: + case 1711: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1711); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1706); END_STATE(); - case 1713: + case 1712: ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); + case 1713: + ACCEPT_TOKEN(aux_sym__record_key_token1); + if (lookahead == '#') ADVANCE(2191); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1714); + END_STATE(); case 1714: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(2192); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1714); END_STATE(); case 1715: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); + ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); case 1716: - ACCEPT_TOKEN(sym__table_head_separator); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 1717: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 1718: ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(1547); + if (lookahead == '~') ADVANCE(1553); END_STATE(); case 1719: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); + ACCEPT_TOKEN(anon_sym_DOT2); END_STATE(); case 1720: ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(695); END_STATE(); case 1721: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(696); + if (lookahead == '.') ADVANCE(1592); END_STATE(); case 1722: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1593); + if (lookahead == '.') ADVANCE(1502); END_STATE(); case 1723: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1503); + if (lookahead == '.') ADVANCE(311); END_STATE(); case 1724: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1592); + if (lookahead == '.') ADVANCE(1591); END_STATE(); case 1725: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(311); + if (lookahead == '_') ADVANCE(717); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); END_STATE(); case 1726: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '"') ADVANCE(1684); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '\'') ADVANCE(1687); + if (lookahead == '`') ADVANCE(1691); + if (lookahead == '\t' || + lookahead == ' ') SKIP(172); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1727); END_STATE(); case 1727: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '`') ADVANCE(1692); - if (lookahead == '\t' || - lookahead == ' ') SKIP(173); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1728); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1727); END_STATE(); case 1728: - ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1728); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 1729: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(aux_sym_env_var_token1); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1729); END_STATE(); case 1730: - ACCEPT_TOKEN(aux_sym_env_var_token1); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1730); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 1731: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(1747); END_STATE(); case 1732: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1748); + if (lookahead == '>') ADVANCE(1747); + if (lookahead == '|') ADVANCE(1452); END_STATE(); case 1733: - ACCEPT_TOKEN(anon_sym_err_GT); + ACCEPT_TOKEN(anon_sym_out_GT); if (lookahead == '>') ADVANCE(1748); - if (lookahead == '|') ADVANCE(1453); END_STATE(); case 1734: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1749); + if (lookahead == '>') ADVANCE(1748); + if (lookahead == '|') ADVANCE(1453); END_STATE(); case 1735: - ACCEPT_TOKEN(anon_sym_out_GT); + ACCEPT_TOKEN(anon_sym_e_GT); if (lookahead == '>') ADVANCE(1749); - if (lookahead == '|') ADVANCE(1454); END_STATE(); case 1736: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1750); + if (lookahead == '>') ADVANCE(1749); + if (lookahead == '|') ADVANCE(1454); END_STATE(); case 1737: - ACCEPT_TOKEN(anon_sym_e_GT); + ACCEPT_TOKEN(anon_sym_o_GT); if (lookahead == '>') ADVANCE(1750); - if (lookahead == '|') ADVANCE(1455); END_STATE(); case 1738: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1751); + if (lookahead == '>') ADVANCE(1750); + if (lookahead == '|') ADVANCE(1455); END_STATE(); case 1739: - ACCEPT_TOKEN(anon_sym_o_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); if (lookahead == '>') ADVANCE(1751); - if (lookahead == '|') ADVANCE(1456); END_STATE(); case 1740: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1752); + if (lookahead == '>') ADVANCE(1751); + if (lookahead == '|') ADVANCE(1456); END_STATE(); case 1741: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); if (lookahead == '>') ADVANCE(1752); - if (lookahead == '|') ADVANCE(1457); END_STATE(); case 1742: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1753); + if (lookahead == '>') ADVANCE(1752); + if (lookahead == '|') ADVANCE(1457); END_STATE(); case 1743: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); if (lookahead == '>') ADVANCE(1753); - if (lookahead == '|') ADVANCE(1458); END_STATE(); case 1744: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1754); + if (lookahead == '>') ADVANCE(1753); + if (lookahead == '|') ADVANCE(1458); END_STATE(); case 1745: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); if (lookahead == '>') ADVANCE(1754); - if (lookahead == '|') ADVANCE(1459); END_STATE(); case 1746: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1755); + if (lookahead == '>') ADVANCE(1754); + if (lookahead == '|') ADVANCE(1459); END_STATE(); case 1747: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1755); - if (lookahead == '|') ADVANCE(1460); + ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); case 1748: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); case 1749: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); case 1750: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); case 1751: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); case 1752: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); case 1753: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); case 1754: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); case 1755: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(517); + if (lookahead == 'r') ADVANCE(1759); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); END_STATE(); case 1756: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1760); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '+') ADVANCE(375); + if (lookahead == '>') ADVANCE(518); + if (lookahead == 'u') ADVANCE(1760); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); END_STATE(); case 1757: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1761); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '+') ADVANCE(438); + if (lookahead == '>') ADVANCE(520); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); END_STATE(); case 1758: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '+') ADVANCE(379); + if (lookahead == '>') ADVANCE(522); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); END_STATE(); case 1759: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == 'r') ADVANCE(1757); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); END_STATE(); case 1760: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(1758); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == 't') ADVANCE(1758); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); END_STATE(); case 1761: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(1759); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); END_STATE(); case 1762: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(1839); + if (lookahead == '>') ADVANCE(1738); + if (lookahead == 'r') ADVANCE(1530); + if (lookahead == 'u') ADVANCE(1900); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1763: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1840); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(1901); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1816, + '-', 1819, + '>', 1736, + 'I', 1926, + '_', 1819, + 'i', 1926, + 'n', 1833, + 'r', 1882, + 'B', 1652, + 'b', 1652, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1764: + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(1816); + if (lookahead == '-') ADVANCE(1819); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == '_') ADVANCE(1819); + if (lookahead == 'n') ADVANCE(1833); + if (lookahead == 'r') ADVANCE(1882); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + END_STATE(); + case 1765: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( '+', 1817, - '-', 1820, - '>', 1737, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, + '-', 1819, + '>', 1918, + 'I', 1926, + '_', 1819, + 'i', 1926, + 'n', 1833, 'r', 1883, - 'B', 1653, - 'b', 1653, + 'B', 1652, + 'b', 1652, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); - END_STATE(); - case 1765: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1817); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1766: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( - '+', 1818, - '-', 1820, - '>', 1919, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - 'r', 1884, - 'B', 1653, - 'b', 1653, + '+', 1817, + '-', 1819, + '>', 1918, + 'I', 1926, + '_', 1819, + 'i', 1926, + 'r', 1883, + 'B', 1652, + 'b', 1652, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1767: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1818, - '-', 1820, - '>', 1919, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1817); + if (lookahead == '-') ADVANCE(1819); + if (lookahead == '>') ADVANCE(1918); + if (lookahead == '_') ADVANCE(1819); + if (lookahead == 'n') ADVANCE(1833); + if (lookahead == 'r') ADVANCE(1883); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1768: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1818); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1817); + if (lookahead == '-') ADVANCE(1819); + if (lookahead == '>') ADVANCE(1918); + if (lookahead == '_') ADVANCE(1819); + if (lookahead == 'r') ADVANCE(1883); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1769: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1818); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'r') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1840); + if (lookahead == '>') ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1770: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1841); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1868, + '>', 1736, + 'I', 1926, + 'i', 1926, + 'n', 1833, + 'r', 1882, + 'B', 1652, + 'b', 1652, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1771: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1869, - '>', 1737, - 'I', 1927, - 'i', 1927, - 'n', 1834, - 'r', 1883, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1868); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'n') ADVANCE(1833); + if (lookahead == 'r') ADVANCE(1882); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1772: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '+') ADVANCE(1869); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1883); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1732); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1773: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1870); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1874, + '>', 1918, + 'I', 1926, + 'i', 1926, + 'n', 1833, + 'r', 1883, + 'B', 1652, + 'b', 1652, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1774: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1875, - '>', 1919, - 'I', 1927, - 'i', 1927, - 'n', 1834, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1874); + if (lookahead == '>') ADVANCE(1918); + if (lookahead == 'I') ADVANCE(1926); + if (lookahead == 'i') ADVANCE(1926); + if (lookahead == 'r') ADVANCE(1883); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1775: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == 'r') ADVANCE(1884); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1874); + if (lookahead == '>') ADVANCE(1918); + if (lookahead == 'n') ADVANCE(1833); + if (lookahead == 'r') ADVANCE(1883); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1776: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1874); + if (lookahead == '>') ADVANCE(1918); + if (lookahead == 'r') ADVANCE(1883); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1777: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); + if (lookahead == '+') ADVANCE(1841); if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'r') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1530); + if (lookahead == 'u') ADVANCE(1904); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1778: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1842); - if (lookahead == '>') ADVANCE(1920); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1841); + if (lookahead == '>') ADVANCE(1919); + if (lookahead == 'u') ADVANCE(1904); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1779: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1842); - if (lookahead == '>') ADVANCE(1920); - if (lookahead == 'u') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1876); + if (lookahead == '>') ADVANCE(1921); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1780: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1877); - if (lookahead == '>') ADVANCE(1922); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1842); + if (lookahead == '>') ADVANCE(1923); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1781: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1843); - if (lookahead == '>') ADVANCE(1924); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1483); + if (lookahead == '.') ADVANCE(1820); + if (lookahead == '_') ADVANCE(1791); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1782: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(1821); - if (lookahead == '_') ADVANCE(1792); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1930); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1483); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1783: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1484); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1826); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1784: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1827); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1785: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1913); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1786: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1914); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1787: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1915); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1788: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1916); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1789: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1917); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '.') ADVANCE(1592); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1790: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '.') ADVANCE(1813); + if (lookahead == '_') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1791: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1814); + if (lookahead == '.') ADVANCE(1820); if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1792: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1821); - if (lookahead == '_') ADVANCE(1792); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '=') ADVANCE(1547); + if (lookahead == '~') ADVANCE(1553); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1793: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '=') ADVANCE(1546); + if (lookahead == '>') ADVANCE(1499); + if (lookahead == '~') ADVANCE(1552); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1794: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '>') ADVANCE(1500); - if (lookahead == '~') ADVANCE(1553); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '=') ADVANCE(1546); + if (lookahead == '~') ADVANCE(1552); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1795: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1499); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1796: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1500); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1797: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1744); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1798: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1799: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1800: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1920); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1801: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1921); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1922); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1802: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1923); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1924); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1803: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '>') ADVANCE(1925); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1804: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1926); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + 'I', 1926, + '_', 1819, + 'i', 1926, + 'n', 1833, + '+', 1819, + '-', 1819, + 'B', 1652, + 'b', 1652, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1805: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - '+', 1820, - '-', 1820, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1926); + if (lookahead == '_') ADVANCE(1819); + if (lookahead == 'i') ADVANCE(1926); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1819); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1806: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'i') ADVANCE(1927); + if (lookahead == 'I') ADVANCE(1926); + if (lookahead == '_') ADVANCE(1819); + if (lookahead == 'i') ADVANCE(1828); if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); + lookahead == '-') ADVANCE(1819); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1807: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'i') ADVANCE(1829); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); + if (lookahead == 'I') ADVANCE(1926); + if (lookahead == 'i') ADVANCE(1926); + if (lookahead == 'n') ADVANCE(1833); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1808: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == 'n') ADVANCE(1834); + if (lookahead == 'I') ADVANCE(1926); + if (lookahead == 'i') ADVANCE(1926); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1809: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); + if (lookahead == 'I') ADVANCE(1926); + if (lookahead == 'i') ADVANCE(1828); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1810: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1829); + if (lookahead == 'I') ADVANCE(1926); + if (lookahead == 'i') ADVANCE(1861); + if (lookahead == 'o') ADVANCE(1831); + if (lookahead == 's') ADVANCE(1657); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1811: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1862); - if (lookahead == 'o') ADVANCE(1832); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1926); + if (lookahead == 'i') ADVANCE(1861); + if (lookahead == 's') ADVANCE(1657); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1812: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1862); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1812); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1813: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1814: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1815: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1819); + if (lookahead == 'n') ADVANCE(1833); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1816: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1819); + if (lookahead == 'o') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1817: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'o') ADVANCE(1797); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1819); + if (lookahead == 'o') ADVANCE(1800); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1818: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'o') ADVANCE(1801); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1819); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1819: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1820: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1821: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1891); + if (lookahead == 'r') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1822: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1891); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1823: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1917); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1824: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1918); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1885); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1825: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1886); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1892); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1826: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1893); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1866); + if (lookahead == 'o') ADVANCE(1880); + if (lookahead == 's') ADVANCE(1849); + if (lookahead == 'x') ADVANCE(1875); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1827: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1867); - if (lookahead == 'o') ADVANCE(1881); - if (lookahead == 's') ADVANCE(1850); - if (lookahead == 'x') ADVANCE(1876); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1889); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1828: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1890); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1829: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'c') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1830: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1526); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1831: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1527); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1570); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1832: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1571); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1584); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1833: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1585); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1893); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1834: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1894); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1895); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1835: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1896); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1555); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1836: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1556); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1557); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1837: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1558); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1829); + if (lookahead == 't') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1838: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1830); - if (lookahead == 't') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1829); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1839: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1830); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1797); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1840: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1798); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1886); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1841: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1887); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1801); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1842: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1802); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1887); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1843: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1888); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1867); + if (lookahead == 'h') ADVANCE(1825); + if (lookahead == 'i') ADVANCE(1863); + if (lookahead == 'l') ADVANCE(1856); + if (lookahead == 's') ADVANCE(1910); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1844: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1868); - if (lookahead == 'h') ADVANCE(1826); - if (lookahead == 'i') ADVANCE(1864); - if (lookahead == 'l') ADVANCE(1857); - if (lookahead == 's') ADVANCE(1911); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'f') ADVANCE(1067); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1845: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'f') ADVANCE(1068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1542); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1846: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1543); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1538); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1847: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1539); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1544); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1848: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1545); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1540); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1849: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1541); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1860); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1850: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1861); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1858); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1851: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1859); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1897); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1852: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1898); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1901); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1853: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1902); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1903); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1854: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1904); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1905); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1855: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'i') ADVANCE(1906); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1856: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1907); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1859); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1857: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1860); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'k') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1858: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'k') ADVANCE(1835); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1859: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'k') ADVANCE(1836); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1860: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1837); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'l') ADVANCE(1580); + if (lookahead == 'r') ADVANCE(1582); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1861: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'l') ADVANCE(1581); - if (lookahead == 'r') ADVANCE(1583); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1657); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1862: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1082); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1863: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1083); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1532); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1864: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1533); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1830); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1865: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1831); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1833); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1866: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1834); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1832); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1867: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1833); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1834); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1868: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1835); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1796); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1869: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1797); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1911); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1870: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1912); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1879); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1871: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1880); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1899); + if (lookahead == 's') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1872: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1900); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1899); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1873: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1900); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1831); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1874: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1832); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1800); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1875: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1801); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1881); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1876: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1882); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1912); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1877: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1913); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1878: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1530); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1879: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1531); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1528); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1880: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1529); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1588); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1881: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1589); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1586); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1882: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1587); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1772); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1883: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1773); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1779); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1884: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1780); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1799); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1885: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1800); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1908); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1886: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1909); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1884); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1887: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1885); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1888); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1888: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1889); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1803); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1889: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1804); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1909); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1890: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1910); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1891: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1534); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1892: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1535); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1536); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1893: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1537); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1785); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1894: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1786); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1895: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1787); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1896: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1788); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1897: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1789); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1783); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1898: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1784); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1899: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1784); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1900: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1785); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1769); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1901: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1770); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1845); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1902: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1798); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1903: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1799); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1904: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1780); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1905: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1781); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1906: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 't') ADVANCE(1848); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1907: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1849); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1802); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1908: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1803); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1894); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1909: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1895); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1896); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1910: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1897); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1827); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1911: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1828); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'u') ADVANCE(1902); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1912: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1903); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'u') ADVANCE(1907); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1913: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1908); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'w') ADVANCE(1852); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1914: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1853); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1915: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1854); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1916: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1855); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1917: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1856); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'y') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1918: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1454); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1919: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '|') ADVANCE(1455); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1920: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1456); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1459); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1921: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1460); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1452); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1922: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1453); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1458); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1923: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1459); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1453); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1924: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1454); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1456); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1925: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '|') ADVANCE(1457); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1926: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1458); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1927: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1105); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1928: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1106); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1931); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1929: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1932); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1927); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1930: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1928); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1931: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1929); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1932); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1932: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1933); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1103); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1933: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1934: - ACCEPT_TOKEN(sym__unquoted_pattern); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1592); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1935: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1502); + if (lookahead == '_') ADVANCE(1944); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1936: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1503); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1502); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1937: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1503); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1945); + if (lookahead == '_') ADVANCE(1937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1938: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1946); - if (lookahead == '_') ADVANCE(1938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1957); + if (lookahead == '_') ADVANCE(1947); + if (lookahead == 'i') ADVANCE(1957); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1947); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1939: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == 'i') ADVANCE(1958); + if (lookahead == 'I') ADVANCE(1957); + if (lookahead == '_') ADVANCE(1947); + if (lookahead == 'i') ADVANCE(1949); if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); + lookahead == '-') ADVANCE(1947); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1940: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == 'i') ADVANCE(1950); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); + if (lookahead == 'I') ADVANCE(1957); + if (lookahead == 'i') ADVANCE(1957); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1941: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1958); + if (lookahead == 'I') ADVANCE(1957); + if (lookahead == 'i') ADVANCE(1949); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1942: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1950); + if (lookahead == 'I') ADVANCE(1957); + if (lookahead == 'i') ADVANCE(1953); + if (lookahead == 's') ADVANCE(1657); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1943: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1954); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1944: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1945: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1945); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1946: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1946); + if (lookahead == '_') ADVANCE(1947); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1947); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1947: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1948: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1948); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'a') ADVANCE(1956); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1949: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'a') ADVANCE(1957); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1950: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'c') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1951: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'e') ADVANCE(1950); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1952: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'e') ADVANCE(1951); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'k') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1953: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'n') ADVANCE(1657); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1954: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1955: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 's') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1956: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'y') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1957: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1958: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1959: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1592); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1960: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1970); + if (lookahead == '_') ADVANCE(1960); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1961: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1592); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1963); + if (lookahead == '_') ADVANCE(1971); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1962: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1482); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1963); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1963: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1971); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1481); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1964: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1591); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1965: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1962); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1984); + if (lookahead == '_') ADVANCE(1973); + if (lookahead == 'i') ADVANCE(1984); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1973); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1966: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1985); + if (lookahead == 'I') ADVANCE(1984); + if (lookahead == '_') ADVANCE(1973); + if (lookahead == 'i') ADVANCE(1976); if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); + lookahead == '-') ADVANCE(1973); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1967: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1977); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); + if (lookahead == 'I') ADVANCE(1984); + if (lookahead == 'i') ADVANCE(1984); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1968: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1985); + if (lookahead == 'I') ADVANCE(1984); + if (lookahead == 'i') ADVANCE(1976); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1969: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1977); + if (lookahead == 'I') ADVANCE(1984); + if (lookahead == 'i') ADVANCE(1980); + if (lookahead == 's') ADVANCE(1657); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1970: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1981); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1970); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1971: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); if (lookahead == '_') ADVANCE(1971); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1972: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1973); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1973: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1974: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); if (lookahead == '_') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1975: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1975); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'a') ADVANCE(1983); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1976: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'a') ADVANCE(1984); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1977: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'c') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1978: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'e') ADVANCE(1977); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1979: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'e') ADVANCE(1978); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'k') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1980: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'n') ADVANCE(1657); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1981: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'r') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1982: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 's') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1983: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'y') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1984: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1985: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1986: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); - END_STATE(); - case 1987: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -31224,1149 +31539,1149 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + END_STATE(); + case 1987: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '$') ADVANCE(1616); + if (lookahead == '(') ADVANCE(1590); + if (lookahead == '[') ADVANCE(1704); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 1988: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '[') ADVANCE(1705); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2024); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'r') ADVANCE(2030); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 1989: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2025); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'r') ADVANCE(2031); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2017); + if (lookahead == '>') ADVANCE(1738); + if (lookahead == 'u') ADVANCE(2038); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 1990: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2018); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'u') ADVANCE(2039); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2025); + if (lookahead == '>') ADVANCE(1732); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 1991: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2026); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2018); + if (lookahead == '>') ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 1992: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2019); + if (lookahead == '+') ADVANCE(2027); if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2031); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 1993: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2028); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == 'r') ADVANCE(2032); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2019); + if (lookahead == '>') ADVANCE(1737); + if (lookahead == 'u') ADVANCE(2040); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 1994: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2020); - if (lookahead == '>') ADVANCE(1738); - if (lookahead == 'u') ADVANCE(2041); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2028); + if (lookahead == '>') ADVANCE(1731); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 1995: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2029); - if (lookahead == '>') ADVANCE(1732); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2020); + if (lookahead == '>') ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 1996: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2021); - if (lookahead == '>') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '-') ADVANCE(2064); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 1997: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2065); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '.') ADVANCE(1506); + if (lookahead == '_') ADVANCE(2013); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 1998: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '.') ADVANCE(1504); + if (lookahead == '_') ADVANCE(2013); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 1999: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1505); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '.') ADVANCE(2012); + if (lookahead == '_') ADVANCE(1999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2000: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2013); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '2') ADVANCE(2054); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2062); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2001: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(2055); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2063); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == ':') ADVANCE(2066); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2002: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2067); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == ':') ADVANCE(2068); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2003: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2069); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2004: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1744); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2005: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2006: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2007: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1745); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2008: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1746); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1743); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2009: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1744); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1739); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2010: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1740); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1741); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2011: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1742); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '_') ADVANCE(2011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2012: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2013: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2014: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'a') ADVANCE(2022); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2015: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2023); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(1088); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(1091); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2004); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2005); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2032); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2033); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2008); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2009); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2035); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2036); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'l') ADVANCE(1094); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'l') ADVANCE(2036); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2037); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'l') ADVANCE(2021); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2022); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2003); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2004); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2044); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2045); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2037); + if (lookahead == 'u') ADVANCE(2023); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2049); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2038); - if (lookahead == 'u') ADVANCE(2024); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2007); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2008); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2045); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2046); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2043); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2044); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(1990); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1991); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(1994); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1995); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2033); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2034); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2006); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2007); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2010); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2011); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2034); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2035); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 's') ADVANCE(2016); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2017); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2055); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2056); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(1991); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1992); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2005); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2006); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(1995); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1996); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2009); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2010); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2023); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2049); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2024); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2015); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2016); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2039); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2040); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2041); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2042); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2049); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1099); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1100); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2052); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2053); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1108); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + lookahead == 'n') ADVANCE(2047); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2048); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2049); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2053); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2054); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1097); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1671); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1559); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1996); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2058: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1997); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2002); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2003); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2062: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2063: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2057); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2064: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2058); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2059); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2065: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2060); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2058); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2066: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2059); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2060); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2067: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2061); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2001); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2068: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2002); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2067); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2070: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); - END_STATE(); - case 2071: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2074); - if (lookahead == '_') ADVANCE(2075); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(2073); + if (lookahead == '_') ADVANCE(2074); if (lookahead == '\t' || - lookahead == ' ') SKIP(193); + lookahead == ' ') SKIP(192); if (lookahead == '+' || - lookahead == '-') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2077); + lookahead == '-') ADVANCE(2072); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2076); END_STATE(); - case 2072: + case 2071: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(2074); - if (lookahead == '_') ADVANCE(2075); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(2073); + if (lookahead == '_') ADVANCE(2074); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + lookahead == '-') ADVANCE(2072); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); + END_STATE(); + case 2072: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(2075); + if (lookahead == '_') ADVANCE(2072); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); END_STATE(); case 2073: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2076); if (lookahead == '_') ADVANCE(2073); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); END_STATE(); case 2074: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(2074); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); END_STATE(); case 2075: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(2075); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); END_STATE(); case 2076: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2076); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); END_STATE(); case 2077: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '$') ADVANCE(1616); + if (lookahead == '(') ADVANCE(1590); + if (lookahead == '[') ADVANCE(1704); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2127); END_STATE(); case 2078: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '[') ADVANCE(1705); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2128); + if (lookahead == '-') ADVANCE(2122); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2079: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(2123); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(1506); + if (lookahead == '_') ADVANCE(2088); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2080: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(2087); + if (lookahead == '_') ADVANCE(2081); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2081: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2088); - if (lookahead == '_') ADVANCE(2082); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2108); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(2087); + if (lookahead == '_') ADVANCE(2081); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2082: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2088); - if (lookahead == '_') ADVANCE(2082); + if (lookahead == '.') ADVANCE(1505); + if (lookahead == '_') ADVANCE(2088); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1506); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '2') ADVANCE(2113); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2121); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2084: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(2114); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2122); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == ':') ADVANCE(2124); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2125); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == ':') ADVANCE(2126); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2086: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2127); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '_') ADVANCE(2086); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2087: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(2087); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(2088); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2089: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'a') ADVANCE(2093); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(2094); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'e') ADVANCE(1088); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'e') ADVANCE(1091); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2092: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'l') ADVANCE(1094); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2093: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'l') ADVANCE(2096); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2094: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2097); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'l') ADVANCE(2092); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2095: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2093); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'r') ADVANCE(2097); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2096: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2098); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 's') ADVANCE(2091); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2097: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(2092); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'u') ADVANCE(2090); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2098: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2091); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'u') ADVANCE(2094); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2104); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2095); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2105); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + lookahead == 'a') ADVANCE(2104); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2105); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1106); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1107); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + lookahead == 'f') ADVANCE(1100); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1101); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2109); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2110); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2111); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1108); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + lookahead == 'n') ADVANCE(2101); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2102); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2103); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + lookahead == 'n') ADVANCE(2100); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2101); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + lookahead == 'n') ADVANCE(2103); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2111); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'T' || lookahead == 't') ADVANCE(2112); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2113); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1097); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + lookahead == 'y') ADVANCE(1103); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2078); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2079); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2085); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2086); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2115); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2116); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2118); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2119); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2116); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2117); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2119); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2120); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2084); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2126: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2085); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2125); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2126); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2128: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1508); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(2131); + if (lookahead == ']') ADVANCE(1465); + if (lookahead == '_') ADVANCE(2132); + if (lookahead == '\t' || + lookahead == ' ') SKIP(190); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2134); END_STATE(); case 2129: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1509); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2132); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '_') ADVANCE(2133); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(2131); + if (lookahead == '_') ADVANCE(2132); if (lookahead == '\t' || - lookahead == ' ') SKIP(191); + lookahead == ' ') SKIP(192); if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2135); + lookahead == '-') ADVANCE(2130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2134); END_STATE(); case 2130: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2132); - if (lookahead == '_') ADVANCE(2133); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2135); + if (lookahead == '.') ADVANCE(2133); + if (lookahead == '_') ADVANCE(2130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2134); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2134); if (lookahead == '_') ADVANCE(2131); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2134); END_STATE(); case 2132: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(2132); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2134); END_STATE(); case 2133: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(2133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2134); END_STATE(); case 2134: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2134); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2134); END_STATE(); case 2135: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '-') ADVANCE(2170); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2136: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(2171); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '.') ADVANCE(1506); + if (lookahead == '_') ADVANCE(2142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2137: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '.') ADVANCE(2141); + if (lookahead == '_') ADVANCE(2138); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2161); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2138: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2142); - if (lookahead == '_') ADVANCE(2139); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '.') ADVANCE(2141); + if (lookahead == '_') ADVANCE(2138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2139: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2142); - if (lookahead == '_') ADVANCE(2139); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == ':') ADVANCE(549); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2140: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '_') ADVANCE(2140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == '_') ADVANCE(2141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == '_') ADVANCE(2142); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'a') ADVANCE(2147); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(2148); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'e') ADVANCE(1088); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'e') ADVANCE(1091); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2146: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'l') ADVANCE(1094); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'l') ADVANCE(2150); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2148: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2151); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'l') ADVANCE(2146); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2147); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'r') ADVANCE(2151); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2150: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(2152); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 's') ADVANCE(2145); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2151: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(2146); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'u') ADVANCE(2144); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2152: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2145); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'u') ADVANCE(2148); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2158); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2153: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2149); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2159); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + lookahead == 'a') ADVANCE(2158); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2154: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2159); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1107); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2155: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1108); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + lookahead == 'f') ADVANCE(1101); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2156: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1102); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2163); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2157: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2164); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2165); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1108); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + lookahead == 'n') ADVANCE(2155); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2156); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2161: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2157); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + lookahead == 'n') ADVANCE(2154); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2162: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2155); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + lookahead == 'n') ADVANCE(2157); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2163: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2158); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2165); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'T' || lookahead == 't') ADVANCE(2166); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2167); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1097); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + lookahead == 'y') ADVANCE(1103); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2135); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2136); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2139); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2140); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2167); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2168); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2172); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2173); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2168); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2169); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2174: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); - END_STATE(); - case 2175: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2178); - if (lookahead == '_') ADVANCE(2179); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(2177); + if (lookahead == '_') ADVANCE(2178); if (lookahead == '\t' || - lookahead == ' ') SKIP(193); + lookahead == ' ') SKIP(192); if (lookahead == '+' || - lookahead == '-') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2181); + lookahead == '-') ADVANCE(2176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2180); END_STATE(); - case 2176: + case 2175: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(2178); - if (lookahead == '_') ADVANCE(2179); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(2177); + if (lookahead == '_') ADVANCE(2178); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + lookahead == '-') ADVANCE(2176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2180); + END_STATE(); + case 2176: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(2179); + if (lookahead == '_') ADVANCE(2176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2180); END_STATE(); case 2177: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2180); if (lookahead == '_') ADVANCE(2177); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2180); END_STATE(); case 2178: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(2178); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2180); END_STATE(); case 2179: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(2179); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2180); END_STATE(); case 2180: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2180); END_STATE(); case 2181: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); - END_STATE(); - case 2182: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(2195); + if (lookahead == '#') ADVANCE(2194); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2182); END_STATE(); - case 2183: + case 2182: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32374,20 +32689,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2182); END_STATE(); - case 2184: + case 2183: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(2194); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if (lookahead == '#') ADVANCE(2193); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2184); END_STATE(); - case 2185: + case 2184: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2184); END_STATE(); - case 2186: + case 2185: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(2193); + if (lookahead == '#') ADVANCE(2192); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -32396,9 +32711,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2186); END_STATE(); - case 2187: + case 2186: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32408,30 +32723,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2186); + END_STATE(); + case 2187: + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 2188: ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '\n') ADVANCE(662); + if (lookahead == '\r') ADVANCE(664); + if (lookahead != 0) ADVANCE(664); END_STATE(); case 2189: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead != 0) ADVANCE(665); + if (lookahead == '!') ADVANCE(661); END_STATE(); case 2190: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 2191: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1714); END_STATE(); case 2192: - ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); - END_STATE(); - case 2193: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32441,13 +32756,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2186); END_STATE(); - case 2194: + case 2193: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2184); END_STATE(); - case 2195: + case 2194: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32455,26 +32770,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2182); END_STATE(); - case 2196: + case 2195: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2197); END_STATE(); - case 2197: + case 2196: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(2196); + if (lookahead == '#') ADVANCE(2195); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2197); + lookahead == ' ') ADVANCE(2196); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2197); END_STATE(); - case 2198: + case 2197: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2197); END_STATE(); default: return false; @@ -33022,5209 +33337,5385 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 629, .external_lex_state = 2}, - [2] = {.lex_state = 31, .external_lex_state = 2}, - [3] = {.lex_state = 31, .external_lex_state = 2}, - [4] = {.lex_state = 31, .external_lex_state = 2}, - [5] = {.lex_state = 31, .external_lex_state = 2}, - [6] = {.lex_state = 31, .external_lex_state = 2}, - [7] = {.lex_state = 31, .external_lex_state = 2}, - [8] = {.lex_state = 31, .external_lex_state = 2}, - [9] = {.lex_state = 31, .external_lex_state = 2}, - [10] = {.lex_state = 31, .external_lex_state = 2}, - [11] = {.lex_state = 31, .external_lex_state = 2}, - [12] = {.lex_state = 31, .external_lex_state = 2}, - [13] = {.lex_state = 31, .external_lex_state = 2}, - [14] = {.lex_state = 31, .external_lex_state = 2}, - [15] = {.lex_state = 31, .external_lex_state = 2}, - [16] = {.lex_state = 622, .external_lex_state = 2}, - [17] = {.lex_state = 622, .external_lex_state = 2}, - [18] = {.lex_state = 622, .external_lex_state = 2}, - [19] = {.lex_state = 622, .external_lex_state = 2}, - [20] = {.lex_state = 622, .external_lex_state = 2}, - [21] = {.lex_state = 622, .external_lex_state = 2}, - [22] = {.lex_state = 622, .external_lex_state = 2}, - [23] = {.lex_state = 622, .external_lex_state = 2}, - [24] = {.lex_state = 622, .external_lex_state = 2}, - [25] = {.lex_state = 622, .external_lex_state = 2}, - [26] = {.lex_state = 622, .external_lex_state = 2}, - [27] = {.lex_state = 622, .external_lex_state = 2}, - [28] = {.lex_state = 622, .external_lex_state = 2}, - [29] = {.lex_state = 622, .external_lex_state = 2}, - [30] = {.lex_state = 622, .external_lex_state = 2}, - [31] = {.lex_state = 622, .external_lex_state = 2}, - [32] = {.lex_state = 622, .external_lex_state = 2}, - [33] = {.lex_state = 622, .external_lex_state = 2}, - [34] = {.lex_state = 622, .external_lex_state = 2}, - [35] = {.lex_state = 29, .external_lex_state = 2}, - [36] = {.lex_state = 29, .external_lex_state = 2}, - [37] = {.lex_state = 622, .external_lex_state = 2}, - [38] = {.lex_state = 29, .external_lex_state = 2}, - [39] = {.lex_state = 29, .external_lex_state = 2}, - [40] = {.lex_state = 622, .external_lex_state = 2}, - [41] = {.lex_state = 29, .external_lex_state = 2}, - [42] = {.lex_state = 622, .external_lex_state = 2}, - [43] = {.lex_state = 29, .external_lex_state = 2}, - [44] = {.lex_state = 622, .external_lex_state = 2}, - [45] = {.lex_state = 622, .external_lex_state = 2}, - [46] = {.lex_state = 29, .external_lex_state = 2}, - [47] = {.lex_state = 29, .external_lex_state = 2}, - [48] = {.lex_state = 29, .external_lex_state = 2}, - [49] = {.lex_state = 622, .external_lex_state = 2}, - [50] = {.lex_state = 29, .external_lex_state = 2}, - [51] = {.lex_state = 29, .external_lex_state = 2}, - [52] = {.lex_state = 29, .external_lex_state = 2}, - [53] = {.lex_state = 622, .external_lex_state = 2}, - [54] = {.lex_state = 29, .external_lex_state = 2}, - [55] = {.lex_state = 622, .external_lex_state = 2}, - [56] = {.lex_state = 29, .external_lex_state = 2}, - [57] = {.lex_state = 622, .external_lex_state = 2}, - [58] = {.lex_state = 29, .external_lex_state = 2}, - [59] = {.lex_state = 622, .external_lex_state = 2}, - [60] = {.lex_state = 29, .external_lex_state = 2}, - [61] = {.lex_state = 622, .external_lex_state = 2}, - [62] = {.lex_state = 29, .external_lex_state = 2}, - [63] = {.lex_state = 622, .external_lex_state = 2}, - [64] = {.lex_state = 622, .external_lex_state = 2}, - [65] = {.lex_state = 29, .external_lex_state = 2}, - [66] = {.lex_state = 622, .external_lex_state = 2}, - [67] = {.lex_state = 29, .external_lex_state = 2}, - [68] = {.lex_state = 29, .external_lex_state = 2}, - [69] = {.lex_state = 622, .external_lex_state = 2}, - [70] = {.lex_state = 29, .external_lex_state = 2}, - [71] = {.lex_state = 622, .external_lex_state = 2}, - [72] = {.lex_state = 29, .external_lex_state = 2}, - [73] = {.lex_state = 622, .external_lex_state = 2}, - [74] = {.lex_state = 29, .external_lex_state = 2}, - [75] = {.lex_state = 622, .external_lex_state = 2}, - [76] = {.lex_state = 622, .external_lex_state = 2}, - [77] = {.lex_state = 29, .external_lex_state = 2}, - [78] = {.lex_state = 622, .external_lex_state = 2}, - [79] = {.lex_state = 622, .external_lex_state = 2}, - [80] = {.lex_state = 622, .external_lex_state = 2}, - [81] = {.lex_state = 622, .external_lex_state = 2}, - [82] = {.lex_state = 622, .external_lex_state = 2}, - [83] = {.lex_state = 622, .external_lex_state = 2}, - [84] = {.lex_state = 622, .external_lex_state = 2}, - [85] = {.lex_state = 622, .external_lex_state = 2}, - [86] = {.lex_state = 622, .external_lex_state = 2}, - [87] = {.lex_state = 622, .external_lex_state = 2}, - [88] = {.lex_state = 622, .external_lex_state = 2}, - [89] = {.lex_state = 622, .external_lex_state = 2}, - [90] = {.lex_state = 622, .external_lex_state = 2}, - [91] = {.lex_state = 622, .external_lex_state = 2}, - [92] = {.lex_state = 1156}, - [93] = {.lex_state = 1161}, - [94] = {.lex_state = 1324}, - [95] = {.lex_state = 1146}, - [96] = {.lex_state = 1148}, - [97] = {.lex_state = 1326}, - [98] = {.lex_state = 1162}, - [99] = {.lex_state = 1162}, - [100] = {.lex_state = 1157}, - [101] = {.lex_state = 1164}, - [102] = {.lex_state = 1166}, - [103] = {.lex_state = 624, .external_lex_state = 2}, - [104] = {.lex_state = 1326}, - [105] = {.lex_state = 1163}, - [106] = {.lex_state = 1163}, - [107] = {.lex_state = 1150}, - [108] = {.lex_state = 1163}, - [109] = {.lex_state = 42, .external_lex_state = 2}, - [110] = {.lex_state = 1324}, - [111] = {.lex_state = 1328}, - [112] = {.lex_state = 1166}, - [113] = {.lex_state = 1150}, - [114] = {.lex_state = 1328}, - [115] = {.lex_state = 1163}, - [116] = {.lex_state = 1152}, - [117] = {.lex_state = 1152}, - [118] = {.lex_state = 1152}, - [119] = {.lex_state = 1328}, - [120] = {.lex_state = 624, .external_lex_state = 2}, - [121] = {.lex_state = 1168}, - [122] = {.lex_state = 1328}, - [123] = {.lex_state = 1168}, - [124] = {.lex_state = 1330}, - [125] = {.lex_state = 1168}, - [126] = {.lex_state = 1168}, - [127] = {.lex_state = 1152}, - [128] = {.lex_state = 624, .external_lex_state = 2}, - [129] = {.lex_state = 1330}, - [130] = {.lex_state = 1159}, - [131] = {.lex_state = 1170}, - [132] = {.lex_state = 1330}, - [133] = {.lex_state = 1330}, - [134] = {.lex_state = 1330}, - [135] = {.lex_state = 1172}, - [136] = {.lex_state = 1330}, - [137] = {.lex_state = 1330}, - [138] = {.lex_state = 1330}, - [139] = {.lex_state = 1172}, - [140] = {.lex_state = 1174}, - [141] = {.lex_state = 1174}, - [142] = {.lex_state = 1174}, - [143] = {.lex_state = 1174}, - [144] = {.lex_state = 1332}, - [145] = {.lex_state = 1176}, - [146] = {.lex_state = 1154}, - [147] = {.lex_state = 1154}, - [148] = {.lex_state = 1176}, - [149] = {.lex_state = 1176}, - [150] = {.lex_state = 1332}, - [151] = {.lex_state = 1176}, - [152] = {.lex_state = 622, .external_lex_state = 2}, - [153] = {.lex_state = 622, .external_lex_state = 2}, - [154] = {.lex_state = 622, .external_lex_state = 2}, - [155] = {.lex_state = 622, .external_lex_state = 2}, - [156] = {.lex_state = 622, .external_lex_state = 2}, - [157] = {.lex_state = 622, .external_lex_state = 2}, - [158] = {.lex_state = 622, .external_lex_state = 2}, - [159] = {.lex_state = 622, .external_lex_state = 2}, - [160] = {.lex_state = 622, .external_lex_state = 2}, - [161] = {.lex_state = 622, .external_lex_state = 2}, - [162] = {.lex_state = 622, .external_lex_state = 2}, - [163] = {.lex_state = 622, .external_lex_state = 2}, - [164] = {.lex_state = 622, .external_lex_state = 2}, - [165] = {.lex_state = 622, .external_lex_state = 2}, - [166] = {.lex_state = 622, .external_lex_state = 2}, - [167] = {.lex_state = 622, .external_lex_state = 2}, - [168] = {.lex_state = 622, .external_lex_state = 2}, - [169] = {.lex_state = 622, .external_lex_state = 2}, - [170] = {.lex_state = 622, .external_lex_state = 2}, - [171] = {.lex_state = 622, .external_lex_state = 2}, - [172] = {.lex_state = 1332}, - [173] = {.lex_state = 1332}, - [174] = {.lex_state = 622, .external_lex_state = 2}, - [175] = {.lex_state = 622, .external_lex_state = 2}, - [176] = {.lex_state = 622, .external_lex_state = 2}, - [177] = {.lex_state = 622, .external_lex_state = 2}, - [178] = {.lex_state = 622, .external_lex_state = 2}, - [179] = {.lex_state = 622, .external_lex_state = 2}, - [180] = {.lex_state = 622, .external_lex_state = 2}, - [181] = {.lex_state = 622, .external_lex_state = 2}, - [182] = {.lex_state = 622, .external_lex_state = 2}, - [183] = {.lex_state = 622, .external_lex_state = 2}, - [184] = {.lex_state = 622, .external_lex_state = 2}, - [185] = {.lex_state = 622, .external_lex_state = 2}, - [186] = {.lex_state = 622, .external_lex_state = 2}, - [187] = {.lex_state = 622, .external_lex_state = 2}, - [188] = {.lex_state = 622, .external_lex_state = 2}, - [189] = {.lex_state = 1178}, - [190] = {.lex_state = 1178}, - [191] = {.lex_state = 622, .external_lex_state = 2}, - [192] = {.lex_state = 622, .external_lex_state = 2}, - [193] = {.lex_state = 622, .external_lex_state = 2}, - [194] = {.lex_state = 43, .external_lex_state = 2}, - [195] = {.lex_state = 34, .external_lex_state = 2}, - [196] = {.lex_state = 34, .external_lex_state = 2}, - [197] = {.lex_state = 34, .external_lex_state = 2}, - [198] = {.lex_state = 34, .external_lex_state = 2}, - [199] = {.lex_state = 34, .external_lex_state = 2}, - [200] = {.lex_state = 34, .external_lex_state = 2}, - [201] = {.lex_state = 34, .external_lex_state = 2}, - [202] = {.lex_state = 34, .external_lex_state = 2}, - [203] = {.lex_state = 34, .external_lex_state = 2}, - [204] = {.lex_state = 34, .external_lex_state = 2}, - [205] = {.lex_state = 34, .external_lex_state = 2}, - [206] = {.lex_state = 34, .external_lex_state = 2}, - [207] = {.lex_state = 34, .external_lex_state = 2}, - [208] = {.lex_state = 34, .external_lex_state = 2}, - [209] = {.lex_state = 34, .external_lex_state = 2}, - [210] = {.lex_state = 34, .external_lex_state = 2}, - [211] = {.lex_state = 34, .external_lex_state = 2}, - [212] = {.lex_state = 34, .external_lex_state = 2}, - [213] = {.lex_state = 34, .external_lex_state = 2}, - [214] = {.lex_state = 34, .external_lex_state = 2}, - [215] = {.lex_state = 34, .external_lex_state = 2}, - [216] = {.lex_state = 34, .external_lex_state = 2}, - [217] = {.lex_state = 34, .external_lex_state = 2}, - [218] = {.lex_state = 34, .external_lex_state = 2}, - [219] = {.lex_state = 34, .external_lex_state = 2}, - [220] = {.lex_state = 34, .external_lex_state = 2}, - [221] = {.lex_state = 34, .external_lex_state = 2}, - [222] = {.lex_state = 34, .external_lex_state = 2}, - [223] = {.lex_state = 34, .external_lex_state = 2}, - [224] = {.lex_state = 34, .external_lex_state = 2}, - [225] = {.lex_state = 34, .external_lex_state = 2}, - [226] = {.lex_state = 34, .external_lex_state = 2}, - [227] = {.lex_state = 34, .external_lex_state = 2}, - [228] = {.lex_state = 34, .external_lex_state = 2}, - [229] = {.lex_state = 34, .external_lex_state = 2}, - [230] = {.lex_state = 34, .external_lex_state = 2}, - [231] = {.lex_state = 34, .external_lex_state = 2}, - [232] = {.lex_state = 34, .external_lex_state = 2}, - [233] = {.lex_state = 34, .external_lex_state = 2}, - [234] = {.lex_state = 34, .external_lex_state = 2}, - [235] = {.lex_state = 34, .external_lex_state = 2}, - [236] = {.lex_state = 34, .external_lex_state = 2}, - [237] = {.lex_state = 34, .external_lex_state = 2}, - [238] = {.lex_state = 34, .external_lex_state = 2}, - [239] = {.lex_state = 34, .external_lex_state = 2}, - [240] = {.lex_state = 34, .external_lex_state = 2}, - [241] = {.lex_state = 34, .external_lex_state = 2}, - [242] = {.lex_state = 34, .external_lex_state = 2}, - [243] = {.lex_state = 34, .external_lex_state = 2}, - [244] = {.lex_state = 34, .external_lex_state = 2}, - [245] = {.lex_state = 34, .external_lex_state = 2}, - [246] = {.lex_state = 34, .external_lex_state = 2}, - [247] = {.lex_state = 34, .external_lex_state = 2}, - [248] = {.lex_state = 34, .external_lex_state = 2}, - [249] = {.lex_state = 34, .external_lex_state = 2}, - [250] = {.lex_state = 34, .external_lex_state = 2}, - [251] = {.lex_state = 34, .external_lex_state = 2}, - [252] = {.lex_state = 34, .external_lex_state = 2}, - [253] = {.lex_state = 34, .external_lex_state = 2}, - [254] = {.lex_state = 34, .external_lex_state = 2}, - [255] = {.lex_state = 34, .external_lex_state = 2}, - [256] = {.lex_state = 34, .external_lex_state = 2}, - [257] = {.lex_state = 34, .external_lex_state = 2}, - [258] = {.lex_state = 34, .external_lex_state = 2}, - [259] = {.lex_state = 34, .external_lex_state = 2}, - [260] = {.lex_state = 34, .external_lex_state = 2}, - [261] = {.lex_state = 34, .external_lex_state = 2}, - [262] = {.lex_state = 34, .external_lex_state = 2}, - [263] = {.lex_state = 34, .external_lex_state = 2}, - [264] = {.lex_state = 34, .external_lex_state = 2}, - [265] = {.lex_state = 34, .external_lex_state = 2}, - [266] = {.lex_state = 34, .external_lex_state = 2}, - [267] = {.lex_state = 1158}, - [268] = {.lex_state = 1327}, - [269] = {.lex_state = 1147}, - [270] = {.lex_state = 1149}, - [271] = {.lex_state = 1165}, - [272] = {.lex_state = 1325}, - [273] = {.lex_state = 1167}, - [274] = {.lex_state = 34, .external_lex_state = 2}, - [275] = {.lex_state = 34, .external_lex_state = 2}, - [276] = {.lex_state = 34, .external_lex_state = 2}, - [277] = {.lex_state = 1325}, - [278] = {.lex_state = 1327}, - [279] = {.lex_state = 1167}, - [280] = {.lex_state = 34, .external_lex_state = 2}, - [281] = {.lex_state = 34, .external_lex_state = 2}, - [282] = {.lex_state = 1329}, - [283] = {.lex_state = 34, .external_lex_state = 2}, - [284] = {.lex_state = 1329}, - [285] = {.lex_state = 34, .external_lex_state = 2}, - [286] = {.lex_state = 1151}, - [287] = {.lex_state = 34, .external_lex_state = 2}, - [288] = {.lex_state = 34, .external_lex_state = 2}, - [289] = {.lex_state = 34, .external_lex_state = 2}, - [290] = {.lex_state = 34, .external_lex_state = 2}, - [291] = {.lex_state = 34, .external_lex_state = 2}, - [292] = {.lex_state = 34, .external_lex_state = 2}, - [293] = {.lex_state = 1151}, - [294] = {.lex_state = 1153}, - [295] = {.lex_state = 1329}, - [296] = {.lex_state = 1171}, - [297] = {.lex_state = 1169}, - [298] = {.lex_state = 1331}, - [299] = {.lex_state = 1331}, - [300] = {.lex_state = 1331}, - [301] = {.lex_state = 1153}, - [302] = {.lex_state = 1169}, - [303] = {.lex_state = 1153}, - [304] = {.lex_state = 1153}, - [305] = {.lex_state = 1169}, - [306] = {.lex_state = 1331}, - [307] = {.lex_state = 1169}, - [308] = {.lex_state = 1160}, - [309] = {.lex_state = 1329}, - [310] = {.lex_state = 1173}, - [311] = {.lex_state = 1331}, - [312] = {.lex_state = 1331}, - [313] = {.lex_state = 1331}, - [314] = {.lex_state = 1331}, - [315] = {.lex_state = 1173}, - [316] = {.lex_state = 1175}, - [317] = {.lex_state = 1175}, - [318] = {.lex_state = 1175}, - [319] = {.lex_state = 1175}, - [320] = {.lex_state = 44, .external_lex_state = 2}, - [321] = {.lex_state = 44, .external_lex_state = 2}, - [322] = {.lex_state = 44, .external_lex_state = 2}, - [323] = {.lex_state = 1333}, - [324] = {.lex_state = 1155}, - [325] = {.lex_state = 1177}, - [326] = {.lex_state = 1177}, - [327] = {.lex_state = 1155}, - [328] = {.lex_state = 1333}, - [329] = {.lex_state = 1333}, - [330] = {.lex_state = 1333}, - [331] = {.lex_state = 1179}, - [332] = {.lex_state = 1179}, - [333] = {.lex_state = 124}, - [334] = {.lex_state = 124}, - [335] = {.lex_state = 577}, - [336] = {.lex_state = 124}, - [337] = {.lex_state = 577}, - [338] = {.lex_state = 577}, - [339] = {.lex_state = 124}, - [340] = {.lex_state = 124}, - [341] = {.lex_state = 124}, - [342] = {.lex_state = 124}, - [343] = {.lex_state = 577}, - [344] = {.lex_state = 577}, - [345] = {.lex_state = 44, .external_lex_state = 2}, - [346] = {.lex_state = 577}, - [347] = {.lex_state = 44, .external_lex_state = 2}, - [348] = {.lex_state = 44, .external_lex_state = 2}, - [349] = {.lex_state = 577}, - [350] = {.lex_state = 44, .external_lex_state = 2}, - [351] = {.lex_state = 124}, - [352] = {.lex_state = 124}, - [353] = {.lex_state = 577}, - [354] = {.lex_state = 44, .external_lex_state = 2}, - [355] = {.lex_state = 577}, - [356] = {.lex_state = 44, .external_lex_state = 2}, - [357] = {.lex_state = 124}, - [358] = {.lex_state = 44, .external_lex_state = 2}, - [359] = {.lex_state = 44, .external_lex_state = 2}, - [360] = {.lex_state = 124}, - [361] = {.lex_state = 577}, - [362] = {.lex_state = 44, .external_lex_state = 2}, - [363] = {.lex_state = 124}, - [364] = {.lex_state = 124}, - [365] = {.lex_state = 124}, - [366] = {.lex_state = 44, .external_lex_state = 2}, - [367] = {.lex_state = 44, .external_lex_state = 2}, - [368] = {.lex_state = 124}, - [369] = {.lex_state = 577}, - [370] = {.lex_state = 577}, - [371] = {.lex_state = 44, .external_lex_state = 2}, - [372] = {.lex_state = 577}, - [373] = {.lex_state = 124}, - [374] = {.lex_state = 577}, - [375] = {.lex_state = 577}, - [376] = {.lex_state = 44, .external_lex_state = 2}, - [377] = {.lex_state = 581}, - [378] = {.lex_state = 581}, - [379] = {.lex_state = 44, .external_lex_state = 2}, - [380] = {.lex_state = 44, .external_lex_state = 2}, - [381] = {.lex_state = 577}, - [382] = {.lex_state = 577}, - [383] = {.lex_state = 44, .external_lex_state = 2}, - [384] = {.lex_state = 44, .external_lex_state = 2}, - [385] = {.lex_state = 577}, - [386] = {.lex_state = 44, .external_lex_state = 2}, - [387] = {.lex_state = 44, .external_lex_state = 2}, - [388] = {.lex_state = 577}, - [389] = {.lex_state = 581}, - [390] = {.lex_state = 577}, - [391] = {.lex_state = 577}, - [392] = {.lex_state = 577}, - [393] = {.lex_state = 577}, - [394] = {.lex_state = 577}, - [395] = {.lex_state = 577}, - [396] = {.lex_state = 44, .external_lex_state = 2}, - [397] = {.lex_state = 124}, - [398] = {.lex_state = 583}, - [399] = {.lex_state = 578}, - [400] = {.lex_state = 581}, - [401] = {.lex_state = 581}, - [402] = {.lex_state = 577}, - [403] = {.lex_state = 581}, - [404] = {.lex_state = 577}, - [405] = {.lex_state = 577}, - [406] = {.lex_state = 578}, - [407] = {.lex_state = 583}, - [408] = {.lex_state = 581}, - [409] = {.lex_state = 581}, - [410] = {.lex_state = 581}, - [411] = {.lex_state = 581}, - [412] = {.lex_state = 578}, + [1] = {.lex_state = 628, .external_lex_state = 2}, + [2] = {.lex_state = 33, .external_lex_state = 2}, + [3] = {.lex_state = 33, .external_lex_state = 2}, + [4] = {.lex_state = 33, .external_lex_state = 2}, + [5] = {.lex_state = 33, .external_lex_state = 2}, + [6] = {.lex_state = 33, .external_lex_state = 2}, + [7] = {.lex_state = 33, .external_lex_state = 2}, + [8] = {.lex_state = 33, .external_lex_state = 2}, + [9] = {.lex_state = 33, .external_lex_state = 2}, + [10] = {.lex_state = 33, .external_lex_state = 2}, + [11] = {.lex_state = 33, .external_lex_state = 2}, + [12] = {.lex_state = 33, .external_lex_state = 2}, + [13] = {.lex_state = 33, .external_lex_state = 2}, + [14] = {.lex_state = 33, .external_lex_state = 2}, + [15] = {.lex_state = 33, .external_lex_state = 2}, + [16] = {.lex_state = 620, .external_lex_state = 2}, + [17] = {.lex_state = 620, .external_lex_state = 2}, + [18] = {.lex_state = 620, .external_lex_state = 2}, + [19] = {.lex_state = 620, .external_lex_state = 2}, + [20] = {.lex_state = 620, .external_lex_state = 2}, + [21] = {.lex_state = 620, .external_lex_state = 2}, + [22] = {.lex_state = 620, .external_lex_state = 2}, + [23] = {.lex_state = 620, .external_lex_state = 2}, + [24] = {.lex_state = 620, .external_lex_state = 2}, + [25] = {.lex_state = 620, .external_lex_state = 2}, + [26] = {.lex_state = 620, .external_lex_state = 2}, + [27] = {.lex_state = 620, .external_lex_state = 2}, + [28] = {.lex_state = 620, .external_lex_state = 2}, + [29] = {.lex_state = 620, .external_lex_state = 2}, + [30] = {.lex_state = 620, .external_lex_state = 2}, + [31] = {.lex_state = 620, .external_lex_state = 2}, + [32] = {.lex_state = 620, .external_lex_state = 2}, + [33] = {.lex_state = 620, .external_lex_state = 2}, + [34] = {.lex_state = 620, .external_lex_state = 2}, + [35] = {.lex_state = 31, .external_lex_state = 2}, + [36] = {.lex_state = 620, .external_lex_state = 2}, + [37] = {.lex_state = 31, .external_lex_state = 2}, + [38] = {.lex_state = 31, .external_lex_state = 2}, + [39] = {.lex_state = 620, .external_lex_state = 2}, + [40] = {.lex_state = 31, .external_lex_state = 2}, + [41] = {.lex_state = 620, .external_lex_state = 2}, + [42] = {.lex_state = 620, .external_lex_state = 2}, + [43] = {.lex_state = 31, .external_lex_state = 2}, + [44] = {.lex_state = 620, .external_lex_state = 2}, + [45] = {.lex_state = 31, .external_lex_state = 2}, + [46] = {.lex_state = 31, .external_lex_state = 2}, + [47] = {.lex_state = 620, .external_lex_state = 2}, + [48] = {.lex_state = 31, .external_lex_state = 2}, + [49] = {.lex_state = 620, .external_lex_state = 2}, + [50] = {.lex_state = 620, .external_lex_state = 2}, + [51] = {.lex_state = 31, .external_lex_state = 2}, + [52] = {.lex_state = 620, .external_lex_state = 2}, + [53] = {.lex_state = 31, .external_lex_state = 2}, + [54] = {.lex_state = 620, .external_lex_state = 2}, + [55] = {.lex_state = 31, .external_lex_state = 2}, + [56] = {.lex_state = 620, .external_lex_state = 2}, + [57] = {.lex_state = 31, .external_lex_state = 2}, + [58] = {.lex_state = 620, .external_lex_state = 2}, + [59] = {.lex_state = 31, .external_lex_state = 2}, + [60] = {.lex_state = 620, .external_lex_state = 2}, + [61] = {.lex_state = 31, .external_lex_state = 2}, + [62] = {.lex_state = 620, .external_lex_state = 2}, + [63] = {.lex_state = 31, .external_lex_state = 2}, + [64] = {.lex_state = 620, .external_lex_state = 2}, + [65] = {.lex_state = 620, .external_lex_state = 2}, + [66] = {.lex_state = 31, .external_lex_state = 2}, + [67] = {.lex_state = 620, .external_lex_state = 2}, + [68] = {.lex_state = 31, .external_lex_state = 2}, + [69] = {.lex_state = 31, .external_lex_state = 2}, + [70] = {.lex_state = 31, .external_lex_state = 2}, + [71] = {.lex_state = 31, .external_lex_state = 2}, + [72] = {.lex_state = 31, .external_lex_state = 2}, + [73] = {.lex_state = 31, .external_lex_state = 2}, + [74] = {.lex_state = 31, .external_lex_state = 2}, + [75] = {.lex_state = 31, .external_lex_state = 2}, + [76] = {.lex_state = 620, .external_lex_state = 2}, + [77] = {.lex_state = 620, .external_lex_state = 2}, + [78] = {.lex_state = 620, .external_lex_state = 2}, + [79] = {.lex_state = 620, .external_lex_state = 2}, + [80] = {.lex_state = 620, .external_lex_state = 2}, + [81] = {.lex_state = 620, .external_lex_state = 2}, + [82] = {.lex_state = 620, .external_lex_state = 2}, + [83] = {.lex_state = 620, .external_lex_state = 2}, + [84] = {.lex_state = 620, .external_lex_state = 2}, + [85] = {.lex_state = 620, .external_lex_state = 2}, + [86] = {.lex_state = 620, .external_lex_state = 2}, + [87] = {.lex_state = 620, .external_lex_state = 2}, + [88] = {.lex_state = 620, .external_lex_state = 2}, + [89] = {.lex_state = 620, .external_lex_state = 2}, + [90] = {.lex_state = 620, .external_lex_state = 2}, + [91] = {.lex_state = 620, .external_lex_state = 2}, + [92] = {.lex_state = 1155}, + [93] = {.lex_state = 1170}, + [94] = {.lex_state = 1156}, + [95] = {.lex_state = 1158}, + [96] = {.lex_state = 1171}, + [97] = {.lex_state = 1329}, + [98] = {.lex_state = 1145}, + [99] = {.lex_state = 1156}, + [100] = {.lex_state = 1151}, + [101] = {.lex_state = 1323}, + [102] = {.lex_state = 1147}, + [103] = {.lex_state = 1329}, + [104] = {.lex_state = 1323}, + [105] = {.lex_state = 43, .external_lex_state = 2}, + [106] = {.lex_state = 1325}, + [107] = {.lex_state = 1157}, + [108] = {.lex_state = 1157}, + [109] = {.lex_state = 1157}, + [110] = {.lex_state = 1160}, + [111] = {.lex_state = 1147}, + [112] = {.lex_state = 1325}, + [113] = {.lex_state = 1160}, + [114] = {.lex_state = 1157}, + [115] = {.lex_state = 624, .external_lex_state = 2}, + [116] = {.lex_state = 1327}, + [117] = {.lex_state = 1325}, + [118] = {.lex_state = 1149}, + [119] = {.lex_state = 1149}, + [120] = {.lex_state = 1327}, + [121] = {.lex_state = 1325}, + [122] = {.lex_state = 1162}, + [123] = {.lex_state = 1327}, + [124] = {.lex_state = 1149}, + [125] = {.lex_state = 1162}, + [126] = {.lex_state = 1327}, + [127] = {.lex_state = 1162}, + [128] = {.lex_state = 1173}, + [129] = {.lex_state = 624, .external_lex_state = 2}, + [130] = {.lex_state = 624, .external_lex_state = 2}, + [131] = {.lex_state = 1164}, + [132] = {.lex_state = 1149}, + [133] = {.lex_state = 1162}, + [134] = {.lex_state = 1327}, + [135] = {.lex_state = 1327}, + [136] = {.lex_state = 1166}, + [137] = {.lex_state = 1327}, + [138] = {.lex_state = 1166}, + [139] = {.lex_state = 1327}, + [140] = {.lex_state = 1168}, + [141] = {.lex_state = 1168}, + [142] = {.lex_state = 1168}, + [143] = {.lex_state = 1168}, + [144] = {.lex_state = 1175}, + [145] = {.lex_state = 620, .external_lex_state = 2}, + [146] = {.lex_state = 620, .external_lex_state = 2}, + [147] = {.lex_state = 620, .external_lex_state = 2}, + [148] = {.lex_state = 620, .external_lex_state = 2}, + [149] = {.lex_state = 620, .external_lex_state = 2}, + [150] = {.lex_state = 620, .external_lex_state = 2}, + [151] = {.lex_state = 620, .external_lex_state = 2}, + [152] = {.lex_state = 620, .external_lex_state = 2}, + [153] = {.lex_state = 620, .external_lex_state = 2}, + [154] = {.lex_state = 620, .external_lex_state = 2}, + [155] = {.lex_state = 620, .external_lex_state = 2}, + [156] = {.lex_state = 620, .external_lex_state = 2}, + [157] = {.lex_state = 620, .external_lex_state = 2}, + [158] = {.lex_state = 1153}, + [159] = {.lex_state = 620, .external_lex_state = 2}, + [160] = {.lex_state = 1153}, + [161] = {.lex_state = 1331}, + [162] = {.lex_state = 620, .external_lex_state = 2}, + [163] = {.lex_state = 620, .external_lex_state = 2}, + [164] = {.lex_state = 620, .external_lex_state = 2}, + [165] = {.lex_state = 1331}, + [166] = {.lex_state = 620, .external_lex_state = 2}, + [167] = {.lex_state = 620, .external_lex_state = 2}, + [168] = {.lex_state = 620, .external_lex_state = 2}, + [169] = {.lex_state = 620, .external_lex_state = 2}, + [170] = {.lex_state = 620, .external_lex_state = 2}, + [171] = {.lex_state = 1175}, + [172] = {.lex_state = 620, .external_lex_state = 2}, + [173] = {.lex_state = 1175}, + [174] = {.lex_state = 1175}, + [175] = {.lex_state = 620, .external_lex_state = 2}, + [176] = {.lex_state = 620, .external_lex_state = 2}, + [177] = {.lex_state = 620, .external_lex_state = 2}, + [178] = {.lex_state = 620, .external_lex_state = 2}, + [179] = {.lex_state = 620, .external_lex_state = 2}, + [180] = {.lex_state = 620, .external_lex_state = 2}, + [181] = {.lex_state = 620, .external_lex_state = 2}, + [182] = {.lex_state = 620, .external_lex_state = 2}, + [183] = {.lex_state = 620, .external_lex_state = 2}, + [184] = {.lex_state = 620, .external_lex_state = 2}, + [185] = {.lex_state = 620, .external_lex_state = 2}, + [186] = {.lex_state = 620, .external_lex_state = 2}, + [187] = {.lex_state = 1331}, + [188] = {.lex_state = 620, .external_lex_state = 2}, + [189] = {.lex_state = 620, .external_lex_state = 2}, + [190] = {.lex_state = 1331}, + [191] = {.lex_state = 620, .external_lex_state = 2}, + [192] = {.lex_state = 1177}, + [193] = {.lex_state = 1177}, + [194] = {.lex_state = 44, .external_lex_state = 2}, + [195] = {.lex_state = 36, .external_lex_state = 2}, + [196] = {.lex_state = 36, .external_lex_state = 2}, + [197] = {.lex_state = 36, .external_lex_state = 2}, + [198] = {.lex_state = 36, .external_lex_state = 2}, + [199] = {.lex_state = 36, .external_lex_state = 2}, + [200] = {.lex_state = 36, .external_lex_state = 2}, + [201] = {.lex_state = 36, .external_lex_state = 2}, + [202] = {.lex_state = 36, .external_lex_state = 2}, + [203] = {.lex_state = 36, .external_lex_state = 2}, + [204] = {.lex_state = 36, .external_lex_state = 2}, + [205] = {.lex_state = 36, .external_lex_state = 2}, + [206] = {.lex_state = 36, .external_lex_state = 2}, + [207] = {.lex_state = 36, .external_lex_state = 2}, + [208] = {.lex_state = 36, .external_lex_state = 2}, + [209] = {.lex_state = 36, .external_lex_state = 2}, + [210] = {.lex_state = 36, .external_lex_state = 2}, + [211] = {.lex_state = 36, .external_lex_state = 2}, + [212] = {.lex_state = 36, .external_lex_state = 2}, + [213] = {.lex_state = 36, .external_lex_state = 2}, + [214] = {.lex_state = 36, .external_lex_state = 2}, + [215] = {.lex_state = 36, .external_lex_state = 2}, + [216] = {.lex_state = 36, .external_lex_state = 2}, + [217] = {.lex_state = 36, .external_lex_state = 2}, + [218] = {.lex_state = 36, .external_lex_state = 2}, + [219] = {.lex_state = 36, .external_lex_state = 2}, + [220] = {.lex_state = 36, .external_lex_state = 2}, + [221] = {.lex_state = 36, .external_lex_state = 2}, + [222] = {.lex_state = 36, .external_lex_state = 2}, + [223] = {.lex_state = 36, .external_lex_state = 2}, + [224] = {.lex_state = 36, .external_lex_state = 2}, + [225] = {.lex_state = 36, .external_lex_state = 2}, + [226] = {.lex_state = 36, .external_lex_state = 2}, + [227] = {.lex_state = 36, .external_lex_state = 2}, + [228] = {.lex_state = 36, .external_lex_state = 2}, + [229] = {.lex_state = 36, .external_lex_state = 2}, + [230] = {.lex_state = 36, .external_lex_state = 2}, + [231] = {.lex_state = 36, .external_lex_state = 2}, + [232] = {.lex_state = 36, .external_lex_state = 2}, + [233] = {.lex_state = 36, .external_lex_state = 2}, + [234] = {.lex_state = 36, .external_lex_state = 2}, + [235] = {.lex_state = 36, .external_lex_state = 2}, + [236] = {.lex_state = 36, .external_lex_state = 2}, + [237] = {.lex_state = 36, .external_lex_state = 2}, + [238] = {.lex_state = 36, .external_lex_state = 2}, + [239] = {.lex_state = 36, .external_lex_state = 2}, + [240] = {.lex_state = 36, .external_lex_state = 2}, + [241] = {.lex_state = 36, .external_lex_state = 2}, + [242] = {.lex_state = 36, .external_lex_state = 2}, + [243] = {.lex_state = 36, .external_lex_state = 2}, + [244] = {.lex_state = 36, .external_lex_state = 2}, + [245] = {.lex_state = 36, .external_lex_state = 2}, + [246] = {.lex_state = 36, .external_lex_state = 2}, + [247] = {.lex_state = 36, .external_lex_state = 2}, + [248] = {.lex_state = 36, .external_lex_state = 2}, + [249] = {.lex_state = 36, .external_lex_state = 2}, + [250] = {.lex_state = 36, .external_lex_state = 2}, + [251] = {.lex_state = 36, .external_lex_state = 2}, + [252] = {.lex_state = 36, .external_lex_state = 2}, + [253] = {.lex_state = 36, .external_lex_state = 2}, + [254] = {.lex_state = 36, .external_lex_state = 2}, + [255] = {.lex_state = 36, .external_lex_state = 2}, + [256] = {.lex_state = 36, .external_lex_state = 2}, + [257] = {.lex_state = 36, .external_lex_state = 2}, + [258] = {.lex_state = 36, .external_lex_state = 2}, + [259] = {.lex_state = 36, .external_lex_state = 2}, + [260] = {.lex_state = 36, .external_lex_state = 2}, + [261] = {.lex_state = 36, .external_lex_state = 2}, + [262] = {.lex_state = 36, .external_lex_state = 2}, + [263] = {.lex_state = 36, .external_lex_state = 2}, + [264] = {.lex_state = 36, .external_lex_state = 2}, + [265] = {.lex_state = 36, .external_lex_state = 2}, + [266] = {.lex_state = 36, .external_lex_state = 2}, + [267] = {.lex_state = 1159}, + [268] = {.lex_state = 1330}, + [269] = {.lex_state = 1324}, + [270] = {.lex_state = 1152}, + [271] = {.lex_state = 1146}, + [272] = {.lex_state = 1172}, + [273] = {.lex_state = 1161}, + [274] = {.lex_state = 36, .external_lex_state = 2}, + [275] = {.lex_state = 1326}, + [276] = {.lex_state = 1326}, + [277] = {.lex_state = 1148}, + [278] = {.lex_state = 36, .external_lex_state = 2}, + [279] = {.lex_state = 1148}, + [280] = {.lex_state = 36, .external_lex_state = 2}, + [281] = {.lex_state = 1161}, + [282] = {.lex_state = 36, .external_lex_state = 2}, + [283] = {.lex_state = 36, .external_lex_state = 2}, + [284] = {.lex_state = 1330}, + [285] = {.lex_state = 36, .external_lex_state = 2}, + [286] = {.lex_state = 36, .external_lex_state = 2}, + [287] = {.lex_state = 1324}, + [288] = {.lex_state = 36, .external_lex_state = 2}, + [289] = {.lex_state = 36, .external_lex_state = 2}, + [290] = {.lex_state = 36, .external_lex_state = 2}, + [291] = {.lex_state = 36, .external_lex_state = 2}, + [292] = {.lex_state = 36, .external_lex_state = 2}, + [293] = {.lex_state = 36, .external_lex_state = 2}, + [294] = {.lex_state = 1174}, + [295] = {.lex_state = 1326}, + [296] = {.lex_state = 1165}, + [297] = {.lex_state = 1150}, + [298] = {.lex_state = 1150}, + [299] = {.lex_state = 1328}, + [300] = {.lex_state = 1150}, + [301] = {.lex_state = 1328}, + [302] = {.lex_state = 1328}, + [303] = {.lex_state = 1163}, + [304] = {.lex_state = 1326}, + [305] = {.lex_state = 1328}, + [306] = {.lex_state = 1150}, + [307] = {.lex_state = 1163}, + [308] = {.lex_state = 1163}, + [309] = {.lex_state = 1163}, + [310] = {.lex_state = 1167}, + [311] = {.lex_state = 1167}, + [312] = {.lex_state = 1328}, + [313] = {.lex_state = 1328}, + [314] = {.lex_state = 1328}, + [315] = {.lex_state = 1328}, + [316] = {.lex_state = 1169}, + [317] = {.lex_state = 1169}, + [318] = {.lex_state = 1169}, + [319] = {.lex_state = 1169}, + [320] = {.lex_state = 45, .external_lex_state = 2}, + [321] = {.lex_state = 45, .external_lex_state = 2}, + [322] = {.lex_state = 45, .external_lex_state = 2}, + [323] = {.lex_state = 1332}, + [324] = {.lex_state = 1332}, + [325] = {.lex_state = 1154}, + [326] = {.lex_state = 1176}, + [327] = {.lex_state = 1154}, + [328] = {.lex_state = 1176}, + [329] = {.lex_state = 1332}, + [330] = {.lex_state = 1332}, + [331] = {.lex_state = 1178}, + [332] = {.lex_state = 1178}, + [333] = {.lex_state = 123}, + [334] = {.lex_state = 123}, + [335] = {.lex_state = 573}, + [336] = {.lex_state = 573}, + [337] = {.lex_state = 123}, + [338] = {.lex_state = 45, .external_lex_state = 2}, + [339] = {.lex_state = 123}, + [340] = {.lex_state = 45, .external_lex_state = 2}, + [341] = {.lex_state = 45, .external_lex_state = 2}, + [342] = {.lex_state = 573}, + [343] = {.lex_state = 573}, + [344] = {.lex_state = 45, .external_lex_state = 2}, + [345] = {.lex_state = 45, .external_lex_state = 2}, + [346] = {.lex_state = 573}, + [347] = {.lex_state = 573}, + [348] = {.lex_state = 573}, + [349] = {.lex_state = 573}, + [350] = {.lex_state = 573}, + [351] = {.lex_state = 573}, + [352] = {.lex_state = 45, .external_lex_state = 2}, + [353] = {.lex_state = 123}, + [354] = {.lex_state = 123}, + [355] = {.lex_state = 123}, + [356] = {.lex_state = 123}, + [357] = {.lex_state = 123}, + [358] = {.lex_state = 45, .external_lex_state = 2}, + [359] = {.lex_state = 123}, + [360] = {.lex_state = 123}, + [361] = {.lex_state = 45, .external_lex_state = 2}, + [362] = {.lex_state = 45, .external_lex_state = 2}, + [363] = {.lex_state = 45, .external_lex_state = 2}, + [364] = {.lex_state = 123}, + [365] = {.lex_state = 123}, + [366] = {.lex_state = 45, .external_lex_state = 2}, + [367] = {.lex_state = 123}, + [368] = {.lex_state = 573}, + [369] = {.lex_state = 573}, + [370] = {.lex_state = 45, .external_lex_state = 2}, + [371] = {.lex_state = 573}, + [372] = {.lex_state = 123}, + [373] = {.lex_state = 123}, + [374] = {.lex_state = 573}, + [375] = {.lex_state = 45, .external_lex_state = 2}, + [376] = {.lex_state = 573}, + [377] = {.lex_state = 45, .external_lex_state = 2}, + [378] = {.lex_state = 573}, + [379] = {.lex_state = 573}, + [380] = {.lex_state = 573}, + [381] = {.lex_state = 45, .external_lex_state = 2}, + [382] = {.lex_state = 45, .external_lex_state = 2}, + [383] = {.lex_state = 45, .external_lex_state = 2}, + [384] = {.lex_state = 573}, + [385] = {.lex_state = 45, .external_lex_state = 2}, + [386] = {.lex_state = 573}, + [387] = {.lex_state = 577}, + [388] = {.lex_state = 45, .external_lex_state = 2}, + [389] = {.lex_state = 573}, + [390] = {.lex_state = 45, .external_lex_state = 2}, + [391] = {.lex_state = 123}, + [392] = {.lex_state = 45, .external_lex_state = 2}, + [393] = {.lex_state = 45, .external_lex_state = 2}, + [394] = {.lex_state = 45, .external_lex_state = 2}, + [395] = {.lex_state = 573}, + [396] = {.lex_state = 573}, + [397] = {.lex_state = 573}, + [398] = {.lex_state = 577}, + [399] = {.lex_state = 45, .external_lex_state = 2}, + [400] = {.lex_state = 577}, + [401] = {.lex_state = 573}, + [402] = {.lex_state = 574}, + [403] = {.lex_state = 577}, + [404] = {.lex_state = 574}, + [405] = {.lex_state = 573}, + [406] = {.lex_state = 573}, + [407] = {.lex_state = 577}, + [408] = {.lex_state = 577}, + [409] = {.lex_state = 574}, + [410] = {.lex_state = 579}, + [411] = {.lex_state = 577}, + [412] = {.lex_state = 577}, [413] = {.lex_state = 577}, - [414] = {.lex_state = 578}, - [415] = {.lex_state = 578}, - [416] = {.lex_state = 583}, - [417] = {.lex_state = 577}, - [418] = {.lex_state = 583}, - [419] = {.lex_state = 581}, - [420] = {.lex_state = 578}, - [421] = {.lex_state = 585}, - [422] = {.lex_state = 589}, - [423] = {.lex_state = 578}, - [424] = {.lex_state = 578}, - [425] = {.lex_state = 578}, - [426] = {.lex_state = 578}, - [427] = {.lex_state = 578}, - [428] = {.lex_state = 578}, - [429] = {.lex_state = 578}, - [430] = {.lex_state = 581}, - [431] = {.lex_state = 577}, - [432] = {.lex_state = 577}, - [433] = {.lex_state = 585}, - [434] = {.lex_state = 577}, - [435] = {.lex_state = 591}, - [436] = {.lex_state = 591}, - [437] = {.lex_state = 578}, - [438] = {.lex_state = 577}, - [439] = {.lex_state = 577}, - [440] = {.lex_state = 578}, - [441] = {.lex_state = 578}, - [442] = {.lex_state = 595}, - [443] = {.lex_state = 581}, - [444] = {.lex_state = 587}, + [414] = {.lex_state = 579}, + [415] = {.lex_state = 573}, + [416] = {.lex_state = 577}, + [417] = {.lex_state = 574}, + [418] = {.lex_state = 579}, + [419] = {.lex_state = 577}, + [420] = {.lex_state = 574}, + [421] = {.lex_state = 574}, + [422] = {.lex_state = 581}, + [423] = {.lex_state = 585}, + [424] = {.lex_state = 573}, + [425] = {.lex_state = 579}, + [426] = {.lex_state = 574}, + [427] = {.lex_state = 574}, + [428] = {.lex_state = 617}, + [429] = {.lex_state = 574}, + [430] = {.lex_state = 574}, + [431] = {.lex_state = 573}, + [432] = {.lex_state = 574}, + [433] = {.lex_state = 573}, + [434] = {.lex_state = 574}, + [435] = {.lex_state = 577}, + [436] = {.lex_state = 573}, + [437] = {.lex_state = 574}, + [438] = {.lex_state = 589}, + [439] = {.lex_state = 573}, + [440] = {.lex_state = 581}, + [441] = {.lex_state = 583}, + [442] = {.lex_state = 574}, + [443] = {.lex_state = 585}, + [444] = {.lex_state = 574}, [445] = {.lex_state = 577}, - [446] = {.lex_state = 593}, - [447] = {.lex_state = 578}, - [448] = {.lex_state = 581}, - [449] = {.lex_state = 581}, - [450] = {.lex_state = 581}, - [451] = {.lex_state = 581}, - [452] = {.lex_state = 581}, - [453] = {.lex_state = 577}, - [454] = {.lex_state = 589}, - [455] = {.lex_state = 40, .external_lex_state = 2}, - [456] = {.lex_state = 40, .external_lex_state = 2}, - [457] = {.lex_state = 40, .external_lex_state = 2}, - [458] = {.lex_state = 40, .external_lex_state = 2}, - [459] = {.lex_state = 597}, - [460] = {.lex_state = 40, .external_lex_state = 2}, - [461] = {.lex_state = 40, .external_lex_state = 2}, - [462] = {.lex_state = 593}, - [463] = {.lex_state = 593}, - [464] = {.lex_state = 44, .external_lex_state = 2}, - [465] = {.lex_state = 578}, - [466] = {.lex_state = 578}, - [467] = {.lex_state = 593}, - [468] = {.lex_state = 40, .external_lex_state = 2}, - [469] = {.lex_state = 591}, - [470] = {.lex_state = 597}, - [471] = {.lex_state = 577}, - [472] = {.lex_state = 591}, - [473] = {.lex_state = 593}, - [474] = {.lex_state = 577}, - [475] = {.lex_state = 40, .external_lex_state = 2}, - [476] = {.lex_state = 593}, - [477] = {.lex_state = 595}, - [478] = {.lex_state = 578}, - [479] = {.lex_state = 578}, - [480] = {.lex_state = 578}, - [481] = {.lex_state = 587}, - [482] = {.lex_state = 578}, - [483] = {.lex_state = 578}, - [484] = {.lex_state = 578}, - [485] = {.lex_state = 578}, - [486] = {.lex_state = 578}, - [487] = {.lex_state = 578}, - [488] = {.lex_state = 578}, - [489] = {.lex_state = 578}, - [490] = {.lex_state = 599}, - [491] = {.lex_state = 578}, - [492] = {.lex_state = 578}, - [493] = {.lex_state = 578}, - [494] = {.lex_state = 578}, - [495] = {.lex_state = 593}, - [496] = {.lex_state = 578}, - [497] = {.lex_state = 578}, - [498] = {.lex_state = 578}, - [499] = {.lex_state = 593}, - [500] = {.lex_state = 599}, - [501] = {.lex_state = 40, .external_lex_state = 2}, - [502] = {.lex_state = 578}, - [503] = {.lex_state = 599}, - [504] = {.lex_state = 41, .external_lex_state = 2}, - [505] = {.lex_state = 41, .external_lex_state = 2}, - [506] = {.lex_state = 41, .external_lex_state = 2}, - [507] = {.lex_state = 41, .external_lex_state = 2}, - [508] = {.lex_state = 41, .external_lex_state = 2}, - [509] = {.lex_state = 41, .external_lex_state = 2}, - [510] = {.lex_state = 41, .external_lex_state = 2}, + [446] = {.lex_state = 587}, + [447] = {.lex_state = 573}, + [448] = {.lex_state = 574}, + [449] = {.lex_state = 587}, + [450] = {.lex_state = 577}, + [451] = {.lex_state = 573}, + [452] = {.lex_state = 577}, + [453] = {.lex_state = 591}, + [454] = {.lex_state = 573}, + [455] = {.lex_state = 577}, + [456] = {.lex_state = 577}, + [457] = {.lex_state = 577}, + [458] = {.lex_state = 574}, + [459] = {.lex_state = 41, .external_lex_state = 2}, + [460] = {.lex_state = 41, .external_lex_state = 2}, + [461] = {.lex_state = 589}, + [462] = {.lex_state = 41, .external_lex_state = 2}, + [463] = {.lex_state = 589}, + [464] = {.lex_state = 593}, + [465] = {.lex_state = 45, .external_lex_state = 2}, + [466] = {.lex_state = 589}, + [467] = {.lex_state = 41, .external_lex_state = 2}, + [468] = {.lex_state = 589}, + [469] = {.lex_state = 587}, + [470] = {.lex_state = 41, .external_lex_state = 2}, + [471] = {.lex_state = 574}, + [472] = {.lex_state = 41, .external_lex_state = 2}, + [473] = {.lex_state = 41, .external_lex_state = 2}, + [474] = {.lex_state = 587}, + [475] = {.lex_state = 41, .external_lex_state = 2}, + [476] = {.lex_state = 41, .external_lex_state = 2}, + [477] = {.lex_state = 41, .external_lex_state = 2}, + [478] = {.lex_state = 573}, + [479] = {.lex_state = 41, .external_lex_state = 2}, + [480] = {.lex_state = 41, .external_lex_state = 2}, + [481] = {.lex_state = 573}, + [482] = {.lex_state = 593}, + [483] = {.lex_state = 574}, + [484] = {.lex_state = 574}, + [485] = {.lex_state = 574}, + [486] = {.lex_state = 574}, + [487] = {.lex_state = 574}, + [488] = {.lex_state = 595}, + [489] = {.lex_state = 589}, + [490] = {.lex_state = 574}, + [491] = {.lex_state = 574}, + [492] = {.lex_state = 574}, + [493] = {.lex_state = 574}, + [494] = {.lex_state = 574}, + [495] = {.lex_state = 574}, + [496] = {.lex_state = 574}, + [497] = {.lex_state = 595}, + [498] = {.lex_state = 574}, + [499] = {.lex_state = 589}, + [500] = {.lex_state = 574}, + [501] = {.lex_state = 589}, + [502] = {.lex_state = 574}, + [503] = {.lex_state = 574}, + [504] = {.lex_state = 574}, + [505] = {.lex_state = 574}, + [506] = {.lex_state = 574}, + [507] = {.lex_state = 591}, + [508] = {.lex_state = 583}, + [509] = {.lex_state = 574}, + [510] = {.lex_state = 595}, [511] = {.lex_state = 41, .external_lex_state = 2}, - [512] = {.lex_state = 41, .external_lex_state = 2}, - [513] = {.lex_state = 41, .external_lex_state = 2}, - [514] = {.lex_state = 41, .external_lex_state = 2}, - [515] = {.lex_state = 41, .external_lex_state = 2}, - [516] = {.lex_state = 41, .external_lex_state = 2}, - [517] = {.lex_state = 578}, - [518] = {.lex_state = 578}, - [519] = {.lex_state = 41, .external_lex_state = 2}, - [520] = {.lex_state = 41, .external_lex_state = 2}, - [521] = {.lex_state = 41, .external_lex_state = 2}, - [522] = {.lex_state = 41, .external_lex_state = 2}, - [523] = {.lex_state = 41, .external_lex_state = 2}, - [524] = {.lex_state = 41, .external_lex_state = 2}, - [525] = {.lex_state = 41, .external_lex_state = 2}, - [526] = {.lex_state = 41, .external_lex_state = 2}, - [527] = {.lex_state = 41, .external_lex_state = 2}, - [528] = {.lex_state = 41, .external_lex_state = 2}, + [512] = {.lex_state = 42, .external_lex_state = 2}, + [513] = {.lex_state = 42, .external_lex_state = 2}, + [514] = {.lex_state = 42, .external_lex_state = 2}, + [515] = {.lex_state = 42, .external_lex_state = 2}, + [516] = {.lex_state = 42, .external_lex_state = 2}, + [517] = {.lex_state = 42, .external_lex_state = 2}, + [518] = {.lex_state = 42, .external_lex_state = 2}, + [519] = {.lex_state = 42, .external_lex_state = 2}, + [520] = {.lex_state = 42, .external_lex_state = 2}, + [521] = {.lex_state = 42, .external_lex_state = 2}, + [522] = {.lex_state = 42, .external_lex_state = 2}, + [523] = {.lex_state = 42, .external_lex_state = 2}, + [524] = {.lex_state = 42, .external_lex_state = 2}, + [525] = {.lex_state = 42, .external_lex_state = 2}, + [526] = {.lex_state = 595}, + [527] = {.lex_state = 608}, + [528] = {.lex_state = 595}, [529] = {.lex_state = 41, .external_lex_state = 2}, - [530] = {.lex_state = 41, .external_lex_state = 2}, - [531] = {.lex_state = 41, .external_lex_state = 2}, - [532] = {.lex_state = 41, .external_lex_state = 2}, - [533] = {.lex_state = 41, .external_lex_state = 2}, - [534] = {.lex_state = 41, .external_lex_state = 2}, - [535] = {.lex_state = 41, .external_lex_state = 2}, - [536] = {.lex_state = 41, .external_lex_state = 2}, - [537] = {.lex_state = 41, .external_lex_state = 2}, - [538] = {.lex_state = 41, .external_lex_state = 2}, - [539] = {.lex_state = 41, .external_lex_state = 2}, - [540] = {.lex_state = 611}, - [541] = {.lex_state = 41, .external_lex_state = 2}, - [542] = {.lex_state = 41, .external_lex_state = 2}, - [543] = {.lex_state = 41, .external_lex_state = 2}, - [544] = {.lex_state = 41, .external_lex_state = 2}, - [545] = {.lex_state = 41, .external_lex_state = 2}, - [546] = {.lex_state = 41, .external_lex_state = 2}, - [547] = {.lex_state = 41, .external_lex_state = 2}, - [548] = {.lex_state = 41, .external_lex_state = 2}, - [549] = {.lex_state = 41, .external_lex_state = 2}, - [550] = {.lex_state = 41, .external_lex_state = 2}, - [551] = {.lex_state = 41, .external_lex_state = 2}, - [552] = {.lex_state = 41, .external_lex_state = 2}, - [553] = {.lex_state = 41, .external_lex_state = 2}, - [554] = {.lex_state = 41, .external_lex_state = 2}, - [555] = {.lex_state = 41, .external_lex_state = 2}, - [556] = {.lex_state = 41, .external_lex_state = 2}, - [557] = {.lex_state = 41, .external_lex_state = 2}, - [558] = {.lex_state = 41, .external_lex_state = 2}, - [559] = {.lex_state = 41, .external_lex_state = 2}, - [560] = {.lex_state = 41, .external_lex_state = 2}, - [561] = {.lex_state = 41, .external_lex_state = 2}, - [562] = {.lex_state = 41, .external_lex_state = 2}, - [563] = {.lex_state = 41, .external_lex_state = 2}, - [564] = {.lex_state = 41, .external_lex_state = 2}, - [565] = {.lex_state = 41, .external_lex_state = 2}, - [566] = {.lex_state = 41, .external_lex_state = 2}, - [567] = {.lex_state = 41, .external_lex_state = 2}, - [568] = {.lex_state = 41, .external_lex_state = 2}, - [569] = {.lex_state = 41, .external_lex_state = 2}, - [570] = {.lex_state = 41, .external_lex_state = 2}, - [571] = {.lex_state = 41, .external_lex_state = 2}, - [572] = {.lex_state = 41, .external_lex_state = 2}, - [573] = {.lex_state = 41, .external_lex_state = 2}, - [574] = {.lex_state = 41, .external_lex_state = 2}, - [575] = {.lex_state = 41, .external_lex_state = 2}, - [576] = {.lex_state = 41, .external_lex_state = 2}, - [577] = {.lex_state = 41, .external_lex_state = 2}, - [578] = {.lex_state = 41, .external_lex_state = 2}, - [579] = {.lex_state = 41, .external_lex_state = 2}, - [580] = {.lex_state = 41, .external_lex_state = 2}, - [581] = {.lex_state = 41, .external_lex_state = 2}, - [582] = {.lex_state = 41, .external_lex_state = 2}, - [583] = {.lex_state = 41, .external_lex_state = 2}, + [530] = {.lex_state = 45, .external_lex_state = 2}, + [531] = {.lex_state = 42, .external_lex_state = 2}, + [532] = {.lex_state = 45, .external_lex_state = 2}, + [533] = {.lex_state = 42, .external_lex_state = 2}, + [534] = {.lex_state = 42, .external_lex_state = 2}, + [535] = {.lex_state = 42, .external_lex_state = 2}, + [536] = {.lex_state = 42, .external_lex_state = 2}, + [537] = {.lex_state = 42, .external_lex_state = 2}, + [538] = {.lex_state = 42, .external_lex_state = 2}, + [539] = {.lex_state = 42, .external_lex_state = 2}, + [540] = {.lex_state = 42, .external_lex_state = 2}, + [541] = {.lex_state = 42, .external_lex_state = 2}, + [542] = {.lex_state = 42, .external_lex_state = 2}, + [543] = {.lex_state = 42, .external_lex_state = 2}, + [544] = {.lex_state = 42, .external_lex_state = 2}, + [545] = {.lex_state = 42, .external_lex_state = 2}, + [546] = {.lex_state = 42, .external_lex_state = 2}, + [547] = {.lex_state = 42, .external_lex_state = 2}, + [548] = {.lex_state = 42, .external_lex_state = 2}, + [549] = {.lex_state = 42, .external_lex_state = 2}, + [550] = {.lex_state = 42, .external_lex_state = 2}, + [551] = {.lex_state = 42, .external_lex_state = 2}, + [552] = {.lex_state = 42, .external_lex_state = 2}, + [553] = {.lex_state = 42, .external_lex_state = 2}, + [554] = {.lex_state = 42, .external_lex_state = 2}, + [555] = {.lex_state = 42, .external_lex_state = 2}, + [556] = {.lex_state = 42, .external_lex_state = 2}, + [557] = {.lex_state = 42, .external_lex_state = 2}, + [558] = {.lex_state = 42, .external_lex_state = 2}, + [559] = {.lex_state = 42, .external_lex_state = 2}, + [560] = {.lex_state = 42, .external_lex_state = 2}, + [561] = {.lex_state = 42, .external_lex_state = 2}, + [562] = {.lex_state = 42, .external_lex_state = 2}, + [563] = {.lex_state = 42, .external_lex_state = 2}, + [564] = {.lex_state = 42, .external_lex_state = 2}, + [565] = {.lex_state = 42, .external_lex_state = 2}, + [566] = {.lex_state = 42, .external_lex_state = 2}, + [567] = {.lex_state = 42, .external_lex_state = 2}, + [568] = {.lex_state = 42, .external_lex_state = 2}, + [569] = {.lex_state = 42, .external_lex_state = 2}, + [570] = {.lex_state = 42, .external_lex_state = 2}, + [571] = {.lex_state = 42, .external_lex_state = 2}, + [572] = {.lex_state = 42, .external_lex_state = 2}, + [573] = {.lex_state = 42, .external_lex_state = 2}, + [574] = {.lex_state = 42, .external_lex_state = 2}, + [575] = {.lex_state = 42, .external_lex_state = 2}, + [576] = {.lex_state = 42, .external_lex_state = 2}, + [577] = {.lex_state = 42, .external_lex_state = 2}, + [578] = {.lex_state = 42, .external_lex_state = 2}, + [579] = {.lex_state = 42, .external_lex_state = 2}, + [580] = {.lex_state = 42, .external_lex_state = 2}, + [581] = {.lex_state = 42, .external_lex_state = 2}, + [582] = {.lex_state = 42, .external_lex_state = 2}, + [583] = {.lex_state = 608}, [584] = {.lex_state = 41, .external_lex_state = 2}, - [585] = {.lex_state = 41, .external_lex_state = 2}, - [586] = {.lex_state = 41, .external_lex_state = 2}, - [587] = {.lex_state = 41, .external_lex_state = 2}, - [588] = {.lex_state = 41, .external_lex_state = 2}, - [589] = {.lex_state = 41, .external_lex_state = 2}, - [590] = {.lex_state = 41, .external_lex_state = 2}, - [591] = {.lex_state = 41, .external_lex_state = 2}, - [592] = {.lex_state = 41, .external_lex_state = 2}, - [593] = {.lex_state = 41, .external_lex_state = 2}, - [594] = {.lex_state = 41, .external_lex_state = 2}, - [595] = {.lex_state = 41, .external_lex_state = 2}, - [596] = {.lex_state = 41, .external_lex_state = 2}, - [597] = {.lex_state = 41, .external_lex_state = 2}, - [598] = {.lex_state = 41, .external_lex_state = 2}, - [599] = {.lex_state = 41, .external_lex_state = 2}, - [600] = {.lex_state = 41, .external_lex_state = 2}, - [601] = {.lex_state = 41, .external_lex_state = 2}, - [602] = {.lex_state = 41, .external_lex_state = 2}, - [603] = {.lex_state = 41, .external_lex_state = 2}, - [604] = {.lex_state = 41, .external_lex_state = 2}, - [605] = {.lex_state = 41, .external_lex_state = 2}, - [606] = {.lex_state = 41, .external_lex_state = 2}, - [607] = {.lex_state = 41, .external_lex_state = 2}, - [608] = {.lex_state = 41, .external_lex_state = 2}, - [609] = {.lex_state = 41, .external_lex_state = 2}, - [610] = {.lex_state = 41, .external_lex_state = 2}, - [611] = {.lex_state = 41, .external_lex_state = 2}, - [612] = {.lex_state = 41, .external_lex_state = 2}, - [613] = {.lex_state = 41, .external_lex_state = 2}, - [614] = {.lex_state = 41, .external_lex_state = 2}, - [615] = {.lex_state = 597}, - [616] = {.lex_state = 41, .external_lex_state = 2}, - [617] = {.lex_state = 41, .external_lex_state = 2}, - [618] = {.lex_state = 40, .external_lex_state = 2}, - [619] = {.lex_state = 41, .external_lex_state = 2}, - [620] = {.lex_state = 41, .external_lex_state = 2}, - [621] = {.lex_state = 41, .external_lex_state = 2}, - [622] = {.lex_state = 41, .external_lex_state = 2}, - [623] = {.lex_state = 41, .external_lex_state = 2}, - [624] = {.lex_state = 41, .external_lex_state = 2}, - [625] = {.lex_state = 40, .external_lex_state = 2}, - [626] = {.lex_state = 41, .external_lex_state = 2}, - [627] = {.lex_state = 41, .external_lex_state = 2}, - [628] = {.lex_state = 41, .external_lex_state = 2}, - [629] = {.lex_state = 44, .external_lex_state = 2}, - [630] = {.lex_state = 44, .external_lex_state = 2}, - [631] = {.lex_state = 41, .external_lex_state = 2}, - [632] = {.lex_state = 41, .external_lex_state = 2}, - [633] = {.lex_state = 41, .external_lex_state = 2}, - [634] = {.lex_state = 41, .external_lex_state = 2}, - [635] = {.lex_state = 41, .external_lex_state = 2}, - [636] = {.lex_state = 41, .external_lex_state = 2}, - [637] = {.lex_state = 41, .external_lex_state = 2}, - [638] = {.lex_state = 41, .external_lex_state = 2}, - [639] = {.lex_state = 41, .external_lex_state = 2}, - [640] = {.lex_state = 41, .external_lex_state = 2}, - [641] = {.lex_state = 41, .external_lex_state = 2}, - [642] = {.lex_state = 599}, - [643] = {.lex_state = 41, .external_lex_state = 2}, - [644] = {.lex_state = 41, .external_lex_state = 2}, - [645] = {.lex_state = 599}, - [646] = {.lex_state = 41, .external_lex_state = 2}, - [647] = {.lex_state = 41, .external_lex_state = 2}, - [648] = {.lex_state = 41, .external_lex_state = 2}, - [649] = {.lex_state = 41, .external_lex_state = 2}, - [650] = {.lex_state = 41, .external_lex_state = 2}, - [651] = {.lex_state = 41, .external_lex_state = 2}, - [652] = {.lex_state = 41, .external_lex_state = 2}, - [653] = {.lex_state = 41, .external_lex_state = 2}, - [654] = {.lex_state = 41, .external_lex_state = 2}, - [655] = {.lex_state = 41, .external_lex_state = 2}, - [656] = {.lex_state = 41, .external_lex_state = 2}, - [657] = {.lex_state = 44, .external_lex_state = 2}, - [658] = {.lex_state = 41, .external_lex_state = 2}, - [659] = {.lex_state = 41, .external_lex_state = 2}, - [660] = {.lex_state = 41, .external_lex_state = 2}, - [661] = {.lex_state = 41, .external_lex_state = 2}, - [662] = {.lex_state = 41, .external_lex_state = 2}, - [663] = {.lex_state = 41, .external_lex_state = 2}, - [664] = {.lex_state = 597}, - [665] = {.lex_state = 41, .external_lex_state = 2}, - [666] = {.lex_state = 41, .external_lex_state = 2}, - [667] = {.lex_state = 41, .external_lex_state = 2}, - [668] = {.lex_state = 41, .external_lex_state = 2}, - [669] = {.lex_state = 41, .external_lex_state = 2}, - [670] = {.lex_state = 41, .external_lex_state = 2}, - [671] = {.lex_state = 41, .external_lex_state = 2}, - [672] = {.lex_state = 601}, - [673] = {.lex_state = 599}, - [674] = {.lex_state = 578}, - [675] = {.lex_state = 578}, - [676] = {.lex_state = 578}, - [677] = {.lex_state = 578}, - [678] = {.lex_state = 599}, - [679] = {.lex_state = 578}, - [680] = {.lex_state = 599}, - [681] = {.lex_state = 578}, - [682] = {.lex_state = 578}, - [683] = {.lex_state = 578}, - [684] = {.lex_state = 599}, - [685] = {.lex_state = 578}, - [686] = {.lex_state = 578}, - [687] = {.lex_state = 578}, - [688] = {.lex_state = 578}, - [689] = {.lex_state = 578}, - [690] = {.lex_state = 578}, - [691] = {.lex_state = 611}, - [692] = {.lex_state = 578}, - [693] = {.lex_state = 599}, - [694] = {.lex_state = 578}, - [695] = {.lex_state = 578}, - [696] = {.lex_state = 603}, - [697] = {.lex_state = 578}, - [698] = {.lex_state = 578}, - [699] = {.lex_state = 578}, - [700] = {.lex_state = 578}, - [701] = {.lex_state = 578}, - [702] = {.lex_state = 578}, - [703] = {.lex_state = 578}, - [704] = {.lex_state = 578}, - [705] = {.lex_state = 578}, - [706] = {.lex_state = 578}, - [707] = {.lex_state = 578}, - [708] = {.lex_state = 578}, - [709] = {.lex_state = 578}, - [710] = {.lex_state = 578}, - [711] = {.lex_state = 578}, - [712] = {.lex_state = 578}, - [713] = {.lex_state = 41, .external_lex_state = 2}, - [714] = {.lex_state = 41, .external_lex_state = 2}, - [715] = {.lex_state = 41, .external_lex_state = 2}, - [716] = {.lex_state = 41, .external_lex_state = 2}, - [717] = {.lex_state = 41, .external_lex_state = 2}, - [718] = {.lex_state = 41, .external_lex_state = 2}, - [719] = {.lex_state = 578}, - [720] = {.lex_state = 578}, - [721] = {.lex_state = 578}, - [722] = {.lex_state = 578}, - [723] = {.lex_state = 578}, - [724] = {.lex_state = 578}, - [725] = {.lex_state = 41, .external_lex_state = 2}, - [726] = {.lex_state = 578}, - [727] = {.lex_state = 578}, - [728] = {.lex_state = 578}, - [729] = {.lex_state = 578}, - [730] = {.lex_state = 578}, - [731] = {.lex_state = 41, .external_lex_state = 2}, - [732] = {.lex_state = 41, .external_lex_state = 2}, - [733] = {.lex_state = 41, .external_lex_state = 2}, - [734] = {.lex_state = 41, .external_lex_state = 2}, - [735] = {.lex_state = 578}, - [736] = {.lex_state = 578}, - [737] = {.lex_state = 578}, - [738] = {.lex_state = 578}, - [739] = {.lex_state = 578}, - [740] = {.lex_state = 578}, - [741] = {.lex_state = 578}, - [742] = {.lex_state = 578}, - [743] = {.lex_state = 578}, - [744] = {.lex_state = 578}, - [745] = {.lex_state = 41, .external_lex_state = 2}, - [746] = {.lex_state = 578}, - [747] = {.lex_state = 578}, - [748] = {.lex_state = 41, .external_lex_state = 2}, - [749] = {.lex_state = 41, .external_lex_state = 2}, - [750] = {.lex_state = 41, .external_lex_state = 2}, - [751] = {.lex_state = 41, .external_lex_state = 2}, - [752] = {.lex_state = 41, .external_lex_state = 2}, - [753] = {.lex_state = 41, .external_lex_state = 2}, - [754] = {.lex_state = 41, .external_lex_state = 2}, - [755] = {.lex_state = 41, .external_lex_state = 2}, - [756] = {.lex_state = 41, .external_lex_state = 2}, - [757] = {.lex_state = 41, .external_lex_state = 2}, - [758] = {.lex_state = 41, .external_lex_state = 2}, - [759] = {.lex_state = 41, .external_lex_state = 2}, - [760] = {.lex_state = 41, .external_lex_state = 2}, - [761] = {.lex_state = 578}, - [762] = {.lex_state = 41, .external_lex_state = 2}, - [763] = {.lex_state = 578}, - [764] = {.lex_state = 578}, - [765] = {.lex_state = 41, .external_lex_state = 2}, - [766] = {.lex_state = 578}, - [767] = {.lex_state = 578}, - [768] = {.lex_state = 41, .external_lex_state = 2}, - [769] = {.lex_state = 578}, - [770] = {.lex_state = 578}, - [771] = {.lex_state = 578}, - [772] = {.lex_state = 578}, - [773] = {.lex_state = 578}, - [774] = {.lex_state = 578}, - [775] = {.lex_state = 578}, - [776] = {.lex_state = 578}, - [777] = {.lex_state = 578}, - [778] = {.lex_state = 578}, - [779] = {.lex_state = 611}, - [780] = {.lex_state = 578}, - [781] = {.lex_state = 578}, - [782] = {.lex_state = 578}, - [783] = {.lex_state = 578}, - [784] = {.lex_state = 578}, - [785] = {.lex_state = 578}, - [786] = {.lex_state = 603}, - [787] = {.lex_state = 578}, - [788] = {.lex_state = 36, .external_lex_state = 2}, - [789] = {.lex_state = 40, .external_lex_state = 2}, - [790] = {.lex_state = 578}, - [791] = {.lex_state = 601}, - [792] = {.lex_state = 578}, - [793] = {.lex_state = 578}, - [794] = {.lex_state = 578}, - [795] = {.lex_state = 605}, - [796] = {.lex_state = 41, .external_lex_state = 2}, - [797] = {.lex_state = 578}, - [798] = {.lex_state = 578}, - [799] = {.lex_state = 578}, - [800] = {.lex_state = 578}, - [801] = {.lex_state = 578}, - [802] = {.lex_state = 578}, - [803] = {.lex_state = 578}, - [804] = {.lex_state = 578}, - [805] = {.lex_state = 578}, - [806] = {.lex_state = 578}, - [807] = {.lex_state = 578}, - [808] = {.lex_state = 578}, - [809] = {.lex_state = 578}, - [810] = {.lex_state = 578}, - [811] = {.lex_state = 41, .external_lex_state = 2}, - [812] = {.lex_state = 41, .external_lex_state = 2}, + [585] = {.lex_state = 42, .external_lex_state = 2}, + [586] = {.lex_state = 42, .external_lex_state = 2}, + [587] = {.lex_state = 42, .external_lex_state = 2}, + [588] = {.lex_state = 42, .external_lex_state = 2}, + [589] = {.lex_state = 42, .external_lex_state = 2}, + [590] = {.lex_state = 42, .external_lex_state = 2}, + [591] = {.lex_state = 42, .external_lex_state = 2}, + [592] = {.lex_state = 42, .external_lex_state = 2}, + [593] = {.lex_state = 42, .external_lex_state = 2}, + [594] = {.lex_state = 42, .external_lex_state = 2}, + [595] = {.lex_state = 42, .external_lex_state = 2}, + [596] = {.lex_state = 42, .external_lex_state = 2}, + [597] = {.lex_state = 42, .external_lex_state = 2}, + [598] = {.lex_state = 42, .external_lex_state = 2}, + [599] = {.lex_state = 45, .external_lex_state = 2}, + [600] = {.lex_state = 42, .external_lex_state = 2}, + [601] = {.lex_state = 593}, + [602] = {.lex_state = 42, .external_lex_state = 2}, + [603] = {.lex_state = 42, .external_lex_state = 2}, + [604] = {.lex_state = 42, .external_lex_state = 2}, + [605] = {.lex_state = 42, .external_lex_state = 2}, + [606] = {.lex_state = 574}, + [607] = {.lex_state = 42, .external_lex_state = 2}, + [608] = {.lex_state = 42, .external_lex_state = 2}, + [609] = {.lex_state = 42, .external_lex_state = 2}, + [610] = {.lex_state = 42, .external_lex_state = 2}, + [611] = {.lex_state = 42, .external_lex_state = 2}, + [612] = {.lex_state = 42, .external_lex_state = 2}, + [613] = {.lex_state = 42, .external_lex_state = 2}, + [614] = {.lex_state = 42, .external_lex_state = 2}, + [615] = {.lex_state = 42, .external_lex_state = 2}, + [616] = {.lex_state = 42, .external_lex_state = 2}, + [617] = {.lex_state = 42, .external_lex_state = 2}, + [618] = {.lex_state = 42, .external_lex_state = 2}, + [619] = {.lex_state = 42, .external_lex_state = 2}, + [620] = {.lex_state = 42, .external_lex_state = 2}, + [621] = {.lex_state = 42, .external_lex_state = 2}, + [622] = {.lex_state = 574}, + [623] = {.lex_state = 42, .external_lex_state = 2}, + [624] = {.lex_state = 42, .external_lex_state = 2}, + [625] = {.lex_state = 42, .external_lex_state = 2}, + [626] = {.lex_state = 42, .external_lex_state = 2}, + [627] = {.lex_state = 42, .external_lex_state = 2}, + [628] = {.lex_state = 42, .external_lex_state = 2}, + [629] = {.lex_state = 42, .external_lex_state = 2}, + [630] = {.lex_state = 42, .external_lex_state = 2}, + [631] = {.lex_state = 42, .external_lex_state = 2}, + [632] = {.lex_state = 42, .external_lex_state = 2}, + [633] = {.lex_state = 42, .external_lex_state = 2}, + [634] = {.lex_state = 42, .external_lex_state = 2}, + [635] = {.lex_state = 42, .external_lex_state = 2}, + [636] = {.lex_state = 42, .external_lex_state = 2}, + [637] = {.lex_state = 42, .external_lex_state = 2}, + [638] = {.lex_state = 42, .external_lex_state = 2}, + [639] = {.lex_state = 42, .external_lex_state = 2}, + [640] = {.lex_state = 42, .external_lex_state = 2}, + [641] = {.lex_state = 42, .external_lex_state = 2}, + [642] = {.lex_state = 42, .external_lex_state = 2}, + [643] = {.lex_state = 42, .external_lex_state = 2}, + [644] = {.lex_state = 42, .external_lex_state = 2}, + [645] = {.lex_state = 42, .external_lex_state = 2}, + [646] = {.lex_state = 42, .external_lex_state = 2}, + [647] = {.lex_state = 42, .external_lex_state = 2}, + [648] = {.lex_state = 42, .external_lex_state = 2}, + [649] = {.lex_state = 42, .external_lex_state = 2}, + [650] = {.lex_state = 42, .external_lex_state = 2}, + [651] = {.lex_state = 42, .external_lex_state = 2}, + [652] = {.lex_state = 42, .external_lex_state = 2}, + [653] = {.lex_state = 42, .external_lex_state = 2}, + [654] = {.lex_state = 42, .external_lex_state = 2}, + [655] = {.lex_state = 42, .external_lex_state = 2}, + [656] = {.lex_state = 42, .external_lex_state = 2}, + [657] = {.lex_state = 42, .external_lex_state = 2}, + [658] = {.lex_state = 42, .external_lex_state = 2}, + [659] = {.lex_state = 42, .external_lex_state = 2}, + [660] = {.lex_state = 42, .external_lex_state = 2}, + [661] = {.lex_state = 42, .external_lex_state = 2}, + [662] = {.lex_state = 42, .external_lex_state = 2}, + [663] = {.lex_state = 42, .external_lex_state = 2}, + [664] = {.lex_state = 42, .external_lex_state = 2}, + [665] = {.lex_state = 42, .external_lex_state = 2}, + [666] = {.lex_state = 42, .external_lex_state = 2}, + [667] = {.lex_state = 42, .external_lex_state = 2}, + [668] = {.lex_state = 42, .external_lex_state = 2}, + [669] = {.lex_state = 42, .external_lex_state = 2}, + [670] = {.lex_state = 42, .external_lex_state = 2}, + [671] = {.lex_state = 42, .external_lex_state = 2}, + [672] = {.lex_state = 42, .external_lex_state = 2}, + [673] = {.lex_state = 42, .external_lex_state = 2}, + [674] = {.lex_state = 593}, + [675] = {.lex_state = 42, .external_lex_state = 2}, + [676] = {.lex_state = 42, .external_lex_state = 2}, + [677] = {.lex_state = 42, .external_lex_state = 2}, + [678] = {.lex_state = 42, .external_lex_state = 2}, + [679] = {.lex_state = 42, .external_lex_state = 2}, + [680] = {.lex_state = 42, .external_lex_state = 2}, + [681] = {.lex_state = 574}, + [682] = {.lex_state = 595}, + [683] = {.lex_state = 574}, + [684] = {.lex_state = 574}, + [685] = {.lex_state = 574}, + [686] = {.lex_state = 574}, + [687] = {.lex_state = 574}, + [688] = {.lex_state = 574}, + [689] = {.lex_state = 595}, + [690] = {.lex_state = 574}, + [691] = {.lex_state = 574}, + [692] = {.lex_state = 574}, + [693] = {.lex_state = 597}, + [694] = {.lex_state = 595}, + [695] = {.lex_state = 574}, + [696] = {.lex_state = 608}, + [697] = {.lex_state = 574}, + [698] = {.lex_state = 599}, + [699] = {.lex_state = 574}, + [700] = {.lex_state = 574}, + [701] = {.lex_state = 574}, + [702] = {.lex_state = 608}, + [703] = {.lex_state = 574}, + [704] = {.lex_state = 574}, + [705] = {.lex_state = 574}, + [706] = {.lex_state = 574}, + [707] = {.lex_state = 574}, + [708] = {.lex_state = 574}, + [709] = {.lex_state = 574}, + [710] = {.lex_state = 574}, + [711] = {.lex_state = 574}, + [712] = {.lex_state = 608}, + [713] = {.lex_state = 574}, + [714] = {.lex_state = 574}, + [715] = {.lex_state = 574}, + [716] = {.lex_state = 595}, + [717] = {.lex_state = 574}, + [718] = {.lex_state = 595}, + [719] = {.lex_state = 574}, + [720] = {.lex_state = 608}, + [721] = {.lex_state = 574}, + [722] = {.lex_state = 574}, + [723] = {.lex_state = 574}, + [724] = {.lex_state = 42, .external_lex_state = 2}, + [725] = {.lex_state = 42, .external_lex_state = 2}, + [726] = {.lex_state = 574}, + [727] = {.lex_state = 574}, + [728] = {.lex_state = 574}, + [729] = {.lex_state = 574}, + [730] = {.lex_state = 574}, + [731] = {.lex_state = 574}, + [732] = {.lex_state = 42, .external_lex_state = 2}, + [733] = {.lex_state = 42, .external_lex_state = 2}, + [734] = {.lex_state = 42, .external_lex_state = 2}, + [735] = {.lex_state = 574}, + [736] = {.lex_state = 574}, + [737] = {.lex_state = 574}, + [738] = {.lex_state = 42, .external_lex_state = 2}, + [739] = {.lex_state = 574}, + [740] = {.lex_state = 42, .external_lex_state = 2}, + [741] = {.lex_state = 574}, + [742] = {.lex_state = 574}, + [743] = {.lex_state = 574}, + [744] = {.lex_state = 574}, + [745] = {.lex_state = 574}, + [746] = {.lex_state = 574}, + [747] = {.lex_state = 574}, + [748] = {.lex_state = 574}, + [749] = {.lex_state = 574}, + [750] = {.lex_state = 574}, + [751] = {.lex_state = 574}, + [752] = {.lex_state = 574}, + [753] = {.lex_state = 574}, + [754] = {.lex_state = 42, .external_lex_state = 2}, + [755] = {.lex_state = 42, .external_lex_state = 2}, + [756] = {.lex_state = 42, .external_lex_state = 2}, + [757] = {.lex_state = 42, .external_lex_state = 2}, + [758] = {.lex_state = 42, .external_lex_state = 2}, + [759] = {.lex_state = 42, .external_lex_state = 2}, + [760] = {.lex_state = 42, .external_lex_state = 2}, + [761] = {.lex_state = 42, .external_lex_state = 2}, + [762] = {.lex_state = 42, .external_lex_state = 2}, + [763] = {.lex_state = 42, .external_lex_state = 2}, + [764] = {.lex_state = 42, .external_lex_state = 2}, + [765] = {.lex_state = 42, .external_lex_state = 2}, + [766] = {.lex_state = 42, .external_lex_state = 2}, + [767] = {.lex_state = 42, .external_lex_state = 2}, + [768] = {.lex_state = 574}, + [769] = {.lex_state = 574}, + [770] = {.lex_state = 42, .external_lex_state = 2}, + [771] = {.lex_state = 574}, + [772] = {.lex_state = 574}, + [773] = {.lex_state = 42, .external_lex_state = 2}, + [774] = {.lex_state = 574}, + [775] = {.lex_state = 574}, + [776] = {.lex_state = 574}, + [777] = {.lex_state = 574}, + [778] = {.lex_state = 574}, + [779] = {.lex_state = 574}, + [780] = {.lex_state = 574}, + [781] = {.lex_state = 574}, + [782] = {.lex_state = 574}, + [783] = {.lex_state = 574}, + [784] = {.lex_state = 597}, + [785] = {.lex_state = 574}, + [786] = {.lex_state = 574}, + [787] = {.lex_state = 574}, + [788] = {.lex_state = 574}, + [789] = {.lex_state = 574}, + [790] = {.lex_state = 599}, + [791] = {.lex_state = 621, .external_lex_state = 2}, + [792] = {.lex_state = 574}, + [793] = {.lex_state = 41, .external_lex_state = 2}, + [794] = {.lex_state = 574}, + [795] = {.lex_state = 574}, + [796] = {.lex_state = 597}, + [797] = {.lex_state = 574}, + [798] = {.lex_state = 574}, + [799] = {.lex_state = 601}, + [800] = {.lex_state = 601}, + [801] = {.lex_state = 574}, + [802] = {.lex_state = 574}, + [803] = {.lex_state = 574}, + [804] = {.lex_state = 574}, + [805] = {.lex_state = 574}, + [806] = {.lex_state = 574}, + [807] = {.lex_state = 574}, + [808] = {.lex_state = 574}, + [809] = {.lex_state = 574}, + [810] = {.lex_state = 574}, + [811] = {.lex_state = 574}, + [812] = {.lex_state = 574}, [813] = {.lex_state = 41, .external_lex_state = 2}, - [814] = {.lex_state = 41, .external_lex_state = 2}, - [815] = {.lex_state = 41, .external_lex_state = 2}, - [816] = {.lex_state = 41, .external_lex_state = 2}, - [817] = {.lex_state = 41, .external_lex_state = 2}, - [818] = {.lex_state = 41, .external_lex_state = 2}, - [819] = {.lex_state = 41, .external_lex_state = 2}, - [820] = {.lex_state = 41, .external_lex_state = 2}, - [821] = {.lex_state = 41, .external_lex_state = 2}, - [822] = {.lex_state = 41, .external_lex_state = 2}, - [823] = {.lex_state = 41, .external_lex_state = 2}, - [824] = {.lex_state = 578}, - [825] = {.lex_state = 578}, - [826] = {.lex_state = 40, .external_lex_state = 2}, - [827] = {.lex_state = 578}, - [828] = {.lex_state = 578}, - [829] = {.lex_state = 578}, - [830] = {.lex_state = 578}, - [831] = {.lex_state = 578}, - [832] = {.lex_state = 578}, - [833] = {.lex_state = 578}, - [834] = {.lex_state = 578}, - [835] = {.lex_state = 578}, - [836] = {.lex_state = 40, .external_lex_state = 2}, - [837] = {.lex_state = 40, .external_lex_state = 2}, + [814] = {.lex_state = 574}, + [815] = {.lex_state = 42, .external_lex_state = 2}, + [816] = {.lex_state = 42, .external_lex_state = 2}, + [817] = {.lex_state = 42, .external_lex_state = 2}, + [818] = {.lex_state = 42, .external_lex_state = 2}, + [819] = {.lex_state = 42, .external_lex_state = 2}, + [820] = {.lex_state = 42, .external_lex_state = 2}, + [821] = {.lex_state = 42, .external_lex_state = 2}, + [822] = {.lex_state = 42, .external_lex_state = 2}, + [823] = {.lex_state = 42, .external_lex_state = 2}, + [824] = {.lex_state = 42, .external_lex_state = 2}, + [825] = {.lex_state = 42, .external_lex_state = 2}, + [826] = {.lex_state = 42, .external_lex_state = 2}, + [827] = {.lex_state = 42, .external_lex_state = 2}, + [828] = {.lex_state = 574}, + [829] = {.lex_state = 574}, + [830] = {.lex_state = 574}, + [831] = {.lex_state = 574}, + [832] = {.lex_state = 574}, + [833] = {.lex_state = 574}, + [834] = {.lex_state = 574}, + [835] = {.lex_state = 574}, + [836] = {.lex_state = 574}, + [837] = {.lex_state = 574}, [838] = {.lex_state = 41, .external_lex_state = 2}, [839] = {.lex_state = 41, .external_lex_state = 2}, - [840] = {.lex_state = 41, .external_lex_state = 2}, - [841] = {.lex_state = 41, .external_lex_state = 2}, - [842] = {.lex_state = 41, .external_lex_state = 2}, - [843] = {.lex_state = 41, .external_lex_state = 2}, - [844] = {.lex_state = 41, .external_lex_state = 2}, - [845] = {.lex_state = 41, .external_lex_state = 2}, - [846] = {.lex_state = 41, .external_lex_state = 2}, - [847] = {.lex_state = 41, .external_lex_state = 2}, - [848] = {.lex_state = 41, .external_lex_state = 2}, - [849] = {.lex_state = 41, .external_lex_state = 2}, - [850] = {.lex_state = 41, .external_lex_state = 2}, - [851] = {.lex_state = 578}, - [852] = {.lex_state = 578}, - [853] = {.lex_state = 578}, - [854] = {.lex_state = 578}, - [855] = {.lex_state = 578}, - [856] = {.lex_state = 578}, - [857] = {.lex_state = 578}, - [858] = {.lex_state = 578}, - [859] = {.lex_state = 578}, - [860] = {.lex_state = 578}, - [861] = {.lex_state = 578}, - [862] = {.lex_state = 578}, - [863] = {.lex_state = 578}, - [864] = {.lex_state = 578}, - [865] = {.lex_state = 41, .external_lex_state = 2}, - [866] = {.lex_state = 41, .external_lex_state = 2}, + [840] = {.lex_state = 42, .external_lex_state = 2}, + [841] = {.lex_state = 42, .external_lex_state = 2}, + [842] = {.lex_state = 42, .external_lex_state = 2}, + [843] = {.lex_state = 42, .external_lex_state = 2}, + [844] = {.lex_state = 42, .external_lex_state = 2}, + [845] = {.lex_state = 42, .external_lex_state = 2}, + [846] = {.lex_state = 42, .external_lex_state = 2}, + [847] = {.lex_state = 42, .external_lex_state = 2}, + [848] = {.lex_state = 42, .external_lex_state = 2}, + [849] = {.lex_state = 42, .external_lex_state = 2}, + [850] = {.lex_state = 42, .external_lex_state = 2}, + [851] = {.lex_state = 42, .external_lex_state = 2}, + [852] = {.lex_state = 42, .external_lex_state = 2}, + [853] = {.lex_state = 574}, + [854] = {.lex_state = 574}, + [855] = {.lex_state = 574}, + [856] = {.lex_state = 574}, + [857] = {.lex_state = 574}, + [858] = {.lex_state = 574}, + [859] = {.lex_state = 574}, + [860] = {.lex_state = 574}, + [861] = {.lex_state = 574}, + [862] = {.lex_state = 574}, + [863] = {.lex_state = 574}, + [864] = {.lex_state = 574}, + [865] = {.lex_state = 574}, + [866] = {.lex_state = 574}, [867] = {.lex_state = 41, .external_lex_state = 2}, - [868] = {.lex_state = 41, .external_lex_state = 2}, - [869] = {.lex_state = 41, .external_lex_state = 2}, - [870] = {.lex_state = 41, .external_lex_state = 2}, - [871] = {.lex_state = 41, .external_lex_state = 2}, - [872] = {.lex_state = 41, .external_lex_state = 2}, - [873] = {.lex_state = 41, .external_lex_state = 2}, - [874] = {.lex_state = 41, .external_lex_state = 2}, - [875] = {.lex_state = 41, .external_lex_state = 2}, - [876] = {.lex_state = 41, .external_lex_state = 2}, - [877] = {.lex_state = 41, .external_lex_state = 2}, - [878] = {.lex_state = 40, .external_lex_state = 2}, - [879] = {.lex_state = 40, .external_lex_state = 2}, - [880] = {.lex_state = 41, .external_lex_state = 2}, - [881] = {.lex_state = 36, .external_lex_state = 2}, - [882] = {.lex_state = 41, .external_lex_state = 2}, - [883] = {.lex_state = 41, .external_lex_state = 2}, - [884] = {.lex_state = 41, .external_lex_state = 2}, - [885] = {.lex_state = 36, .external_lex_state = 2}, - [886] = {.lex_state = 607}, - [887] = {.lex_state = 578}, - [888] = {.lex_state = 578}, - [889] = {.lex_state = 41, .external_lex_state = 2}, - [890] = {.lex_state = 41, .external_lex_state = 2}, - [891] = {.lex_state = 41, .external_lex_state = 2}, - [892] = {.lex_state = 41, .external_lex_state = 2}, - [893] = {.lex_state = 41, .external_lex_state = 2}, - [894] = {.lex_state = 41, .external_lex_state = 2}, - [895] = {.lex_state = 605}, - [896] = {.lex_state = 578}, - [897] = {.lex_state = 578}, - [898] = {.lex_state = 578}, - [899] = {.lex_state = 578}, - [900] = {.lex_state = 578}, - [901] = {.lex_state = 578}, - [902] = {.lex_state = 578}, - [903] = {.lex_state = 578}, - [904] = {.lex_state = 578}, - [905] = {.lex_state = 607}, - [906] = {.lex_state = 578}, - [907] = {.lex_state = 607}, - [908] = {.lex_state = 607}, - [909] = {.lex_state = 578}, - [910] = {.lex_state = 578}, - [911] = {.lex_state = 578}, - [912] = {.lex_state = 36, .external_lex_state = 2}, - [913] = {.lex_state = 578}, - [914] = {.lex_state = 578}, - [915] = {.lex_state = 578}, - [916] = {.lex_state = 578}, - [917] = {.lex_state = 578}, - [918] = {.lex_state = 578}, - [919] = {.lex_state = 578}, - [920] = {.lex_state = 578}, - [921] = {.lex_state = 50, .external_lex_state = 2}, - [922] = {.lex_state = 578}, - [923] = {.lex_state = 578}, - [924] = {.lex_state = 578}, - [925] = {.lex_state = 578}, - [926] = {.lex_state = 578}, - [927] = {.lex_state = 578}, - [928] = {.lex_state = 578}, - [929] = {.lex_state = 578}, - [930] = {.lex_state = 578}, - [931] = {.lex_state = 607}, - [932] = {.lex_state = 578}, - [933] = {.lex_state = 578}, - [934] = {.lex_state = 578}, - [935] = {.lex_state = 578}, - [936] = {.lex_state = 578}, - [937] = {.lex_state = 607}, - [938] = {.lex_state = 578}, - [939] = {.lex_state = 578}, - [940] = {.lex_state = 605}, - [941] = {.lex_state = 607}, - [942] = {.lex_state = 578}, - [943] = {.lex_state = 578}, - [944] = {.lex_state = 578}, - [945] = {.lex_state = 578}, - [946] = {.lex_state = 578}, - [947] = {.lex_state = 578}, - [948] = {.lex_state = 607}, - [949] = {.lex_state = 578}, - [950] = {.lex_state = 578}, - [951] = {.lex_state = 578}, - [952] = {.lex_state = 578}, - [953] = {.lex_state = 578}, - [954] = {.lex_state = 607}, - [955] = {.lex_state = 578}, - [956] = {.lex_state = 578}, - [957] = {.lex_state = 605}, - [958] = {.lex_state = 607}, - [959] = {.lex_state = 607}, - [960] = {.lex_state = 607}, - [961] = {.lex_state = 607}, - [962] = {.lex_state = 50, .external_lex_state = 2}, - [963] = {.lex_state = 50, .external_lex_state = 2}, - [964] = {.lex_state = 36, .external_lex_state = 2}, - [965] = {.lex_state = 36, .external_lex_state = 2}, - [966] = {.lex_state = 36, .external_lex_state = 2}, - [967] = {.lex_state = 607}, - [968] = {.lex_state = 578}, - [969] = {.lex_state = 578}, - [970] = {.lex_state = 607}, - [971] = {.lex_state = 47, .external_lex_state = 2}, - [972] = {.lex_state = 578}, - [973] = {.lex_state = 607}, - [974] = {.lex_state = 578}, - [975] = {.lex_state = 607}, - [976] = {.lex_state = 50, .external_lex_state = 2}, - [977] = {.lex_state = 50, .external_lex_state = 2}, - [978] = {.lex_state = 622, .external_lex_state = 2}, - [979] = {.lex_state = 578}, - [980] = {.lex_state = 578}, - [981] = {.lex_state = 578}, - [982] = {.lex_state = 578}, - [983] = {.lex_state = 578}, - [984] = {.lex_state = 578}, - [985] = {.lex_state = 41, .external_lex_state = 2}, - [986] = {.lex_state = 578}, - [987] = {.lex_state = 41, .external_lex_state = 2}, - [988] = {.lex_state = 41, .external_lex_state = 2}, - [989] = {.lex_state = 578}, - [990] = {.lex_state = 578}, - [991] = {.lex_state = 578}, - [992] = {.lex_state = 578}, - [993] = {.lex_state = 578}, - [994] = {.lex_state = 578}, - [995] = {.lex_state = 578}, - [996] = {.lex_state = 578}, - [997] = {.lex_state = 578}, - [998] = {.lex_state = 578}, - [999] = {.lex_state = 578}, - [1000] = {.lex_state = 578}, - [1001] = {.lex_state = 578}, - [1002] = {.lex_state = 578}, - [1003] = {.lex_state = 578}, - [1004] = {.lex_state = 578}, - [1005] = {.lex_state = 622, .external_lex_state = 2}, - [1006] = {.lex_state = 578}, - [1007] = {.lex_state = 578}, - [1008] = {.lex_state = 578}, - [1009] = {.lex_state = 578}, - [1010] = {.lex_state = 578}, - [1011] = {.lex_state = 578}, - [1012] = {.lex_state = 578}, - [1013] = {.lex_state = 578}, - [1014] = {.lex_state = 578}, - [1015] = {.lex_state = 578}, - [1016] = {.lex_state = 578}, - [1017] = {.lex_state = 578}, - [1018] = {.lex_state = 578}, - [1019] = {.lex_state = 578}, - [1020] = {.lex_state = 578}, - [1021] = {.lex_state = 47, .external_lex_state = 2}, - [1022] = {.lex_state = 578}, - [1023] = {.lex_state = 578}, - [1024] = {.lex_state = 578}, - [1025] = {.lex_state = 607}, - [1026] = {.lex_state = 607}, - [1027] = {.lex_state = 578}, - [1028] = {.lex_state = 607}, - [1029] = {.lex_state = 578}, - [1030] = {.lex_state = 578}, - [1031] = {.lex_state = 578}, - [1032] = {.lex_state = 578}, - [1033] = {.lex_state = 578}, - [1034] = {.lex_state = 578}, - [1035] = {.lex_state = 578}, - [1036] = {.lex_state = 578}, - [1037] = {.lex_state = 578}, - [1038] = {.lex_state = 578}, - [1039] = {.lex_state = 578}, - [1040] = {.lex_state = 578}, - [1041] = {.lex_state = 578}, - [1042] = {.lex_state = 578}, - [1043] = {.lex_state = 609}, - [1044] = {.lex_state = 578}, - [1045] = {.lex_state = 578}, - [1046] = {.lex_state = 578}, - [1047] = {.lex_state = 607}, - [1048] = {.lex_state = 578}, - [1049] = {.lex_state = 607}, - [1050] = {.lex_state = 607}, - [1051] = {.lex_state = 578}, - [1052] = {.lex_state = 578}, - [1053] = {.lex_state = 578}, - [1054] = {.lex_state = 578}, - [1055] = {.lex_state = 578}, - [1056] = {.lex_state = 578}, - [1057] = {.lex_state = 578}, - [1058] = {.lex_state = 578}, - [1059] = {.lex_state = 578}, - [1060] = {.lex_state = 578}, - [1061] = {.lex_state = 578}, - [1062] = {.lex_state = 578}, - [1063] = {.lex_state = 607}, - [1064] = {.lex_state = 578}, - [1065] = {.lex_state = 578}, - [1066] = {.lex_state = 578}, - [1067] = {.lex_state = 578}, - [1068] = {.lex_state = 607}, - [1069] = {.lex_state = 578}, - [1070] = {.lex_state = 578}, - [1071] = {.lex_state = 578}, - [1072] = {.lex_state = 578}, - [1073] = {.lex_state = 578}, - [1074] = {.lex_state = 578}, - [1075] = {.lex_state = 578}, - [1076] = {.lex_state = 578}, - [1077] = {.lex_state = 578}, - [1078] = {.lex_state = 578}, - [1079] = {.lex_state = 578}, - [1080] = {.lex_state = 578}, - [1081] = {.lex_state = 578}, - [1082] = {.lex_state = 578}, - [1083] = {.lex_state = 607}, - [1084] = {.lex_state = 578}, - [1085] = {.lex_state = 578}, - [1086] = {.lex_state = 578}, - [1087] = {.lex_state = 578}, - [1088] = {.lex_state = 578}, - [1089] = {.lex_state = 578}, - [1090] = {.lex_state = 607}, - [1091] = {.lex_state = 578}, - [1092] = {.lex_state = 578}, - [1093] = {.lex_state = 578}, - [1094] = {.lex_state = 578}, - [1095] = {.lex_state = 578}, - [1096] = {.lex_state = 578}, - [1097] = {.lex_state = 578}, - [1098] = {.lex_state = 578}, - [1099] = {.lex_state = 578}, - [1100] = {.lex_state = 578}, - [1101] = {.lex_state = 578}, - [1102] = {.lex_state = 578}, - [1103] = {.lex_state = 578}, - [1104] = {.lex_state = 578}, - [1105] = {.lex_state = 578}, - [1106] = {.lex_state = 578}, - [1107] = {.lex_state = 578}, - [1108] = {.lex_state = 578}, - [1109] = {.lex_state = 41, .external_lex_state = 2}, - [1110] = {.lex_state = 41, .external_lex_state = 2}, - [1111] = {.lex_state = 41, .external_lex_state = 2}, - [1112] = {.lex_state = 609}, - [1113] = {.lex_state = 609}, - [1114] = {.lex_state = 609}, - [1115] = {.lex_state = 578}, - [1116] = {.lex_state = 578}, - [1117] = {.lex_state = 36, .external_lex_state = 2}, - [1118] = {.lex_state = 36, .external_lex_state = 2}, - [1119] = {.lex_state = 578}, - [1120] = {.lex_state = 578}, - [1121] = {.lex_state = 578}, - [1122] = {.lex_state = 611}, - [1123] = {.lex_state = 578}, - [1124] = {.lex_state = 578}, - [1125] = {.lex_state = 47, .external_lex_state = 2}, - [1126] = {.lex_state = 578}, - [1127] = {.lex_state = 578}, - [1128] = {.lex_state = 578}, - [1129] = {.lex_state = 622, .external_lex_state = 2}, - [1130] = {.lex_state = 578}, - [1131] = {.lex_state = 578}, - [1132] = {.lex_state = 578}, - [1133] = {.lex_state = 578}, - [1134] = {.lex_state = 578}, - [1135] = {.lex_state = 578}, - [1136] = {.lex_state = 578}, - [1137] = {.lex_state = 578}, - [1138] = {.lex_state = 578}, - [1139] = {.lex_state = 578}, - [1140] = {.lex_state = 578}, - [1141] = {.lex_state = 578}, - [1142] = {.lex_state = 578}, - [1143] = {.lex_state = 578}, - [1144] = {.lex_state = 578}, - [1145] = {.lex_state = 578}, - [1146] = {.lex_state = 578}, - [1147] = {.lex_state = 578}, - [1148] = {.lex_state = 578}, - [1149] = {.lex_state = 46, .external_lex_state = 2}, - [1150] = {.lex_state = 578}, - [1151] = {.lex_state = 46, .external_lex_state = 2}, - [1152] = {.lex_state = 578}, - [1153] = {.lex_state = 578}, - [1154] = {.lex_state = 578}, - [1155] = {.lex_state = 578}, - [1156] = {.lex_state = 578}, - [1157] = {.lex_state = 578}, - [1158] = {.lex_state = 578}, - [1159] = {.lex_state = 578}, - [1160] = {.lex_state = 578}, - [1161] = {.lex_state = 578}, - [1162] = {.lex_state = 578}, - [1163] = {.lex_state = 609}, - [1164] = {.lex_state = 578}, - [1165] = {.lex_state = 578}, - [1166] = {.lex_state = 578}, - [1167] = {.lex_state = 578}, - [1168] = {.lex_state = 578}, - [1169] = {.lex_state = 578}, - [1170] = {.lex_state = 578}, - [1171] = {.lex_state = 578}, - [1172] = {.lex_state = 609}, - [1173] = {.lex_state = 578}, - [1174] = {.lex_state = 578}, - [1175] = {.lex_state = 578}, - [1176] = {.lex_state = 578}, - [1177] = {.lex_state = 578}, - [1178] = {.lex_state = 578}, - [1179] = {.lex_state = 578}, - [1180] = {.lex_state = 578}, - [1181] = {.lex_state = 578}, - [1182] = {.lex_state = 578}, - [1183] = {.lex_state = 578}, - [1184] = {.lex_state = 578}, - [1185] = {.lex_state = 578}, - [1186] = {.lex_state = 578}, - [1187] = {.lex_state = 578}, - [1188] = {.lex_state = 578}, - [1189] = {.lex_state = 578}, - [1190] = {.lex_state = 578}, - [1191] = {.lex_state = 578}, - [1192] = {.lex_state = 578}, - [1193] = {.lex_state = 578}, - [1194] = {.lex_state = 578}, - [1195] = {.lex_state = 578}, - [1196] = {.lex_state = 578}, - [1197] = {.lex_state = 578}, - [1198] = {.lex_state = 578}, - [1199] = {.lex_state = 578}, - [1200] = {.lex_state = 578}, - [1201] = {.lex_state = 578}, - [1202] = {.lex_state = 578}, - [1203] = {.lex_state = 578}, - [1204] = {.lex_state = 578}, - [1205] = {.lex_state = 607}, - [1206] = {.lex_state = 578}, - [1207] = {.lex_state = 609}, - [1208] = {.lex_state = 578}, - [1209] = {.lex_state = 578}, - [1210] = {.lex_state = 578}, - [1211] = {.lex_state = 578}, - [1212] = {.lex_state = 578}, - [1213] = {.lex_state = 578}, - [1214] = {.lex_state = 578}, - [1215] = {.lex_state = 578}, - [1216] = {.lex_state = 578}, - [1217] = {.lex_state = 578}, - [1218] = {.lex_state = 578}, - [1219] = {.lex_state = 578}, - [1220] = {.lex_state = 578}, - [1221] = {.lex_state = 578}, - [1222] = {.lex_state = 578}, - [1223] = {.lex_state = 578}, - [1224] = {.lex_state = 578}, - [1225] = {.lex_state = 578}, - [1226] = {.lex_state = 578}, - [1227] = {.lex_state = 578}, - [1228] = {.lex_state = 578}, - [1229] = {.lex_state = 578}, - [1230] = {.lex_state = 50, .external_lex_state = 2}, - [1231] = {.lex_state = 578}, - [1232] = {.lex_state = 50, .external_lex_state = 2}, - [1233] = {.lex_state = 578}, - [1234] = {.lex_state = 578}, - [1235] = {.lex_state = 578}, - [1236] = {.lex_state = 578}, - [1237] = {.lex_state = 46, .external_lex_state = 2}, - [1238] = {.lex_state = 578}, - [1239] = {.lex_state = 609}, - [1240] = {.lex_state = 50, .external_lex_state = 2}, - [1241] = {.lex_state = 578}, - [1242] = {.lex_state = 609}, - [1243] = {.lex_state = 578}, - [1244] = {.lex_state = 578}, - [1245] = {.lex_state = 578}, - [1246] = {.lex_state = 578}, - [1247] = {.lex_state = 578}, - [1248] = {.lex_state = 578}, - [1249] = {.lex_state = 578}, - [1250] = {.lex_state = 578}, - [1251] = {.lex_state = 578}, - [1252] = {.lex_state = 31, .external_lex_state = 2}, - [1253] = {.lex_state = 578}, - [1254] = {.lex_state = 578}, - [1255] = {.lex_state = 578}, - [1256] = {.lex_state = 50, .external_lex_state = 2}, - [1257] = {.lex_state = 50, .external_lex_state = 2}, - [1258] = {.lex_state = 50, .external_lex_state = 2}, - [1259] = {.lex_state = 50, .external_lex_state = 2}, - [1260] = {.lex_state = 46, .external_lex_state = 2}, - [1261] = {.lex_state = 578}, - [1262] = {.lex_state = 578}, - [1263] = {.lex_state = 578}, - [1264] = {.lex_state = 578}, - [1265] = {.lex_state = 578}, - [1266] = {.lex_state = 578}, - [1267] = {.lex_state = 578}, - [1268] = {.lex_state = 578}, - [1269] = {.lex_state = 578}, - [1270] = {.lex_state = 578}, - [1271] = {.lex_state = 578}, - [1272] = {.lex_state = 578}, - [1273] = {.lex_state = 578}, - [1274] = {.lex_state = 578}, - [1275] = {.lex_state = 622, .external_lex_state = 2}, - [1276] = {.lex_state = 578}, - [1277] = {.lex_state = 578}, - [1278] = {.lex_state = 578}, - [1279] = {.lex_state = 578}, - [1280] = {.lex_state = 578}, - [1281] = {.lex_state = 578}, - [1282] = {.lex_state = 578}, - [1283] = {.lex_state = 578}, - [1284] = {.lex_state = 578}, - [1285] = {.lex_state = 578}, - [1286] = {.lex_state = 578}, - [1287] = {.lex_state = 45, .external_lex_state = 2}, - [1288] = {.lex_state = 578}, - [1289] = {.lex_state = 578}, - [1290] = {.lex_state = 578}, - [1291] = {.lex_state = 45, .external_lex_state = 2}, - [1292] = {.lex_state = 578}, - [1293] = {.lex_state = 578}, - [1294] = {.lex_state = 578}, - [1295] = {.lex_state = 578}, - [1296] = {.lex_state = 578}, - [1297] = {.lex_state = 578}, - [1298] = {.lex_state = 578}, - [1299] = {.lex_state = 578}, - [1300] = {.lex_state = 578}, - [1301] = {.lex_state = 578}, - [1302] = {.lex_state = 578}, - [1303] = {.lex_state = 578}, - [1304] = {.lex_state = 578}, - [1305] = {.lex_state = 578}, - [1306] = {.lex_state = 578}, - [1307] = {.lex_state = 578}, - [1308] = {.lex_state = 578}, - [1309] = {.lex_state = 578}, - [1310] = {.lex_state = 578}, - [1311] = {.lex_state = 578}, - [1312] = {.lex_state = 578}, - [1313] = {.lex_state = 578}, - [1314] = {.lex_state = 578}, - [1315] = {.lex_state = 578}, - [1316] = {.lex_state = 578}, - [1317] = {.lex_state = 578}, - [1318] = {.lex_state = 578}, - [1319] = {.lex_state = 578}, - [1320] = {.lex_state = 578}, - [1321] = {.lex_state = 578}, - [1322] = {.lex_state = 578}, - [1323] = {.lex_state = 578}, - [1324] = {.lex_state = 578}, - [1325] = {.lex_state = 578}, - [1326] = {.lex_state = 578}, - [1327] = {.lex_state = 578}, - [1328] = {.lex_state = 622, .external_lex_state = 2}, - [1329] = {.lex_state = 45, .external_lex_state = 2}, - [1330] = {.lex_state = 578}, - [1331] = {.lex_state = 45, .external_lex_state = 2}, - [1332] = {.lex_state = 578}, - [1333] = {.lex_state = 578}, - [1334] = {.lex_state = 578}, - [1335] = {.lex_state = 578}, - [1336] = {.lex_state = 578}, - [1337] = {.lex_state = 578}, - [1338] = {.lex_state = 622, .external_lex_state = 2}, - [1339] = {.lex_state = 578}, - [1340] = {.lex_state = 578}, - [1341] = {.lex_state = 578}, - [1342] = {.lex_state = 578}, - [1343] = {.lex_state = 578}, - [1344] = {.lex_state = 578}, - [1345] = {.lex_state = 578}, - [1346] = {.lex_state = 174, .external_lex_state = 2}, - [1347] = {.lex_state = 46, .external_lex_state = 2}, - [1348] = {.lex_state = 175, .external_lex_state = 2}, - [1349] = {.lex_state = 175, .external_lex_state = 2}, - [1350] = {.lex_state = 29, .external_lex_state = 2}, - [1351] = {.lex_state = 45, .external_lex_state = 2}, - [1352] = {.lex_state = 45, .external_lex_state = 2}, - [1353] = {.lex_state = 45, .external_lex_state = 2}, - [1354] = {.lex_state = 29, .external_lex_state = 2}, - [1355] = {.lex_state = 622, .external_lex_state = 2}, - [1356] = {.lex_state = 29, .external_lex_state = 2}, - [1357] = {.lex_state = 29, .external_lex_state = 2}, - [1358] = {.lex_state = 629, .external_lex_state = 2}, - [1359] = {.lex_state = 622, .external_lex_state = 2}, - [1360] = {.lex_state = 46, .external_lex_state = 2}, + [868] = {.lex_state = 42, .external_lex_state = 2}, + [869] = {.lex_state = 42, .external_lex_state = 2}, + [870] = {.lex_state = 42, .external_lex_state = 2}, + [871] = {.lex_state = 42, .external_lex_state = 2}, + [872] = {.lex_state = 42, .external_lex_state = 2}, + [873] = {.lex_state = 42, .external_lex_state = 2}, + [874] = {.lex_state = 42, .external_lex_state = 2}, + [875] = {.lex_state = 42, .external_lex_state = 2}, + [876] = {.lex_state = 42, .external_lex_state = 2}, + [877] = {.lex_state = 42, .external_lex_state = 2}, + [878] = {.lex_state = 42, .external_lex_state = 2}, + [879] = {.lex_state = 42, .external_lex_state = 2}, + [880] = {.lex_state = 42, .external_lex_state = 2}, + [881] = {.lex_state = 41, .external_lex_state = 2}, + [882] = {.lex_state = 621, .external_lex_state = 2}, + [883] = {.lex_state = 42, .external_lex_state = 2}, + [884] = {.lex_state = 42, .external_lex_state = 2}, + [885] = {.lex_state = 42, .external_lex_state = 2}, + [886] = {.lex_state = 42, .external_lex_state = 2}, + [887] = {.lex_state = 621, .external_lex_state = 2}, + [888] = {.lex_state = 603}, + [889] = {.lex_state = 574}, + [890] = {.lex_state = 574}, + [891] = {.lex_state = 42, .external_lex_state = 2}, + [892] = {.lex_state = 42, .external_lex_state = 2}, + [893] = {.lex_state = 42, .external_lex_state = 2}, + [894] = {.lex_state = 42, .external_lex_state = 2}, + [895] = {.lex_state = 42, .external_lex_state = 2}, + [896] = {.lex_state = 42, .external_lex_state = 2}, + [897] = {.lex_state = 42, .external_lex_state = 2}, + [898] = {.lex_state = 42, .external_lex_state = 2}, + [899] = {.lex_state = 42, .external_lex_state = 2}, + [900] = {.lex_state = 42, .external_lex_state = 2}, + [901] = {.lex_state = 42, .external_lex_state = 2}, + [902] = {.lex_state = 42, .external_lex_state = 2}, + [903] = {.lex_state = 574}, + [904] = {.lex_state = 574}, + [905] = {.lex_state = 574}, + [906] = {.lex_state = 574}, + [907] = {.lex_state = 574}, + [908] = {.lex_state = 574}, + [909] = {.lex_state = 603}, + [910] = {.lex_state = 574}, + [911] = {.lex_state = 603}, + [912] = {.lex_state = 603}, + [913] = {.lex_state = 574}, + [914] = {.lex_state = 574}, + [915] = {.lex_state = 574}, + [916] = {.lex_state = 621, .external_lex_state = 2}, + [917] = {.lex_state = 574}, + [918] = {.lex_state = 51, .external_lex_state = 2}, + [919] = {.lex_state = 574}, + [920] = {.lex_state = 574}, + [921] = {.lex_state = 574}, + [922] = {.lex_state = 574}, + [923] = {.lex_state = 574}, + [924] = {.lex_state = 574}, + [925] = {.lex_state = 574}, + [926] = {.lex_state = 574}, + [927] = {.lex_state = 574}, + [928] = {.lex_state = 574}, + [929] = {.lex_state = 574}, + [930] = {.lex_state = 574}, + [931] = {.lex_state = 574}, + [932] = {.lex_state = 574}, + [933] = {.lex_state = 574}, + [934] = {.lex_state = 574}, + [935] = {.lex_state = 574}, + [936] = {.lex_state = 574}, + [937] = {.lex_state = 621, .external_lex_state = 2}, + [938] = {.lex_state = 574}, + [939] = {.lex_state = 574}, + [940] = {.lex_state = 574}, + [941] = {.lex_state = 574}, + [942] = {.lex_state = 603}, + [943] = {.lex_state = 601}, + [944] = {.lex_state = 574}, + [945] = {.lex_state = 603}, + [946] = {.lex_state = 574}, + [947] = {.lex_state = 574}, + [948] = {.lex_state = 574}, + [949] = {.lex_state = 574}, + [950] = {.lex_state = 574}, + [951] = {.lex_state = 574}, + [952] = {.lex_state = 574}, + [953] = {.lex_state = 574}, + [954] = {.lex_state = 574}, + [955] = {.lex_state = 574}, + [956] = {.lex_state = 603}, + [957] = {.lex_state = 574}, + [958] = {.lex_state = 603}, + [959] = {.lex_state = 601}, + [960] = {.lex_state = 603}, + [961] = {.lex_state = 603}, + [962] = {.lex_state = 603}, + [963] = {.lex_state = 574}, + [964] = {.lex_state = 51, .external_lex_state = 2}, + [965] = {.lex_state = 603}, + [966] = {.lex_state = 603}, + [967] = {.lex_state = 574}, + [968] = {.lex_state = 574}, + [969] = {.lex_state = 574}, + [970] = {.lex_state = 574}, + [971] = {.lex_state = 51, .external_lex_state = 2}, + [972] = {.lex_state = 574}, + [973] = {.lex_state = 48, .external_lex_state = 2}, + [974] = {.lex_state = 574}, + [975] = {.lex_state = 574}, + [976] = {.lex_state = 51, .external_lex_state = 2}, + [977] = {.lex_state = 42, .external_lex_state = 2}, + [978] = {.lex_state = 603}, + [979] = {.lex_state = 603}, + [980] = {.lex_state = 603}, + [981] = {.lex_state = 574}, + [982] = {.lex_state = 620, .external_lex_state = 2}, + [983] = {.lex_state = 574}, + [984] = {.lex_state = 574}, + [985] = {.lex_state = 574}, + [986] = {.lex_state = 574}, + [987] = {.lex_state = 574}, + [988] = {.lex_state = 574}, + [989] = {.lex_state = 574}, + [990] = {.lex_state = 574}, + [991] = {.lex_state = 620, .external_lex_state = 2}, + [992] = {.lex_state = 574}, + [993] = {.lex_state = 574}, + [994] = {.lex_state = 574}, + [995] = {.lex_state = 574}, + [996] = {.lex_state = 574}, + [997] = {.lex_state = 574}, + [998] = {.lex_state = 574}, + [999] = {.lex_state = 574}, + [1000] = {.lex_state = 574}, + [1001] = {.lex_state = 574}, + [1002] = {.lex_state = 574}, + [1003] = {.lex_state = 574}, + [1004] = {.lex_state = 574}, + [1005] = {.lex_state = 574}, + [1006] = {.lex_state = 574}, + [1007] = {.lex_state = 574}, + [1008] = {.lex_state = 574}, + [1009] = {.lex_state = 574}, + [1010] = {.lex_state = 574}, + [1011] = {.lex_state = 574}, + [1012] = {.lex_state = 574}, + [1013] = {.lex_state = 574}, + [1014] = {.lex_state = 574}, + [1015] = {.lex_state = 574}, + [1016] = {.lex_state = 574}, + [1017] = {.lex_state = 574}, + [1018] = {.lex_state = 574}, + [1019] = {.lex_state = 574}, + [1020] = {.lex_state = 574}, + [1021] = {.lex_state = 574}, + [1022] = {.lex_state = 574}, + [1023] = {.lex_state = 574}, + [1024] = {.lex_state = 603}, + [1025] = {.lex_state = 603}, + [1026] = {.lex_state = 574}, + [1027] = {.lex_state = 603}, + [1028] = {.lex_state = 48, .external_lex_state = 2}, + [1029] = {.lex_state = 574}, + [1030] = {.lex_state = 574}, + [1031] = {.lex_state = 574}, + [1032] = {.lex_state = 574}, + [1033] = {.lex_state = 574}, + [1034] = {.lex_state = 574}, + [1035] = {.lex_state = 574}, + [1036] = {.lex_state = 574}, + [1037] = {.lex_state = 574}, + [1038] = {.lex_state = 574}, + [1039] = {.lex_state = 574}, + [1040] = {.lex_state = 574}, + [1041] = {.lex_state = 574}, + [1042] = {.lex_state = 574}, + [1043] = {.lex_state = 574}, + [1044] = {.lex_state = 574}, + [1045] = {.lex_state = 574}, + [1046] = {.lex_state = 574}, + [1047] = {.lex_state = 574}, + [1048] = {.lex_state = 574}, + [1049] = {.lex_state = 574}, + [1050] = {.lex_state = 605}, + [1051] = {.lex_state = 574}, + [1052] = {.lex_state = 574}, + [1053] = {.lex_state = 603}, + [1054] = {.lex_state = 574}, + [1055] = {.lex_state = 603}, + [1056] = {.lex_state = 603}, + [1057] = {.lex_state = 574}, + [1058] = {.lex_state = 603}, + [1059] = {.lex_state = 574}, + [1060] = {.lex_state = 574}, + [1061] = {.lex_state = 603}, + [1062] = {.lex_state = 603}, + [1063] = {.lex_state = 574}, + [1064] = {.lex_state = 574}, + [1065] = {.lex_state = 574}, + [1066] = {.lex_state = 574}, + [1067] = {.lex_state = 574}, + [1068] = {.lex_state = 574}, + [1069] = {.lex_state = 574}, + [1070] = {.lex_state = 574}, + [1071] = {.lex_state = 574}, + [1072] = {.lex_state = 574}, + [1073] = {.lex_state = 574}, + [1074] = {.lex_state = 603}, + [1075] = {.lex_state = 574}, + [1076] = {.lex_state = 574}, + [1077] = {.lex_state = 574}, + [1078] = {.lex_state = 574}, + [1079] = {.lex_state = 574}, + [1080] = {.lex_state = 574}, + [1081] = {.lex_state = 574}, + [1082] = {.lex_state = 574}, + [1083] = {.lex_state = 603}, + [1084] = {.lex_state = 574}, + [1085] = {.lex_state = 574}, + [1086] = {.lex_state = 574}, + [1087] = {.lex_state = 574}, + [1088] = {.lex_state = 574}, + [1089] = {.lex_state = 574}, + [1090] = {.lex_state = 574}, + [1091] = {.lex_state = 574}, + [1092] = {.lex_state = 574}, + [1093] = {.lex_state = 574}, + [1094] = {.lex_state = 574}, + [1095] = {.lex_state = 574}, + [1096] = {.lex_state = 574}, + [1097] = {.lex_state = 574}, + [1098] = {.lex_state = 574}, + [1099] = {.lex_state = 574}, + [1100] = {.lex_state = 574}, + [1101] = {.lex_state = 574}, + [1102] = {.lex_state = 574}, + [1103] = {.lex_state = 574}, + [1104] = {.lex_state = 574}, + [1105] = {.lex_state = 574}, + [1106] = {.lex_state = 574}, + [1107] = {.lex_state = 574}, + [1108] = {.lex_state = 574}, + [1109] = {.lex_state = 574}, + [1110] = {.lex_state = 574}, + [1111] = {.lex_state = 574}, + [1112] = {.lex_state = 574}, + [1113] = {.lex_state = 574}, + [1114] = {.lex_state = 621, .external_lex_state = 2}, + [1115] = {.lex_state = 42, .external_lex_state = 2}, + [1116] = {.lex_state = 42, .external_lex_state = 2}, + [1117] = {.lex_state = 42, .external_lex_state = 2}, + [1118] = {.lex_state = 574}, + [1119] = {.lex_state = 605}, + [1120] = {.lex_state = 605}, + [1121] = {.lex_state = 605}, + [1122] = {.lex_state = 574}, + [1123] = {.lex_state = 621, .external_lex_state = 2}, + [1124] = {.lex_state = 621, .external_lex_state = 2}, + [1125] = {.lex_state = 574}, + [1126] = {.lex_state = 574}, + [1127] = {.lex_state = 597}, + [1128] = {.lex_state = 574}, + [1129] = {.lex_state = 574}, + [1130] = {.lex_state = 51, .external_lex_state = 2}, + [1131] = {.lex_state = 42, .external_lex_state = 2}, + [1132] = {.lex_state = 621, .external_lex_state = 2}, + [1133] = {.lex_state = 42, .external_lex_state = 2}, + [1134] = {.lex_state = 48, .external_lex_state = 2}, + [1135] = {.lex_state = 574}, + [1136] = {.lex_state = 574}, + [1137] = {.lex_state = 620, .external_lex_state = 2}, + [1138] = {.lex_state = 574}, + [1139] = {.lex_state = 574}, + [1140] = {.lex_state = 574}, + [1141] = {.lex_state = 51, .external_lex_state = 2}, + [1142] = {.lex_state = 51, .external_lex_state = 2}, + [1143] = {.lex_state = 605}, + [1144] = {.lex_state = 574}, + [1145] = {.lex_state = 574}, + [1146] = {.lex_state = 574}, + [1147] = {.lex_state = 574}, + [1148] = {.lex_state = 574}, + [1149] = {.lex_state = 574}, + [1150] = {.lex_state = 574}, + [1151] = {.lex_state = 574}, + [1152] = {.lex_state = 574}, + [1153] = {.lex_state = 574}, + [1154] = {.lex_state = 574}, + [1155] = {.lex_state = 574}, + [1156] = {.lex_state = 574}, + [1157] = {.lex_state = 574}, + [1158] = {.lex_state = 574}, + [1159] = {.lex_state = 574}, + [1160] = {.lex_state = 47, .external_lex_state = 2}, + [1161] = {.lex_state = 47, .external_lex_state = 2}, + [1162] = {.lex_state = 574}, + [1163] = {.lex_state = 574}, + [1164] = {.lex_state = 574}, + [1165] = {.lex_state = 574}, + [1166] = {.lex_state = 574}, + [1167] = {.lex_state = 605}, + [1168] = {.lex_state = 574}, + [1169] = {.lex_state = 574}, + [1170] = {.lex_state = 574}, + [1171] = {.lex_state = 574}, + [1172] = {.lex_state = 574}, + [1173] = {.lex_state = 574}, + [1174] = {.lex_state = 574}, + [1175] = {.lex_state = 574}, + [1176] = {.lex_state = 574}, + [1177] = {.lex_state = 574}, + [1178] = {.lex_state = 574}, + [1179] = {.lex_state = 574}, + [1180] = {.lex_state = 574}, + [1181] = {.lex_state = 574}, + [1182] = {.lex_state = 574}, + [1183] = {.lex_state = 574}, + [1184] = {.lex_state = 574}, + [1185] = {.lex_state = 574}, + [1186] = {.lex_state = 574}, + [1187] = {.lex_state = 574}, + [1188] = {.lex_state = 574}, + [1189] = {.lex_state = 574}, + [1190] = {.lex_state = 574}, + [1191] = {.lex_state = 605}, + [1192] = {.lex_state = 605}, + [1193] = {.lex_state = 574}, + [1194] = {.lex_state = 574}, + [1195] = {.lex_state = 574}, + [1196] = {.lex_state = 574}, + [1197] = {.lex_state = 574}, + [1198] = {.lex_state = 574}, + [1199] = {.lex_state = 574}, + [1200] = {.lex_state = 603}, + [1201] = {.lex_state = 574}, + [1202] = {.lex_state = 574}, + [1203] = {.lex_state = 574}, + [1204] = {.lex_state = 574}, + [1205] = {.lex_state = 574}, + [1206] = {.lex_state = 574}, + [1207] = {.lex_state = 574}, + [1208] = {.lex_state = 574}, + [1209] = {.lex_state = 574}, + [1210] = {.lex_state = 574}, + [1211] = {.lex_state = 574}, + [1212] = {.lex_state = 574}, + [1213] = {.lex_state = 574}, + [1214] = {.lex_state = 574}, + [1215] = {.lex_state = 574}, + [1216] = {.lex_state = 574}, + [1217] = {.lex_state = 574}, + [1218] = {.lex_state = 574}, + [1219] = {.lex_state = 574}, + [1220] = {.lex_state = 574}, + [1221] = {.lex_state = 574}, + [1222] = {.lex_state = 574}, + [1223] = {.lex_state = 574}, + [1224] = {.lex_state = 574}, + [1225] = {.lex_state = 574}, + [1226] = {.lex_state = 574}, + [1227] = {.lex_state = 574}, + [1228] = {.lex_state = 574}, + [1229] = {.lex_state = 51, .external_lex_state = 2}, + [1230] = {.lex_state = 574}, + [1231] = {.lex_state = 574}, + [1232] = {.lex_state = 574}, + [1233] = {.lex_state = 574}, + [1234] = {.lex_state = 574}, + [1235] = {.lex_state = 574}, + [1236] = {.lex_state = 574}, + [1237] = {.lex_state = 574}, + [1238] = {.lex_state = 574}, + [1239] = {.lex_state = 574}, + [1240] = {.lex_state = 574}, + [1241] = {.lex_state = 574}, + [1242] = {.lex_state = 574}, + [1243] = {.lex_state = 574}, + [1244] = {.lex_state = 574}, + [1245] = {.lex_state = 574}, + [1246] = {.lex_state = 574}, + [1247] = {.lex_state = 574}, + [1248] = {.lex_state = 574}, + [1249] = {.lex_state = 574}, + [1250] = {.lex_state = 574}, + [1251] = {.lex_state = 574}, + [1252] = {.lex_state = 574}, + [1253] = {.lex_state = 33, .external_lex_state = 2}, + [1254] = {.lex_state = 574}, + [1255] = {.lex_state = 574}, + [1256] = {.lex_state = 51, .external_lex_state = 2}, + [1257] = {.lex_state = 574}, + [1258] = {.lex_state = 605}, + [1259] = {.lex_state = 574}, + [1260] = {.lex_state = 574}, + [1261] = {.lex_state = 47, .external_lex_state = 2}, + [1262] = {.lex_state = 47, .external_lex_state = 2}, + [1263] = {.lex_state = 574}, + [1264] = {.lex_state = 574}, + [1265] = {.lex_state = 574}, + [1266] = {.lex_state = 574}, + [1267] = {.lex_state = 51, .external_lex_state = 2}, + [1268] = {.lex_state = 51, .external_lex_state = 2}, + [1269] = {.lex_state = 51, .external_lex_state = 2}, + [1270] = {.lex_state = 574}, + [1271] = {.lex_state = 574}, + [1272] = {.lex_state = 46, .external_lex_state = 2}, + [1273] = {.lex_state = 574}, + [1274] = {.lex_state = 574}, + [1275] = {.lex_state = 574}, + [1276] = {.lex_state = 574}, + [1277] = {.lex_state = 574}, + [1278] = {.lex_state = 574}, + [1279] = {.lex_state = 574}, + [1280] = {.lex_state = 574}, + [1281] = {.lex_state = 574}, + [1282] = {.lex_state = 574}, + [1283] = {.lex_state = 574}, + [1284] = {.lex_state = 574}, + [1285] = {.lex_state = 574}, + [1286] = {.lex_state = 574}, + [1287] = {.lex_state = 574}, + [1288] = {.lex_state = 620, .external_lex_state = 2}, + [1289] = {.lex_state = 574}, + [1290] = {.lex_state = 574}, + [1291] = {.lex_state = 574}, + [1292] = {.lex_state = 574}, + [1293] = {.lex_state = 574}, + [1294] = {.lex_state = 574}, + [1295] = {.lex_state = 574}, + [1296] = {.lex_state = 574}, + [1297] = {.lex_state = 574}, + [1298] = {.lex_state = 574}, + [1299] = {.lex_state = 574}, + [1300] = {.lex_state = 574}, + [1301] = {.lex_state = 574}, + [1302] = {.lex_state = 574}, + [1303] = {.lex_state = 574}, + [1304] = {.lex_state = 574}, + [1305] = {.lex_state = 574}, + [1306] = {.lex_state = 574}, + [1307] = {.lex_state = 574}, + [1308] = {.lex_state = 574}, + [1309] = {.lex_state = 574}, + [1310] = {.lex_state = 574}, + [1311] = {.lex_state = 574}, + [1312] = {.lex_state = 574}, + [1313] = {.lex_state = 574}, + [1314] = {.lex_state = 574}, + [1315] = {.lex_state = 574}, + [1316] = {.lex_state = 574}, + [1317] = {.lex_state = 574}, + [1318] = {.lex_state = 574}, + [1319] = {.lex_state = 574}, + [1320] = {.lex_state = 574}, + [1321] = {.lex_state = 574}, + [1322] = {.lex_state = 46, .external_lex_state = 2}, + [1323] = {.lex_state = 574}, + [1324] = {.lex_state = 574}, + [1325] = {.lex_state = 574}, + [1326] = {.lex_state = 46, .external_lex_state = 2}, + [1327] = {.lex_state = 574}, + [1328] = {.lex_state = 574}, + [1329] = {.lex_state = 574}, + [1330] = {.lex_state = 574}, + [1331] = {.lex_state = 574}, + [1332] = {.lex_state = 620, .external_lex_state = 2}, + [1333] = {.lex_state = 574}, + [1334] = {.lex_state = 574}, + [1335] = {.lex_state = 574}, + [1336] = {.lex_state = 574}, + [1337] = {.lex_state = 574}, + [1338] = {.lex_state = 574}, + [1339] = {.lex_state = 574}, + [1340] = {.lex_state = 574}, + [1341] = {.lex_state = 620, .external_lex_state = 2}, + [1342] = {.lex_state = 574}, + [1343] = {.lex_state = 574}, + [1344] = {.lex_state = 574}, + [1345] = {.lex_state = 46, .external_lex_state = 2}, + [1346] = {.lex_state = 574}, + [1347] = {.lex_state = 574}, + [1348] = {.lex_state = 574}, + [1349] = {.lex_state = 574}, + [1350] = {.lex_state = 574}, + [1351] = {.lex_state = 574}, + [1352] = {.lex_state = 574}, + [1353] = {.lex_state = 574}, + [1354] = {.lex_state = 173, .external_lex_state = 2}, + [1355] = {.lex_state = 47, .external_lex_state = 2}, + [1356] = {.lex_state = 620, .external_lex_state = 2}, + [1357] = {.lex_state = 31, .external_lex_state = 2}, + [1358] = {.lex_state = 46, .external_lex_state = 2}, + [1359] = {.lex_state = 46, .external_lex_state = 2}, + [1360] = {.lex_state = 174, .external_lex_state = 2}, [1361] = {.lex_state = 46, .external_lex_state = 2}, - [1362] = {.lex_state = 148, .external_lex_state = 2}, - [1363] = {.lex_state = 622, .external_lex_state = 2}, - [1364] = {.lex_state = 622, .external_lex_state = 2}, - [1365] = {.lex_state = 148, .external_lex_state = 2}, - [1366] = {.lex_state = 29, .external_lex_state = 2}, - [1367] = {.lex_state = 622, .external_lex_state = 2}, - [1368] = {.lex_state = 622, .external_lex_state = 2}, - [1369] = {.lex_state = 622, .external_lex_state = 2}, - [1370] = {.lex_state = 622, .external_lex_state = 2}, - [1371] = {.lex_state = 622, .external_lex_state = 2}, - [1372] = {.lex_state = 46, .external_lex_state = 2}, - [1373] = {.lex_state = 148, .external_lex_state = 2}, - [1374] = {.lex_state = 148, .external_lex_state = 2}, - [1375] = {.lex_state = 148, .external_lex_state = 2}, - [1376] = {.lex_state = 622, .external_lex_state = 2}, - [1377] = {.lex_state = 622, .external_lex_state = 2}, - [1378] = {.lex_state = 622, .external_lex_state = 2}, - [1379] = {.lex_state = 582}, - [1380] = {.lex_state = 622, .external_lex_state = 2}, - [1381] = {.lex_state = 29, .external_lex_state = 2}, - [1382] = {.lex_state = 622, .external_lex_state = 2}, - [1383] = {.lex_state = 622, .external_lex_state = 2}, - [1384] = {.lex_state = 622, .external_lex_state = 2}, - [1385] = {.lex_state = 622, .external_lex_state = 2}, - [1386] = {.lex_state = 582}, - [1387] = {.lex_state = 584}, - [1388] = {.lex_state = 584}, - [1389] = {.lex_state = 622, .external_lex_state = 2}, - [1390] = {.lex_state = 34, .external_lex_state = 2}, - [1391] = {.lex_state = 622, .external_lex_state = 2}, - [1392] = {.lex_state = 34, .external_lex_state = 2}, - [1393] = {.lex_state = 622, .external_lex_state = 2}, - [1394] = {.lex_state = 47, .external_lex_state = 2}, - [1395] = {.lex_state = 33, .external_lex_state = 2}, - [1396] = {.lex_state = 584}, - [1397] = {.lex_state = 584}, - [1398] = {.lex_state = 33, .external_lex_state = 2}, - [1399] = {.lex_state = 622, .external_lex_state = 2}, - [1400] = {.lex_state = 586}, - [1401] = {.lex_state = 590}, - [1402] = {.lex_state = 590}, - [1403] = {.lex_state = 592}, - [1404] = {.lex_state = 33, .external_lex_state = 2}, - [1405] = {.lex_state = 34, .external_lex_state = 2}, - [1406] = {.lex_state = 594}, - [1407] = {.lex_state = 33, .external_lex_state = 2}, - [1408] = {.lex_state = 586}, - [1409] = {.lex_state = 33, .external_lex_state = 2}, - [1410] = {.lex_state = 592}, - [1411] = {.lex_state = 33, .external_lex_state = 2}, - [1412] = {.lex_state = 47, .external_lex_state = 2}, - [1413] = {.lex_state = 592}, - [1414] = {.lex_state = 588}, - [1415] = {.lex_state = 594}, - [1416] = {.lex_state = 34, .external_lex_state = 2}, - [1417] = {.lex_state = 158, .external_lex_state = 2}, - [1418] = {.lex_state = 47, .external_lex_state = 2}, - [1419] = {.lex_state = 596}, - [1420] = {.lex_state = 158, .external_lex_state = 2}, - [1421] = {.lex_state = 594}, - [1422] = {.lex_state = 592}, - [1423] = {.lex_state = 594}, - [1424] = {.lex_state = 47, .external_lex_state = 2}, - [1425] = {.lex_state = 594}, - [1426] = {.lex_state = 596}, - [1427] = {.lex_state = 588}, - [1428] = {.lex_state = 594}, - [1429] = {.lex_state = 598}, - [1430] = {.lex_state = 594}, - [1431] = {.lex_state = 598}, - [1432] = {.lex_state = 594}, - [1433] = {.lex_state = 600}, - [1434] = {.lex_state = 600}, - [1435] = {.lex_state = 600}, - [1436] = {.lex_state = 600}, - [1437] = {.lex_state = 600}, - [1438] = {.lex_state = 598}, - [1439] = {.lex_state = 598}, - [1440] = {.lex_state = 602}, - [1441] = {.lex_state = 600}, - [1442] = {.lex_state = 604}, - [1443] = {.lex_state = 600}, - [1444] = {.lex_state = 600}, - [1445] = {.lex_state = 625, .external_lex_state = 2}, - [1446] = {.lex_state = 578}, - [1447] = {.lex_state = 625, .external_lex_state = 2}, - [1448] = {.lex_state = 600}, - [1449] = {.lex_state = 600}, - [1450] = {.lex_state = 578}, - [1451] = {.lex_state = 606}, - [1452] = {.lex_state = 606}, - [1453] = {.lex_state = 37, .external_lex_state = 2}, - [1454] = {.lex_state = 37, .external_lex_state = 2}, - [1455] = {.lex_state = 625, .external_lex_state = 2}, - [1456] = {.lex_state = 604}, - [1457] = {.lex_state = 37, .external_lex_state = 2}, - [1458] = {.lex_state = 625, .external_lex_state = 2}, - [1459] = {.lex_state = 602}, - [1460] = {.lex_state = 608}, - [1461] = {.lex_state = 608}, - [1462] = {.lex_state = 608}, - [1463] = {.lex_state = 608}, - [1464] = {.lex_state = 149, .external_lex_state = 2}, - [1465] = {.lex_state = 608}, - [1466] = {.lex_state = 149, .external_lex_state = 2}, - [1467] = {.lex_state = 149, .external_lex_state = 2}, - [1468] = {.lex_state = 149, .external_lex_state = 2}, - [1469] = {.lex_state = 149, .external_lex_state = 2}, - [1470] = {.lex_state = 608}, - [1471] = {.lex_state = 608}, - [1472] = {.lex_state = 608}, - [1473] = {.lex_state = 149, .external_lex_state = 2}, - [1474] = {.lex_state = 149, .external_lex_state = 2}, - [1475] = {.lex_state = 149, .external_lex_state = 2}, - [1476] = {.lex_state = 606}, - [1477] = {.lex_state = 608}, - [1478] = {.lex_state = 149, .external_lex_state = 2}, - [1479] = {.lex_state = 608}, - [1480] = {.lex_state = 149, .external_lex_state = 2}, - [1481] = {.lex_state = 606}, - [1482] = {.lex_state = 608}, - [1483] = {.lex_state = 149, .external_lex_state = 2}, - [1484] = {.lex_state = 149, .external_lex_state = 2}, - [1485] = {.lex_state = 149, .external_lex_state = 2}, - [1486] = {.lex_state = 608}, - [1487] = {.lex_state = 608}, - [1488] = {.lex_state = 610}, - [1489] = {.lex_state = 149, .external_lex_state = 2}, - [1490] = {.lex_state = 608}, - [1491] = {.lex_state = 149, .external_lex_state = 2}, - [1492] = {.lex_state = 608}, - [1493] = {.lex_state = 610}, - [1494] = {.lex_state = 608}, - [1495] = {.lex_state = 608}, - [1496] = {.lex_state = 149, .external_lex_state = 2}, - [1497] = {.lex_state = 608}, - [1498] = {.lex_state = 40, .external_lex_state = 2}, - [1499] = {.lex_state = 608}, - [1500] = {.lex_state = 608}, - [1501] = {.lex_state = 608}, - [1502] = {.lex_state = 608}, - [1503] = {.lex_state = 608}, - [1504] = {.lex_state = 608}, - [1505] = {.lex_state = 608}, - [1506] = {.lex_state = 608}, - [1507] = {.lex_state = 608}, - [1508] = {.lex_state = 610}, - [1509] = {.lex_state = 89}, - [1510] = {.lex_state = 578}, - [1511] = {.lex_state = 610}, - [1512] = {.lex_state = 610}, - [1513] = {.lex_state = 89}, - [1514] = {.lex_state = 89}, - [1515] = {.lex_state = 40, .external_lex_state = 2}, - [1516] = {.lex_state = 89}, - [1517] = {.lex_state = 89}, - [1518] = {.lex_state = 610}, - [1519] = {.lex_state = 6}, - [1520] = {.lex_state = 608}, - [1521] = {.lex_state = 89}, - [1522] = {.lex_state = 89}, - [1523] = {.lex_state = 89}, - [1524] = {.lex_state = 89}, - [1525] = {.lex_state = 179, .external_lex_state = 2}, - [1526] = {.lex_state = 89}, - [1527] = {.lex_state = 89}, - [1528] = {.lex_state = 89}, - [1529] = {.lex_state = 89}, - [1530] = {.lex_state = 37, .external_lex_state = 2}, - [1531] = {.lex_state = 89}, - [1532] = {.lex_state = 89}, - [1533] = {.lex_state = 89}, - [1534] = {.lex_state = 89}, - [1535] = {.lex_state = 89}, - [1536] = {.lex_state = 89}, - [1537] = {.lex_state = 37, .external_lex_state = 2}, - [1538] = {.lex_state = 89}, - [1539] = {.lex_state = 89}, - [1540] = {.lex_state = 89}, - [1541] = {.lex_state = 89}, - [1542] = {.lex_state = 89}, - [1543] = {.lex_state = 89}, - [1544] = {.lex_state = 89}, - [1545] = {.lex_state = 89}, - [1546] = {.lex_state = 89}, - [1547] = {.lex_state = 89}, - [1548] = {.lex_state = 89}, - [1549] = {.lex_state = 89}, - [1550] = {.lex_state = 37, .external_lex_state = 2}, - [1551] = {.lex_state = 89}, - [1552] = {.lex_state = 89}, - [1553] = {.lex_state = 89}, - [1554] = {.lex_state = 89}, - [1555] = {.lex_state = 89}, - [1556] = {.lex_state = 89}, - [1557] = {.lex_state = 89}, - [1558] = {.lex_state = 89}, - [1559] = {.lex_state = 89}, - [1560] = {.lex_state = 89}, - [1561] = {.lex_state = 89}, - [1562] = {.lex_state = 89}, - [1563] = {.lex_state = 37, .external_lex_state = 2}, - [1564] = {.lex_state = 578}, - [1565] = {.lex_state = 578}, - [1566] = {.lex_state = 578}, - [1567] = {.lex_state = 578}, - [1568] = {.lex_state = 578}, - [1569] = {.lex_state = 578}, - [1570] = {.lex_state = 578}, - [1571] = {.lex_state = 578}, - [1572] = {.lex_state = 578}, - [1573] = {.lex_state = 578}, - [1574] = {.lex_state = 578}, - [1575] = {.lex_state = 578}, - [1576] = {.lex_state = 89}, - [1577] = {.lex_state = 37, .external_lex_state = 2}, - [1578] = {.lex_state = 578}, - [1579] = {.lex_state = 578}, - [1580] = {.lex_state = 578}, - [1581] = {.lex_state = 578}, - [1582] = {.lex_state = 578}, - [1583] = {.lex_state = 578}, - [1584] = {.lex_state = 578}, - [1585] = {.lex_state = 578}, - [1586] = {.lex_state = 578}, - [1587] = {.lex_state = 578}, - [1588] = {.lex_state = 578}, - [1589] = {.lex_state = 578}, - [1590] = {.lex_state = 578}, - [1591] = {.lex_state = 578}, - [1592] = {.lex_state = 578}, - [1593] = {.lex_state = 578}, - [1594] = {.lex_state = 578}, - [1595] = {.lex_state = 578}, - [1596] = {.lex_state = 578}, - [1597] = {.lex_state = 578}, - [1598] = {.lex_state = 578}, - [1599] = {.lex_state = 578}, - [1600] = {.lex_state = 578}, - [1601] = {.lex_state = 578}, - [1602] = {.lex_state = 578}, - [1603] = {.lex_state = 578}, - [1604] = {.lex_state = 89}, - [1605] = {.lex_state = 578}, - [1606] = {.lex_state = 578}, - [1607] = {.lex_state = 578}, - [1608] = {.lex_state = 578}, - [1609] = {.lex_state = 578}, - [1610] = {.lex_state = 578}, - [1611] = {.lex_state = 578}, - [1612] = {.lex_state = 578}, - [1613] = {.lex_state = 578}, - [1614] = {.lex_state = 578}, - [1615] = {.lex_state = 578}, - [1616] = {.lex_state = 578}, - [1617] = {.lex_state = 578}, - [1618] = {.lex_state = 578}, - [1619] = {.lex_state = 578}, - [1620] = {.lex_state = 578}, - [1621] = {.lex_state = 578}, - [1622] = {.lex_state = 578}, - [1623] = {.lex_state = 578}, - [1624] = {.lex_state = 578}, - [1625] = {.lex_state = 578}, - [1626] = {.lex_state = 578}, - [1627] = {.lex_state = 578}, - [1628] = {.lex_state = 578}, - [1629] = {.lex_state = 578}, - [1630] = {.lex_state = 578}, - [1631] = {.lex_state = 578}, - [1632] = {.lex_state = 578}, - [1633] = {.lex_state = 578}, - [1634] = {.lex_state = 578}, - [1635] = {.lex_state = 578}, - [1636] = {.lex_state = 578}, - [1637] = {.lex_state = 578}, - [1638] = {.lex_state = 578}, - [1639] = {.lex_state = 578}, - [1640] = {.lex_state = 578}, - [1641] = {.lex_state = 578}, - [1642] = {.lex_state = 578}, - [1643] = {.lex_state = 578}, - [1644] = {.lex_state = 578}, - [1645] = {.lex_state = 578}, - [1646] = {.lex_state = 578}, - [1647] = {.lex_state = 578}, - [1648] = {.lex_state = 578}, - [1649] = {.lex_state = 578}, - [1650] = {.lex_state = 578}, - [1651] = {.lex_state = 578}, - [1652] = {.lex_state = 578}, - [1653] = {.lex_state = 578}, - [1654] = {.lex_state = 578}, - [1655] = {.lex_state = 578}, - [1656] = {.lex_state = 578}, - [1657] = {.lex_state = 578}, - [1658] = {.lex_state = 578}, - [1659] = {.lex_state = 578}, - [1660] = {.lex_state = 578}, - [1661] = {.lex_state = 578}, - [1662] = {.lex_state = 89}, - [1663] = {.lex_state = 89}, - [1664] = {.lex_state = 89}, - [1665] = {.lex_state = 578}, - [1666] = {.lex_state = 578}, - [1667] = {.lex_state = 578}, - [1668] = {.lex_state = 578}, - [1669] = {.lex_state = 578}, - [1670] = {.lex_state = 578}, - [1671] = {.lex_state = 578}, - [1672] = {.lex_state = 578}, - [1673] = {.lex_state = 578}, - [1674] = {.lex_state = 578}, - [1675] = {.lex_state = 578}, - [1676] = {.lex_state = 578}, - [1677] = {.lex_state = 37, .external_lex_state = 2}, - [1678] = {.lex_state = 578}, - [1679] = {.lex_state = 7}, - [1680] = {.lex_state = 179, .external_lex_state = 2}, - [1681] = {.lex_state = 578}, - [1682] = {.lex_state = 578}, - [1683] = {.lex_state = 578}, - [1684] = {.lex_state = 578}, - [1685] = {.lex_state = 578}, - [1686] = {.lex_state = 578}, - [1687] = {.lex_state = 578}, - [1688] = {.lex_state = 89}, - [1689] = {.lex_state = 578}, - [1690] = {.lex_state = 578}, - [1691] = {.lex_state = 578}, - [1692] = {.lex_state = 578}, - [1693] = {.lex_state = 578}, - [1694] = {.lex_state = 179, .external_lex_state = 2}, - [1695] = {.lex_state = 132}, - [1696] = {.lex_state = 578}, - [1697] = {.lex_state = 7}, - [1698] = {.lex_state = 37, .external_lex_state = 2}, - [1699] = {.lex_state = 37, .external_lex_state = 2}, - [1700] = {.lex_state = 37, .external_lex_state = 2}, - [1701] = {.lex_state = 37, .external_lex_state = 2}, - [1702] = {.lex_state = 37, .external_lex_state = 2}, - [1703] = {.lex_state = 37, .external_lex_state = 2}, - [1704] = {.lex_state = 8}, - [1705] = {.lex_state = 132}, - [1706] = {.lex_state = 10}, - [1707] = {.lex_state = 133}, - [1708] = {.lex_state = 133}, - [1709] = {.lex_state = 37, .external_lex_state = 2}, - [1710] = {.lex_state = 37, .external_lex_state = 2}, - [1711] = {.lex_state = 132}, - [1712] = {.lex_state = 37, .external_lex_state = 2}, - [1713] = {.lex_state = 37, .external_lex_state = 2}, - [1714] = {.lex_state = 37, .external_lex_state = 2}, - [1715] = {.lex_state = 132}, - [1716] = {.lex_state = 178, .external_lex_state = 2}, - [1717] = {.lex_state = 132}, - [1718] = {.lex_state = 12}, - [1719] = {.lex_state = 89}, - [1720] = {.lex_state = 136}, - [1721] = {.lex_state = 178, .external_lex_state = 2}, - [1722] = {.lex_state = 11}, - [1723] = {.lex_state = 132}, - [1724] = {.lex_state = 178, .external_lex_state = 2}, - [1725] = {.lex_state = 11}, - [1726] = {.lex_state = 89}, - [1727] = {.lex_state = 628, .external_lex_state = 2}, - [1728] = {.lex_state = 132}, - [1729] = {.lex_state = 132}, - [1730] = {.lex_state = 132}, - [1731] = {.lex_state = 89}, - [1732] = {.lex_state = 89}, - [1733] = {.lex_state = 572, .external_lex_state = 2}, - [1734] = {.lex_state = 628, .external_lex_state = 2}, - [1735] = {.lex_state = 628, .external_lex_state = 2}, - [1736] = {.lex_state = 134}, - [1737] = {.lex_state = 89}, - [1738] = {.lex_state = 628, .external_lex_state = 2}, - [1739] = {.lex_state = 138}, - [1740] = {.lex_state = 178, .external_lex_state = 2}, - [1741] = {.lex_state = 628, .external_lex_state = 2}, - [1742] = {.lex_state = 628, .external_lex_state = 2}, - [1743] = {.lex_state = 628, .external_lex_state = 2}, - [1744] = {.lex_state = 167, .external_lex_state = 2}, - [1745] = {.lex_state = 89}, - [1746] = {.lex_state = 89}, - [1747] = {.lex_state = 9}, - [1748] = {.lex_state = 170, .external_lex_state = 2}, - [1749] = {.lex_state = 572, .external_lex_state = 2}, - [1750] = {.lex_state = 572, .external_lex_state = 2}, - [1751] = {.lex_state = 572, .external_lex_state = 2}, - [1752] = {.lex_state = 572, .external_lex_state = 2}, - [1753] = {.lex_state = 178, .external_lex_state = 2}, - [1754] = {.lex_state = 572, .external_lex_state = 2}, - [1755] = {.lex_state = 178, .external_lex_state = 2}, - [1756] = {.lex_state = 178, .external_lex_state = 2}, - [1757] = {.lex_state = 12}, - [1758] = {.lex_state = 89}, - [1759] = {.lex_state = 12}, - [1760] = {.lex_state = 12}, - [1761] = {.lex_state = 137}, - [1762] = {.lex_state = 137}, - [1763] = {.lex_state = 37, .external_lex_state = 2}, - [1764] = {.lex_state = 37, .external_lex_state = 2}, - [1765] = {.lex_state = 13}, - [1766] = {.lex_state = 178, .external_lex_state = 2}, - [1767] = {.lex_state = 178, .external_lex_state = 2}, - [1768] = {.lex_state = 178, .external_lex_state = 2}, - [1769] = {.lex_state = 89}, - [1770] = {.lex_state = 37, .external_lex_state = 2}, - [1771] = {.lex_state = 178, .external_lex_state = 2}, - [1772] = {.lex_state = 572, .external_lex_state = 2}, - [1773] = {.lex_state = 178, .external_lex_state = 2}, - [1774] = {.lex_state = 628, .external_lex_state = 2}, - [1775] = {.lex_state = 178, .external_lex_state = 2}, - [1776] = {.lex_state = 572, .external_lex_state = 2}, - [1777] = {.lex_state = 138}, - [1778] = {.lex_state = 37, .external_lex_state = 2}, - [1779] = {.lex_state = 37, .external_lex_state = 2}, - [1780] = {.lex_state = 572, .external_lex_state = 2}, - [1781] = {.lex_state = 89}, - [1782] = {.lex_state = 89}, - [1783] = {.lex_state = 89}, - [1784] = {.lex_state = 89}, - [1785] = {.lex_state = 37, .external_lex_state = 2}, - [1786] = {.lex_state = 572, .external_lex_state = 2}, - [1787] = {.lex_state = 572, .external_lex_state = 2}, - [1788] = {.lex_state = 89}, - [1789] = {.lex_state = 89}, - [1790] = {.lex_state = 37, .external_lex_state = 2}, - [1791] = {.lex_state = 89}, - [1792] = {.lex_state = 89}, - [1793] = {.lex_state = 89}, - [1794] = {.lex_state = 89}, - [1795] = {.lex_state = 627, .external_lex_state = 2}, - [1796] = {.lex_state = 138}, - [1797] = {.lex_state = 89}, - [1798] = {.lex_state = 138}, - [1799] = {.lex_state = 37, .external_lex_state = 2}, - [1800] = {.lex_state = 572, .external_lex_state = 2}, - [1801] = {.lex_state = 14}, - [1802] = {.lex_state = 572, .external_lex_state = 2}, - [1803] = {.lex_state = 14}, - [1804] = {.lex_state = 139}, - [1805] = {.lex_state = 135}, - [1806] = {.lex_state = 572, .external_lex_state = 2}, - [1807] = {.lex_state = 89}, - [1808] = {.lex_state = 89}, - [1809] = {.lex_state = 37, .external_lex_state = 2}, - [1810] = {.lex_state = 89}, - [1811] = {.lex_state = 89}, - [1812] = {.lex_state = 628, .external_lex_state = 2}, - [1813] = {.lex_state = 628, .external_lex_state = 2}, - [1814] = {.lex_state = 89}, - [1815] = {.lex_state = 89}, - [1816] = {.lex_state = 573, .external_lex_state = 2}, - [1817] = {.lex_state = 37, .external_lex_state = 2}, - [1818] = {.lex_state = 37, .external_lex_state = 2}, - [1819] = {.lex_state = 37, .external_lex_state = 2}, - [1820] = {.lex_state = 37, .external_lex_state = 2}, - [1821] = {.lex_state = 37, .external_lex_state = 2}, - [1822] = {.lex_state = 37, .external_lex_state = 2}, - [1823] = {.lex_state = 169, .external_lex_state = 2}, - [1824] = {.lex_state = 169, .external_lex_state = 2}, - [1825] = {.lex_state = 628, .external_lex_state = 2}, - [1826] = {.lex_state = 15}, - [1827] = {.lex_state = 15}, - [1828] = {.lex_state = 89}, - [1829] = {.lex_state = 15}, - [1830] = {.lex_state = 578}, - [1831] = {.lex_state = 89}, - [1832] = {.lex_state = 627, .external_lex_state = 2}, - [1833] = {.lex_state = 628, .external_lex_state = 2}, - [1834] = {.lex_state = 15}, - [1835] = {.lex_state = 15}, - [1836] = {.lex_state = 140}, - [1837] = {.lex_state = 573, .external_lex_state = 2}, - [1838] = {.lex_state = 89}, - [1839] = {.lex_state = 140}, - [1840] = {.lex_state = 171, .external_lex_state = 2}, - [1841] = {.lex_state = 171, .external_lex_state = 2}, - [1842] = {.lex_state = 171, .external_lex_state = 2}, - [1843] = {.lex_state = 171, .external_lex_state = 2}, - [1844] = {.lex_state = 628, .external_lex_state = 2}, - [1845] = {.lex_state = 625, .external_lex_state = 2}, - [1846] = {.lex_state = 89}, - [1847] = {.lex_state = 141}, - [1848] = {.lex_state = 141}, - [1849] = {.lex_state = 141}, - [1850] = {.lex_state = 141}, - [1851] = {.lex_state = 89}, - [1852] = {.lex_state = 625, .external_lex_state = 2}, - [1853] = {.lex_state = 176, .external_lex_state = 2}, - [1854] = {.lex_state = 625, .external_lex_state = 2}, - [1855] = {.lex_state = 141}, - [1856] = {.lex_state = 625, .external_lex_state = 2}, - [1857] = {.lex_state = 628, .external_lex_state = 2}, - [1858] = {.lex_state = 625, .external_lex_state = 2}, - [1859] = {.lex_state = 1182}, - [1860] = {.lex_state = 625, .external_lex_state = 2}, - [1861] = {.lex_state = 625, .external_lex_state = 2}, - [1862] = {.lex_state = 625, .external_lex_state = 2}, - [1863] = {.lex_state = 89}, + [1362] = {.lex_state = 31, .external_lex_state = 2}, + [1363] = {.lex_state = 174, .external_lex_state = 2}, + [1364] = {.lex_state = 31, .external_lex_state = 2}, + [1365] = {.lex_state = 31, .external_lex_state = 2}, + [1366] = {.lex_state = 147, .external_lex_state = 2}, + [1367] = {.lex_state = 620, .external_lex_state = 2}, + [1368] = {.lex_state = 47, .external_lex_state = 2}, + [1369] = {.lex_state = 620, .external_lex_state = 2}, + [1370] = {.lex_state = 620, .external_lex_state = 2}, + [1371] = {.lex_state = 31, .external_lex_state = 2}, + [1372] = {.lex_state = 620, .external_lex_state = 2}, + [1373] = {.lex_state = 147, .external_lex_state = 2}, + [1374] = {.lex_state = 620, .external_lex_state = 2}, + [1375] = {.lex_state = 628, .external_lex_state = 2}, + [1376] = {.lex_state = 620, .external_lex_state = 2}, + [1377] = {.lex_state = 147, .external_lex_state = 2}, + [1378] = {.lex_state = 47, .external_lex_state = 2}, + [1379] = {.lex_state = 620, .external_lex_state = 2}, + [1380] = {.lex_state = 47, .external_lex_state = 2}, + [1381] = {.lex_state = 147, .external_lex_state = 2}, + [1382] = {.lex_state = 147, .external_lex_state = 2}, + [1383] = {.lex_state = 620, .external_lex_state = 2}, + [1384] = {.lex_state = 31, .external_lex_state = 2}, + [1385] = {.lex_state = 620, .external_lex_state = 2}, + [1386] = {.lex_state = 620, .external_lex_state = 2}, + [1387] = {.lex_state = 620, .external_lex_state = 2}, + [1388] = {.lex_state = 578}, + [1389] = {.lex_state = 620, .external_lex_state = 2}, + [1390] = {.lex_state = 620, .external_lex_state = 2}, + [1391] = {.lex_state = 620, .external_lex_state = 2}, + [1392] = {.lex_state = 620, .external_lex_state = 2}, + [1393] = {.lex_state = 620, .external_lex_state = 2}, + [1394] = {.lex_state = 580}, + [1395] = {.lex_state = 36, .external_lex_state = 2}, + [1396] = {.lex_state = 620, .external_lex_state = 2}, + [1397] = {.lex_state = 620, .external_lex_state = 2}, + [1398] = {.lex_state = 580}, + [1399] = {.lex_state = 578}, + [1400] = {.lex_state = 36, .external_lex_state = 2}, + [1401] = {.lex_state = 580}, + [1402] = {.lex_state = 48, .external_lex_state = 2}, + [1403] = {.lex_state = 620, .external_lex_state = 2}, + [1404] = {.lex_state = 580}, + [1405] = {.lex_state = 582}, + [1406] = {.lex_state = 35, .external_lex_state = 2}, + [1407] = {.lex_state = 586}, + [1408] = {.lex_state = 35, .external_lex_state = 2}, + [1409] = {.lex_state = 620, .external_lex_state = 2}, + [1410] = {.lex_state = 590}, + [1411] = {.lex_state = 35, .external_lex_state = 2}, + [1412] = {.lex_state = 586}, + [1413] = {.lex_state = 36, .external_lex_state = 2}, + [1414] = {.lex_state = 582}, + [1415] = {.lex_state = 588}, + [1416] = {.lex_state = 35, .external_lex_state = 2}, + [1417] = {.lex_state = 35, .external_lex_state = 2}, + [1418] = {.lex_state = 588}, + [1419] = {.lex_state = 590}, + [1420] = {.lex_state = 588}, + [1421] = {.lex_state = 48, .external_lex_state = 2}, + [1422] = {.lex_state = 36, .external_lex_state = 2}, + [1423] = {.lex_state = 588}, + [1424] = {.lex_state = 48, .external_lex_state = 2}, + [1425] = {.lex_state = 35, .external_lex_state = 2}, + [1426] = {.lex_state = 592}, + [1427] = {.lex_state = 157, .external_lex_state = 2}, + [1428] = {.lex_state = 590}, + [1429] = {.lex_state = 584}, + [1430] = {.lex_state = 590}, + [1431] = {.lex_state = 157, .external_lex_state = 2}, + [1432] = {.lex_state = 590}, + [1433] = {.lex_state = 48, .external_lex_state = 2}, + [1434] = {.lex_state = 590}, + [1435] = {.lex_state = 594}, + [1436] = {.lex_state = 590}, + [1437] = {.lex_state = 594}, + [1438] = {.lex_state = 584}, + [1439] = {.lex_state = 590}, + [1440] = {.lex_state = 592}, + [1441] = {.lex_state = 594}, + [1442] = {.lex_state = 596}, + [1443] = {.lex_state = 594}, + [1444] = {.lex_state = 596}, + [1445] = {.lex_state = 596}, + [1446] = {.lex_state = 596}, + [1447] = {.lex_state = 596}, + [1448] = {.lex_state = 596}, + [1449] = {.lex_state = 596}, + [1450] = {.lex_state = 596}, + [1451] = {.lex_state = 598}, + [1452] = {.lex_state = 625, .external_lex_state = 2}, + [1453] = {.lex_state = 596}, + [1454] = {.lex_state = 625, .external_lex_state = 2}, + [1455] = {.lex_state = 574}, + [1456] = {.lex_state = 596}, + [1457] = {.lex_state = 600}, + [1458] = {.lex_state = 38, .external_lex_state = 2}, + [1459] = {.lex_state = 600}, + [1460] = {.lex_state = 598}, + [1461] = {.lex_state = 38, .external_lex_state = 2}, + [1462] = {.lex_state = 602}, + [1463] = {.lex_state = 625, .external_lex_state = 2}, + [1464] = {.lex_state = 38, .external_lex_state = 2}, + [1465] = {.lex_state = 574}, + [1466] = {.lex_state = 602}, + [1467] = {.lex_state = 625, .external_lex_state = 2}, + [1468] = {.lex_state = 604}, + [1469] = {.lex_state = 604}, + [1470] = {.lex_state = 148, .external_lex_state = 2}, + [1471] = {.lex_state = 604}, + [1472] = {.lex_state = 148, .external_lex_state = 2}, + [1473] = {.lex_state = 148, .external_lex_state = 2}, + [1474] = {.lex_state = 148, .external_lex_state = 2}, + [1475] = {.lex_state = 604}, + [1476] = {.lex_state = 148, .external_lex_state = 2}, + [1477] = {.lex_state = 604}, + [1478] = {.lex_state = 604}, + [1479] = {.lex_state = 604}, + [1480] = {.lex_state = 148, .external_lex_state = 2}, + [1481] = {.lex_state = 604}, + [1482] = {.lex_state = 148, .external_lex_state = 2}, + [1483] = {.lex_state = 602}, + [1484] = {.lex_state = 148, .external_lex_state = 2}, + [1485] = {.lex_state = 148, .external_lex_state = 2}, + [1486] = {.lex_state = 148, .external_lex_state = 2}, + [1487] = {.lex_state = 148, .external_lex_state = 2}, + [1488] = {.lex_state = 604}, + [1489] = {.lex_state = 604}, + [1490] = {.lex_state = 602}, + [1491] = {.lex_state = 604}, + [1492] = {.lex_state = 148, .external_lex_state = 2}, + [1493] = {.lex_state = 148, .external_lex_state = 2}, + [1494] = {.lex_state = 604}, + [1495] = {.lex_state = 604}, + [1496] = {.lex_state = 604}, + [1497] = {.lex_state = 604}, + [1498] = {.lex_state = 604}, + [1499] = {.lex_state = 148, .external_lex_state = 2}, + [1500] = {.lex_state = 604}, + [1501] = {.lex_state = 604}, + [1502] = {.lex_state = 604}, + [1503] = {.lex_state = 606}, + [1504] = {.lex_state = 606}, + [1505] = {.lex_state = 604}, + [1506] = {.lex_state = 606}, + [1507] = {.lex_state = 604}, + [1508] = {.lex_state = 148, .external_lex_state = 2}, + [1509] = {.lex_state = 604}, + [1510] = {.lex_state = 148, .external_lex_state = 2}, + [1511] = {.lex_state = 604}, + [1512] = {.lex_state = 604}, + [1513] = {.lex_state = 604}, + [1514] = {.lex_state = 604}, + [1515] = {.lex_state = 604}, + [1516] = {.lex_state = 41, .external_lex_state = 2}, + [1517] = {.lex_state = 574}, + [1518] = {.lex_state = 574}, + [1519] = {.lex_state = 606}, + [1520] = {.lex_state = 606}, + [1521] = {.lex_state = 41, .external_lex_state = 2}, + [1522] = {.lex_state = 91}, + [1523] = {.lex_state = 91}, + [1524] = {.lex_state = 91}, + [1525] = {.lex_state = 91}, + [1526] = {.lex_state = 606}, + [1527] = {.lex_state = 8}, + [1528] = {.lex_state = 604}, + [1529] = {.lex_state = 91}, + [1530] = {.lex_state = 91}, + [1531] = {.lex_state = 91}, + [1532] = {.lex_state = 91}, + [1533] = {.lex_state = 91}, + [1534] = {.lex_state = 91}, + [1535] = {.lex_state = 91}, + [1536] = {.lex_state = 91}, + [1537] = {.lex_state = 91}, + [1538] = {.lex_state = 91}, + [1539] = {.lex_state = 38, .external_lex_state = 2}, + [1540] = {.lex_state = 91}, + [1541] = {.lex_state = 91}, + [1542] = {.lex_state = 38, .external_lex_state = 2}, + [1543] = {.lex_state = 91}, + [1544] = {.lex_state = 91}, + [1545] = {.lex_state = 91}, + [1546] = {.lex_state = 91}, + [1547] = {.lex_state = 91}, + [1548] = {.lex_state = 91}, + [1549] = {.lex_state = 91}, + [1550] = {.lex_state = 91}, + [1551] = {.lex_state = 91}, + [1552] = {.lex_state = 91}, + [1553] = {.lex_state = 91}, + [1554] = {.lex_state = 91}, + [1555] = {.lex_state = 38, .external_lex_state = 2}, + [1556] = {.lex_state = 91}, + [1557] = {.lex_state = 91}, + [1558] = {.lex_state = 91}, + [1559] = {.lex_state = 91}, + [1560] = {.lex_state = 91}, + [1561] = {.lex_state = 91}, + [1562] = {.lex_state = 91}, + [1563] = {.lex_state = 91}, + [1564] = {.lex_state = 91}, + [1565] = {.lex_state = 91}, + [1566] = {.lex_state = 91}, + [1567] = {.lex_state = 91}, + [1568] = {.lex_state = 574}, + [1569] = {.lex_state = 574}, + [1570] = {.lex_state = 574}, + [1571] = {.lex_state = 574}, + [1572] = {.lex_state = 574}, + [1573] = {.lex_state = 574}, + [1574] = {.lex_state = 574}, + [1575] = {.lex_state = 574}, + [1576] = {.lex_state = 574}, + [1577] = {.lex_state = 574}, + [1578] = {.lex_state = 574}, + [1579] = {.lex_state = 574}, + [1580] = {.lex_state = 38, .external_lex_state = 2}, + [1581] = {.lex_state = 574}, + [1582] = {.lex_state = 574}, + [1583] = {.lex_state = 574}, + [1584] = {.lex_state = 574}, + [1585] = {.lex_state = 574}, + [1586] = {.lex_state = 574}, + [1587] = {.lex_state = 574}, + [1588] = {.lex_state = 574}, + [1589] = {.lex_state = 574}, + [1590] = {.lex_state = 574}, + [1591] = {.lex_state = 574}, + [1592] = {.lex_state = 574}, + [1593] = {.lex_state = 574}, + [1594] = {.lex_state = 574}, + [1595] = {.lex_state = 574}, + [1596] = {.lex_state = 574}, + [1597] = {.lex_state = 574}, + [1598] = {.lex_state = 574}, + [1599] = {.lex_state = 574}, + [1600] = {.lex_state = 574}, + [1601] = {.lex_state = 574}, + [1602] = {.lex_state = 574}, + [1603] = {.lex_state = 574}, + [1604] = {.lex_state = 574}, + [1605] = {.lex_state = 574}, + [1606] = {.lex_state = 574}, + [1607] = {.lex_state = 38, .external_lex_state = 2}, + [1608] = {.lex_state = 574}, + [1609] = {.lex_state = 91}, + [1610] = {.lex_state = 574}, + [1611] = {.lex_state = 574}, + [1612] = {.lex_state = 574}, + [1613] = {.lex_state = 574}, + [1614] = {.lex_state = 574}, + [1615] = {.lex_state = 574}, + [1616] = {.lex_state = 574}, + [1617] = {.lex_state = 574}, + [1618] = {.lex_state = 38, .external_lex_state = 2}, + [1619] = {.lex_state = 574}, + [1620] = {.lex_state = 574}, + [1621] = {.lex_state = 574}, + [1622] = {.lex_state = 574}, + [1623] = {.lex_state = 574}, + [1624] = {.lex_state = 574}, + [1625] = {.lex_state = 574}, + [1626] = {.lex_state = 574}, + [1627] = {.lex_state = 574}, + [1628] = {.lex_state = 574}, + [1629] = {.lex_state = 574}, + [1630] = {.lex_state = 574}, + [1631] = {.lex_state = 574}, + [1632] = {.lex_state = 574}, + [1633] = {.lex_state = 574}, + [1634] = {.lex_state = 574}, + [1635] = {.lex_state = 574}, + [1636] = {.lex_state = 574}, + [1637] = {.lex_state = 574}, + [1638] = {.lex_state = 574}, + [1639] = {.lex_state = 574}, + [1640] = {.lex_state = 574}, + [1641] = {.lex_state = 574}, + [1642] = {.lex_state = 574}, + [1643] = {.lex_state = 574}, + [1644] = {.lex_state = 574}, + [1645] = {.lex_state = 574}, + [1646] = {.lex_state = 574}, + [1647] = {.lex_state = 574}, + [1648] = {.lex_state = 574}, + [1649] = {.lex_state = 574}, + [1650] = {.lex_state = 574}, + [1651] = {.lex_state = 574}, + [1652] = {.lex_state = 574}, + [1653] = {.lex_state = 574}, + [1654] = {.lex_state = 574}, + [1655] = {.lex_state = 574}, + [1656] = {.lex_state = 574}, + [1657] = {.lex_state = 574}, + [1658] = {.lex_state = 574}, + [1659] = {.lex_state = 574}, + [1660] = {.lex_state = 574}, + [1661] = {.lex_state = 574}, + [1662] = {.lex_state = 574}, + [1663] = {.lex_state = 574}, + [1664] = {.lex_state = 574}, + [1665] = {.lex_state = 574}, + [1666] = {.lex_state = 574}, + [1667] = {.lex_state = 178, .external_lex_state = 2}, + [1668] = {.lex_state = 574}, + [1669] = {.lex_state = 574}, + [1670] = {.lex_state = 574}, + [1671] = {.lex_state = 574}, + [1672] = {.lex_state = 574}, + [1673] = {.lex_state = 574}, + [1674] = {.lex_state = 574}, + [1675] = {.lex_state = 574}, + [1676] = {.lex_state = 574}, + [1677] = {.lex_state = 574}, + [1678] = {.lex_state = 574}, + [1679] = {.lex_state = 574}, + [1680] = {.lex_state = 38, .external_lex_state = 2}, + [1681] = {.lex_state = 91}, + [1682] = {.lex_state = 91}, + [1683] = {.lex_state = 38, .external_lex_state = 2}, + [1684] = {.lex_state = 38, .external_lex_state = 2}, + [1685] = {.lex_state = 38, .external_lex_state = 2}, + [1686] = {.lex_state = 91}, + [1687] = {.lex_state = 91}, + [1688] = {.lex_state = 91}, + [1689] = {.lex_state = 91}, + [1690] = {.lex_state = 91}, + [1691] = {.lex_state = 9}, + [1692] = {.lex_state = 9}, + [1693] = {.lex_state = 178, .external_lex_state = 2}, + [1694] = {.lex_state = 574}, + [1695] = {.lex_state = 574}, + [1696] = {.lex_state = 574}, + [1697] = {.lex_state = 574}, + [1698] = {.lex_state = 574}, + [1699] = {.lex_state = 574}, + [1700] = {.lex_state = 574}, + [1701] = {.lex_state = 574}, + [1702] = {.lex_state = 574}, + [1703] = {.lex_state = 574}, + [1704] = {.lex_state = 91}, + [1705] = {.lex_state = 574}, + [1706] = {.lex_state = 574}, + [1707] = {.lex_state = 574}, + [1708] = {.lex_state = 131}, + [1709] = {.lex_state = 178, .external_lex_state = 2}, + [1710] = {.lex_state = 38, .external_lex_state = 2}, + [1711] = {.lex_state = 38, .external_lex_state = 2}, + [1712] = {.lex_state = 38, .external_lex_state = 2}, + [1713] = {.lex_state = 10}, + [1714] = {.lex_state = 12}, + [1715] = {.lex_state = 38, .external_lex_state = 2}, + [1716] = {.lex_state = 38, .external_lex_state = 2}, + [1717] = {.lex_state = 131}, + [1718] = {.lex_state = 132}, + [1719] = {.lex_state = 132}, + [1720] = {.lex_state = 131}, + [1721] = {.lex_state = 38, .external_lex_state = 2}, + [1722] = {.lex_state = 38, .external_lex_state = 2}, + [1723] = {.lex_state = 38, .external_lex_state = 2}, + [1724] = {.lex_state = 38, .external_lex_state = 2}, + [1725] = {.lex_state = 38, .external_lex_state = 2}, + [1726] = {.lex_state = 38, .external_lex_state = 2}, + [1727] = {.lex_state = 13}, + [1728] = {.lex_state = 91}, + [1729] = {.lex_state = 627, .external_lex_state = 2}, + [1730] = {.lex_state = 131}, + [1731] = {.lex_state = 177, .external_lex_state = 2}, + [1732] = {.lex_state = 131}, + [1733] = {.lex_state = 627, .external_lex_state = 2}, + [1734] = {.lex_state = 627, .external_lex_state = 2}, + [1735] = {.lex_state = 566, .external_lex_state = 2}, + [1736] = {.lex_state = 13}, + [1737] = {.lex_state = 91}, + [1738] = {.lex_state = 14}, + [1739] = {.lex_state = 177, .external_lex_state = 2}, + [1740] = {.lex_state = 177, .external_lex_state = 2}, + [1741] = {.lex_state = 131}, + [1742] = {.lex_state = 133}, + [1743] = {.lex_state = 135}, + [1744] = {.lex_state = 131}, + [1745] = {.lex_state = 131}, + [1746] = {.lex_state = 131}, + [1747] = {.lex_state = 91}, + [1748] = {.lex_state = 91}, + [1749] = {.lex_state = 91}, + [1750] = {.lex_state = 91}, + [1751] = {.lex_state = 169, .external_lex_state = 2}, + [1752] = {.lex_state = 177, .external_lex_state = 2}, + [1753] = {.lex_state = 91}, + [1754] = {.lex_state = 566, .external_lex_state = 2}, + [1755] = {.lex_state = 566, .external_lex_state = 2}, + [1756] = {.lex_state = 566, .external_lex_state = 2}, + [1757] = {.lex_state = 566, .external_lex_state = 2}, + [1758] = {.lex_state = 566, .external_lex_state = 2}, + [1759] = {.lex_state = 566, .external_lex_state = 2}, + [1760] = {.lex_state = 38, .external_lex_state = 2}, + [1761] = {.lex_state = 627, .external_lex_state = 2}, + [1762] = {.lex_state = 177, .external_lex_state = 2}, + [1763] = {.lex_state = 91}, + [1764] = {.lex_state = 627, .external_lex_state = 2}, + [1765] = {.lex_state = 177, .external_lex_state = 2}, + [1766] = {.lex_state = 566, .external_lex_state = 2}, + [1767] = {.lex_state = 177, .external_lex_state = 2}, + [1768] = {.lex_state = 136}, + [1769] = {.lex_state = 177, .external_lex_state = 2}, + [1770] = {.lex_state = 38, .external_lex_state = 2}, + [1771] = {.lex_state = 627, .external_lex_state = 2}, + [1772] = {.lex_state = 177, .external_lex_state = 2}, + [1773] = {.lex_state = 177, .external_lex_state = 2}, + [1774] = {.lex_state = 137}, + [1775] = {.lex_state = 91}, + [1776] = {.lex_state = 15}, + [1777] = {.lex_state = 627, .external_lex_state = 2}, + [1778] = {.lex_state = 177, .external_lex_state = 2}, + [1779] = {.lex_state = 91}, + [1780] = {.lex_state = 627, .external_lex_state = 2}, + [1781] = {.lex_state = 177, .external_lex_state = 2}, + [1782] = {.lex_state = 166, .external_lex_state = 2}, + [1783] = {.lex_state = 91}, + [1784] = {.lex_state = 14}, + [1785] = {.lex_state = 177, .external_lex_state = 2}, + [1786] = {.lex_state = 11}, + [1787] = {.lex_state = 14}, + [1788] = {.lex_state = 14}, + [1789] = {.lex_state = 38, .external_lex_state = 2}, + [1790] = {.lex_state = 136}, + [1791] = {.lex_state = 566, .external_lex_state = 2}, + [1792] = {.lex_state = 38, .external_lex_state = 2}, + [1793] = {.lex_state = 38, .external_lex_state = 2}, + [1794] = {.lex_state = 91}, + [1795] = {.lex_state = 91}, + [1796] = {.lex_state = 91}, + [1797] = {.lex_state = 134}, + [1798] = {.lex_state = 91}, + [1799] = {.lex_state = 91}, + [1800] = {.lex_state = 627, .external_lex_state = 2}, + [1801] = {.lex_state = 91}, + [1802] = {.lex_state = 91}, + [1803] = {.lex_state = 627, .external_lex_state = 2}, + [1804] = {.lex_state = 91}, + [1805] = {.lex_state = 91}, + [1806] = {.lex_state = 566, .external_lex_state = 2}, + [1807] = {.lex_state = 566, .external_lex_state = 2}, + [1808] = {.lex_state = 566, .external_lex_state = 2}, + [1809] = {.lex_state = 626, .external_lex_state = 2}, + [1810] = {.lex_state = 566, .external_lex_state = 2}, + [1811] = {.lex_state = 566, .external_lex_state = 2}, + [1812] = {.lex_state = 91}, + [1813] = {.lex_state = 91}, + [1814] = {.lex_state = 168, .external_lex_state = 2}, + [1815] = {.lex_state = 91}, + [1816] = {.lex_state = 567, .external_lex_state = 2}, + [1817] = {.lex_state = 168, .external_lex_state = 2}, + [1818] = {.lex_state = 38, .external_lex_state = 2}, + [1819] = {.lex_state = 91}, + [1820] = {.lex_state = 91}, + [1821] = {.lex_state = 91}, + [1822] = {.lex_state = 91}, + [1823] = {.lex_state = 137}, + [1824] = {.lex_state = 137}, + [1825] = {.lex_state = 137}, + [1826] = {.lex_state = 91}, + [1827] = {.lex_state = 16}, + [1828] = {.lex_state = 91}, + [1829] = {.lex_state = 16}, + [1830] = {.lex_state = 91}, + [1831] = {.lex_state = 91}, + [1832] = {.lex_state = 91}, + [1833] = {.lex_state = 91}, + [1834] = {.lex_state = 38, .external_lex_state = 2}, + [1835] = {.lex_state = 38, .external_lex_state = 2}, + [1836] = {.lex_state = 91}, + [1837] = {.lex_state = 91}, + [1838] = {.lex_state = 38, .external_lex_state = 2}, + [1839] = {.lex_state = 91}, + [1840] = {.lex_state = 91}, + [1841] = {.lex_state = 38, .external_lex_state = 2}, + [1842] = {.lex_state = 138}, + [1843] = {.lex_state = 38, .external_lex_state = 2}, + [1844] = {.lex_state = 91}, + [1845] = {.lex_state = 38, .external_lex_state = 2}, + [1846] = {.lex_state = 38, .external_lex_state = 2}, + [1847] = {.lex_state = 38, .external_lex_state = 2}, + [1848] = {.lex_state = 91}, + [1849] = {.lex_state = 91}, + [1850] = {.lex_state = 91}, + [1851] = {.lex_state = 91}, + [1852] = {.lex_state = 38, .external_lex_state = 2}, + [1853] = {.lex_state = 91}, + [1854] = {.lex_state = 91}, + [1855] = {.lex_state = 139}, + [1856] = {.lex_state = 17}, + [1857] = {.lex_state = 91}, + [1858] = {.lex_state = 91}, + [1859] = {.lex_state = 91}, + [1860] = {.lex_state = 17}, + [1861] = {.lex_state = 574}, + [1862] = {.lex_state = 17}, + [1863] = {.lex_state = 170, .external_lex_state = 2}, [1864] = {.lex_state = 17}, - [1865] = {.lex_state = 625, .external_lex_state = 2}, - [1866] = {.lex_state = 625, .external_lex_state = 2}, - [1867] = {.lex_state = 628, .external_lex_state = 2}, - [1868] = {.lex_state = 628, .external_lex_state = 2}, - [1869] = {.lex_state = 625, .external_lex_state = 2}, - [1870] = {.lex_state = 625, .external_lex_state = 2}, - [1871] = {.lex_state = 625, .external_lex_state = 2}, - [1872] = {.lex_state = 625, .external_lex_state = 2}, - [1873] = {.lex_state = 625, .external_lex_state = 2}, - [1874] = {.lex_state = 625, .external_lex_state = 2}, - [1875] = {.lex_state = 578}, - [1876] = {.lex_state = 267}, - [1877] = {.lex_state = 89}, - [1878] = {.lex_state = 1180}, - [1879] = {.lex_state = 16}, + [1865] = {.lex_state = 627, .external_lex_state = 2}, + [1866] = {.lex_state = 627, .external_lex_state = 2}, + [1867] = {.lex_state = 626, .external_lex_state = 2}, + [1868] = {.lex_state = 627, .external_lex_state = 2}, + [1869] = {.lex_state = 17}, + [1870] = {.lex_state = 139}, + [1871] = {.lex_state = 170, .external_lex_state = 2}, + [1872] = {.lex_state = 170, .external_lex_state = 2}, + [1873] = {.lex_state = 170, .external_lex_state = 2}, + [1874] = {.lex_state = 567, .external_lex_state = 2}, + [1875] = {.lex_state = 625, .external_lex_state = 2}, + [1876] = {.lex_state = 91}, + [1877] = {.lex_state = 625, .external_lex_state = 2}, + [1878] = {.lex_state = 140}, + [1879] = {.lex_state = 625, .external_lex_state = 2}, [1880] = {.lex_state = 625, .external_lex_state = 2}, - [1881] = {.lex_state = 625, .external_lex_state = 2}, - [1882] = {.lex_state = 127, .external_lex_state = 2}, - [1883] = {.lex_state = 163, .external_lex_state = 2}, + [1881] = {.lex_state = 267}, + [1882] = {.lex_state = 574}, + [1883] = {.lex_state = 175, .external_lex_state = 2}, [1884] = {.lex_state = 625, .external_lex_state = 2}, - [1885] = {.lex_state = 625, .external_lex_state = 2}, + [1885] = {.lex_state = 19}, [1886] = {.lex_state = 625, .external_lex_state = 2}, - [1887] = {.lex_state = 625, .external_lex_state = 2}, - [1888] = {.lex_state = 163, .external_lex_state = 2}, - [1889] = {.lex_state = 625, .external_lex_state = 2}, + [1887] = {.lex_state = 91}, + [1888] = {.lex_state = 625, .external_lex_state = 2}, + [1889] = {.lex_state = 627, .external_lex_state = 2}, [1890] = {.lex_state = 625, .external_lex_state = 2}, - [1891] = {.lex_state = 625, .external_lex_state = 2}, - [1892] = {.lex_state = 143}, - [1893] = {.lex_state = 1181}, - [1894] = {.lex_state = 163, .external_lex_state = 2}, - [1895] = {.lex_state = 142}, - [1896] = {.lex_state = 625, .external_lex_state = 2}, - [1897] = {.lex_state = 177, .external_lex_state = 2}, - [1898] = {.lex_state = 625, .external_lex_state = 2}, - [1899] = {.lex_state = 18}, - [1900] = {.lex_state = 177, .external_lex_state = 2}, - [1901] = {.lex_state = 163, .external_lex_state = 2}, - [1902] = {.lex_state = 1185}, - [1903] = {.lex_state = 267}, - [1904] = {.lex_state = 18}, - [1905] = {.lex_state = 1183}, + [1891] = {.lex_state = 91}, + [1892] = {.lex_state = 140}, + [1893] = {.lex_state = 625, .external_lex_state = 2}, + [1894] = {.lex_state = 140}, + [1895] = {.lex_state = 625, .external_lex_state = 2}, + [1896] = {.lex_state = 627, .external_lex_state = 2}, + [1897] = {.lex_state = 625, .external_lex_state = 2}, + [1898] = {.lex_state = 627, .external_lex_state = 2}, + [1899] = {.lex_state = 625, .external_lex_state = 2}, + [1900] = {.lex_state = 625, .external_lex_state = 2}, + [1901] = {.lex_state = 18}, + [1902] = {.lex_state = 91}, + [1903] = {.lex_state = 625, .external_lex_state = 2}, + [1904] = {.lex_state = 625, .external_lex_state = 2}, + [1905] = {.lex_state = 1179}, [1906] = {.lex_state = 625, .external_lex_state = 2}, - [1907] = {.lex_state = 625, .external_lex_state = 2}, - [1908] = {.lex_state = 625, .external_lex_state = 2}, - [1909] = {.lex_state = 163, .external_lex_state = 2}, + [1907] = {.lex_state = 140}, + [1908] = {.lex_state = 140}, + [1909] = {.lex_state = 1181}, [1910] = {.lex_state = 625, .external_lex_state = 2}, - [1911] = {.lex_state = 163, .external_lex_state = 2}, - [1912] = {.lex_state = 1183}, - [1913] = {.lex_state = 625, .external_lex_state = 2}, - [1914] = {.lex_state = 625, .external_lex_state = 2}, - [1915] = {.lex_state = 625, .external_lex_state = 2}, - [1916] = {.lex_state = 163, .external_lex_state = 2}, - [1917] = {.lex_state = 144}, - [1918] = {.lex_state = 19}, - [1919] = {.lex_state = 19}, - [1920] = {.lex_state = 19}, - [1921] = {.lex_state = 267}, - [1922] = {.lex_state = 267}, - [1923] = {.lex_state = 267}, - [1924] = {.lex_state = 19}, - [1925] = {.lex_state = 19}, - [1926] = {.lex_state = 267}, - [1927] = {.lex_state = 19}, - [1928] = {.lex_state = 19}, - [1929] = {.lex_state = 144}, - [1930] = {.lex_state = 267}, - [1931] = {.lex_state = 267}, - [1932] = {.lex_state = 19}, - [1933] = {.lex_state = 19}, - [1934] = {.lex_state = 89}, - [1935] = {.lex_state = 267}, - [1936] = {.lex_state = 154, .external_lex_state = 2}, - [1937] = {.lex_state = 1184}, - [1938] = {.lex_state = 267}, - [1939] = {.lex_state = 1186}, - [1940] = {.lex_state = 165, .external_lex_state = 2}, - [1941] = {.lex_state = 127, .external_lex_state = 2}, - [1942] = {.lex_state = 1186}, - [1943] = {.lex_state = 154, .external_lex_state = 2}, - [1944] = {.lex_state = 1184}, - [1945] = {.lex_state = 1184}, - [1946] = {.lex_state = 1184}, - [1947] = {.lex_state = 163, .external_lex_state = 2}, - [1948] = {.lex_state = 163, .external_lex_state = 2}, - [1949] = {.lex_state = 19}, - [1950] = {.lex_state = 19}, - [1951] = {.lex_state = 19}, - [1952] = {.lex_state = 19}, - [1953] = {.lex_state = 127, .external_lex_state = 2}, - [1954] = {.lex_state = 127, .external_lex_state = 2}, - [1955] = {.lex_state = 578}, - [1956] = {.lex_state = 578}, - [1957] = {.lex_state = 578}, - [1958] = {.lex_state = 127, .external_lex_state = 2}, - [1959] = {.lex_state = 578}, - [1960] = {.lex_state = 578}, - [1961] = {.lex_state = 578}, - [1962] = {.lex_state = 578}, - [1963] = {.lex_state = 578}, - [1964] = {.lex_state = 127, .external_lex_state = 2}, - [1965] = {.lex_state = 127, .external_lex_state = 2}, - [1966] = {.lex_state = 578}, - [1967] = {.lex_state = 145}, - [1968] = {.lex_state = 160, .external_lex_state = 2}, - [1969] = {.lex_state = 145}, - [1970] = {.lex_state = 89}, - [1971] = {.lex_state = 145}, - [1972] = {.lex_state = 145}, - [1973] = {.lex_state = 145}, - [1974] = {.lex_state = 145}, - [1975] = {.lex_state = 267}, - [1976] = {.lex_state = 1187}, - [1977] = {.lex_state = 577}, - [1978] = {.lex_state = 145}, - [1979] = {.lex_state = 267}, - [1980] = {.lex_state = 37, .external_lex_state = 2}, - [1981] = {.lex_state = 44, .external_lex_state = 2}, - [1982] = {.lex_state = 578}, - [1983] = {.lex_state = 578}, - [1984] = {.lex_state = 578}, - [1985] = {.lex_state = 578}, - [1986] = {.lex_state = 578}, - [1987] = {.lex_state = 578}, - [1988] = {.lex_state = 578}, - [1989] = {.lex_state = 578}, - [1990] = {.lex_state = 160, .external_lex_state = 2}, - [1991] = {.lex_state = 578}, - [1992] = {.lex_state = 578}, - [1993] = {.lex_state = 578}, - [1994] = {.lex_state = 578}, - [1995] = {.lex_state = 155, .external_lex_state = 2}, - [1996] = {.lex_state = 578}, - [1997] = {.lex_state = 578}, - [1998] = {.lex_state = 578}, - [1999] = {.lex_state = 578}, - [2000] = {.lex_state = 578}, - [2001] = {.lex_state = 578}, - [2002] = {.lex_state = 578}, - [2003] = {.lex_state = 578}, - [2004] = {.lex_state = 578}, - [2005] = {.lex_state = 578}, - [2006] = {.lex_state = 578}, - [2007] = {.lex_state = 578}, - [2008] = {.lex_state = 578}, - [2009] = {.lex_state = 578}, - [2010] = {.lex_state = 578}, - [2011] = {.lex_state = 578}, - [2012] = {.lex_state = 578}, - [2013] = {.lex_state = 578}, - [2014] = {.lex_state = 578}, - [2015] = {.lex_state = 578}, - [2016] = {.lex_state = 578}, - [2017] = {.lex_state = 578}, - [2018] = {.lex_state = 578}, - [2019] = {.lex_state = 578}, - [2020] = {.lex_state = 578}, - [2021] = {.lex_state = 578}, - [2022] = {.lex_state = 578}, - [2023] = {.lex_state = 578}, - [2024] = {.lex_state = 578}, - [2025] = {.lex_state = 578}, - [2026] = {.lex_state = 578}, - [2027] = {.lex_state = 578}, - [2028] = {.lex_state = 578}, - [2029] = {.lex_state = 578}, - [2030] = {.lex_state = 578}, - [2031] = {.lex_state = 578}, - [2032] = {.lex_state = 578}, - [2033] = {.lex_state = 578}, - [2034] = {.lex_state = 578}, - [2035] = {.lex_state = 578}, - [2036] = {.lex_state = 578}, - [2037] = {.lex_state = 578}, - [2038] = {.lex_state = 578}, - [2039] = {.lex_state = 578}, - [2040] = {.lex_state = 578}, - [2041] = {.lex_state = 578}, - [2042] = {.lex_state = 578}, - [2043] = {.lex_state = 578}, - [2044] = {.lex_state = 578}, - [2045] = {.lex_state = 578}, - [2046] = {.lex_state = 578}, - [2047] = {.lex_state = 578}, - [2048] = {.lex_state = 578}, - [2049] = {.lex_state = 578}, - [2050] = {.lex_state = 578}, - [2051] = {.lex_state = 578}, - [2052] = {.lex_state = 578}, - [2053] = {.lex_state = 578}, - [2054] = {.lex_state = 578}, - [2055] = {.lex_state = 578}, - [2056] = {.lex_state = 578}, - [2057] = {.lex_state = 578}, - [2058] = {.lex_state = 578}, - [2059] = {.lex_state = 578}, - [2060] = {.lex_state = 578}, - [2061] = {.lex_state = 578}, - [2062] = {.lex_state = 578}, - [2063] = {.lex_state = 578}, - [2064] = {.lex_state = 578}, - [2065] = {.lex_state = 578}, - [2066] = {.lex_state = 578}, - [2067] = {.lex_state = 578}, - [2068] = {.lex_state = 578}, - [2069] = {.lex_state = 578}, - [2070] = {.lex_state = 578}, - [2071] = {.lex_state = 578}, - [2072] = {.lex_state = 578}, - [2073] = {.lex_state = 578}, - [2074] = {.lex_state = 578}, - [2075] = {.lex_state = 578}, - [2076] = {.lex_state = 578}, - [2077] = {.lex_state = 578}, - [2078] = {.lex_state = 578}, - [2079] = {.lex_state = 578}, - [2080] = {.lex_state = 1187}, - [2081] = {.lex_state = 37, .external_lex_state = 2}, - [2082] = {.lex_state = 578}, - [2083] = {.lex_state = 578}, - [2084] = {.lex_state = 145}, - [2085] = {.lex_state = 1187}, - [2086] = {.lex_state = 44, .external_lex_state = 2}, - [2087] = {.lex_state = 155, .external_lex_state = 2}, - [2088] = {.lex_state = 89}, - [2089] = {.lex_state = 578}, - [2090] = {.lex_state = 1187}, - [2091] = {.lex_state = 160, .external_lex_state = 2}, - [2092] = {.lex_state = 145}, - [2093] = {.lex_state = 145}, - [2094] = {.lex_state = 162, .external_lex_state = 2}, - [2095] = {.lex_state = 128, .external_lex_state = 2}, - [2096] = {.lex_state = 145}, - [2097] = {.lex_state = 145}, - [2098] = {.lex_state = 19}, - [2099] = {.lex_state = 1187}, - [2100] = {.lex_state = 145}, - [2101] = {.lex_state = 1187}, - [2102] = {.lex_state = 155, .external_lex_state = 2}, - [2103] = {.lex_state = 1187}, - [2104] = {.lex_state = 155, .external_lex_state = 2}, - [2105] = {.lex_state = 155, .external_lex_state = 2}, - [2106] = {.lex_state = 44, .external_lex_state = 2}, - [2107] = {.lex_state = 1187}, - [2108] = {.lex_state = 160, .external_lex_state = 2}, - [2109] = {.lex_state = 1187}, - [2110] = {.lex_state = 160, .external_lex_state = 2}, - [2111] = {.lex_state = 163, .external_lex_state = 2}, - [2112] = {.lex_state = 155, .external_lex_state = 2}, - [2113] = {.lex_state = 160, .external_lex_state = 2}, - [2114] = {.lex_state = 168, .external_lex_state = 2}, - [2115] = {.lex_state = 168, .external_lex_state = 2}, - [2116] = {.lex_state = 168, .external_lex_state = 2}, - [2117] = {.lex_state = 44, .external_lex_state = 2}, - [2118] = {.lex_state = 155, .external_lex_state = 2}, - [2119] = {.lex_state = 168, .external_lex_state = 2}, - [2120] = {.lex_state = 160, .external_lex_state = 2}, - [2121] = {.lex_state = 37, .external_lex_state = 2}, - [2122] = {.lex_state = 168, .external_lex_state = 2}, - [2123] = {.lex_state = 578}, - [2124] = {.lex_state = 578}, - [2125] = {.lex_state = 145}, - [2126] = {.lex_state = 168, .external_lex_state = 2}, - [2127] = {.lex_state = 163, .external_lex_state = 2}, - [2128] = {.lex_state = 578}, - [2129] = {.lex_state = 578}, - [2130] = {.lex_state = 578}, - [2131] = {.lex_state = 578}, - [2132] = {.lex_state = 168, .external_lex_state = 2}, - [2133] = {.lex_state = 163, .external_lex_state = 2}, - [2134] = {.lex_state = 89}, - [2135] = {.lex_state = 37, .external_lex_state = 2}, - [2136] = {.lex_state = 37, .external_lex_state = 2}, - [2137] = {.lex_state = 578}, - [2138] = {.lex_state = 578}, - [2139] = {.lex_state = 578}, - [2140] = {.lex_state = 578}, - [2141] = {.lex_state = 578}, - [2142] = {.lex_state = 578}, - [2143] = {.lex_state = 578}, - [2144] = {.lex_state = 578}, - [2145] = {.lex_state = 578}, - [2146] = {.lex_state = 578}, - [2147] = {.lex_state = 578}, - [2148] = {.lex_state = 37, .external_lex_state = 2}, - [2149] = {.lex_state = 1188}, - [2150] = {.lex_state = 37, .external_lex_state = 2}, - [2151] = {.lex_state = 1188}, - [2152] = {.lex_state = 37, .external_lex_state = 2}, - [2153] = {.lex_state = 44, .external_lex_state = 2}, - [2154] = {.lex_state = 37, .external_lex_state = 2}, - [2155] = {.lex_state = 37, .external_lex_state = 2}, - [2156] = {.lex_state = 37, .external_lex_state = 2}, - [2157] = {.lex_state = 49, .external_lex_state = 2}, - [2158] = {.lex_state = 37, .external_lex_state = 2}, - [2159] = {.lex_state = 49, .external_lex_state = 2}, - [2160] = {.lex_state = 37, .external_lex_state = 2}, - [2161] = {.lex_state = 1188}, - [2162] = {.lex_state = 37, .external_lex_state = 2}, - [2163] = {.lex_state = 37, .external_lex_state = 2}, - [2164] = {.lex_state = 37, .external_lex_state = 2}, - [2165] = {.lex_state = 37, .external_lex_state = 2}, - [2166] = {.lex_state = 37, .external_lex_state = 2}, - [2167] = {.lex_state = 37, .external_lex_state = 2}, - [2168] = {.lex_state = 37, .external_lex_state = 2}, - [2169] = {.lex_state = 578}, - [2170] = {.lex_state = 578}, - [2171] = {.lex_state = 37, .external_lex_state = 2}, - [2172] = {.lex_state = 578}, - [2173] = {.lex_state = 37, .external_lex_state = 2}, - [2174] = {.lex_state = 37, .external_lex_state = 2}, - [2175] = {.lex_state = 578}, - [2176] = {.lex_state = 37, .external_lex_state = 2}, - [2177] = {.lex_state = 578}, - [2178] = {.lex_state = 37, .external_lex_state = 2}, - [2179] = {.lex_state = 37, .external_lex_state = 2}, - [2180] = {.lex_state = 37, .external_lex_state = 2}, - [2181] = {.lex_state = 37, .external_lex_state = 2}, - [2182] = {.lex_state = 37, .external_lex_state = 2}, - [2183] = {.lex_state = 37, .external_lex_state = 2}, - [2184] = {.lex_state = 578}, - [2185] = {.lex_state = 578}, - [2186] = {.lex_state = 578}, - [2187] = {.lex_state = 578}, - [2188] = {.lex_state = 578}, - [2189] = {.lex_state = 578}, - [2190] = {.lex_state = 578}, - [2191] = {.lex_state = 37, .external_lex_state = 2}, - [2192] = {.lex_state = 1188}, - [2193] = {.lex_state = 37, .external_lex_state = 2}, - [2194] = {.lex_state = 37, .external_lex_state = 2}, - [2195] = {.lex_state = 1188}, - [2196] = {.lex_state = 37, .external_lex_state = 2}, - [2197] = {.lex_state = 37, .external_lex_state = 2}, - [2198] = {.lex_state = 37, .external_lex_state = 2}, - [2199] = {.lex_state = 1188}, - [2200] = {.lex_state = 1188}, - [2201] = {.lex_state = 41, .external_lex_state = 2}, - [2202] = {.lex_state = 49, .external_lex_state = 2}, - [2203] = {.lex_state = 37, .external_lex_state = 2}, - [2204] = {.lex_state = 37, .external_lex_state = 2}, - [2205] = {.lex_state = 37, .external_lex_state = 2}, - [2206] = {.lex_state = 37, .external_lex_state = 2}, - [2207] = {.lex_state = 37, .external_lex_state = 2}, - [2208] = {.lex_state = 37, .external_lex_state = 2}, - [2209] = {.lex_state = 37, .external_lex_state = 2}, - [2210] = {.lex_state = 37, .external_lex_state = 2}, - [2211] = {.lex_state = 37, .external_lex_state = 2}, - [2212] = {.lex_state = 578}, - [2213] = {.lex_state = 578}, - [2214] = {.lex_state = 578}, - [2215] = {.lex_state = 578}, - [2216] = {.lex_state = 578}, - [2217] = {.lex_state = 577}, - [2218] = {.lex_state = 578}, - [2219] = {.lex_state = 41, .external_lex_state = 2}, - [2220] = {.lex_state = 578}, - [2221] = {.lex_state = 577}, - [2222] = {.lex_state = 157, .external_lex_state = 2}, - [2223] = {.lex_state = 157, .external_lex_state = 2}, - [2224] = {.lex_state = 49, .external_lex_state = 2}, - [2225] = {.lex_state = 157, .external_lex_state = 2}, - [2226] = {.lex_state = 45, .external_lex_state = 2}, - [2227] = {.lex_state = 157, .external_lex_state = 2}, - [2228] = {.lex_state = 575}, - [2229] = {.lex_state = 575}, - [2230] = {.lex_state = 575}, - [2231] = {.lex_state = 159, .external_lex_state = 2}, - [2232] = {.lex_state = 159, .external_lex_state = 2}, - [2233] = {.lex_state = 575}, - [2234] = {.lex_state = 159, .external_lex_state = 2}, - [2235] = {.lex_state = 159, .external_lex_state = 2}, - [2236] = {.lex_state = 159, .external_lex_state = 2}, - [2237] = {.lex_state = 47, .external_lex_state = 2}, - [2238] = {.lex_state = 159, .external_lex_state = 2}, - [2239] = {.lex_state = 157, .external_lex_state = 2}, - [2240] = {.lex_state = 157, .external_lex_state = 2}, - [2241] = {.lex_state = 46, .external_lex_state = 2}, - [2242] = {.lex_state = 575}, - [2243] = {.lex_state = 575}, - [2244] = {.lex_state = 45, .external_lex_state = 2}, - [2245] = {.lex_state = 159, .external_lex_state = 2}, - [2246] = {.lex_state = 49, .external_lex_state = 2}, - [2247] = {.lex_state = 47, .external_lex_state = 2}, - [2248] = {.lex_state = 159, .external_lex_state = 2}, - [2249] = {.lex_state = 49, .external_lex_state = 2}, - [2250] = {.lex_state = 49, .external_lex_state = 2}, - [2251] = {.lex_state = 46, .external_lex_state = 2}, - [2252] = {.lex_state = 159, .external_lex_state = 2}, - [2253] = {.lex_state = 47, .external_lex_state = 2}, - [2254] = {.lex_state = 577}, - [2255] = {.lex_state = 577}, - [2256] = {.lex_state = 577}, - [2257] = {.lex_state = 48, .external_lex_state = 2}, - [2258] = {.lex_state = 91}, - [2259] = {.lex_state = 48, .external_lex_state = 2}, - [2260] = {.lex_state = 577}, - [2261] = {.lex_state = 577}, - [2262] = {.lex_state = 577}, - [2263] = {.lex_state = 5}, - [2264] = {.lex_state = 48, .external_lex_state = 2}, + [1911] = {.lex_state = 625, .external_lex_state = 2}, + [1912] = {.lex_state = 625, .external_lex_state = 2}, + [1913] = {.lex_state = 162, .external_lex_state = 2}, + [1914] = {.lex_state = 126, .external_lex_state = 2}, + [1915] = {.lex_state = 267}, + [1916] = {.lex_state = 162, .external_lex_state = 2}, + [1917] = {.lex_state = 162, .external_lex_state = 2}, + [1918] = {.lex_state = 176, .external_lex_state = 2}, + [1919] = {.lex_state = 1184}, + [1920] = {.lex_state = 1182}, + [1921] = {.lex_state = 625, .external_lex_state = 2}, + [1922] = {.lex_state = 142}, + [1923] = {.lex_state = 1182}, + [1924] = {.lex_state = 162, .external_lex_state = 2}, + [1925] = {.lex_state = 141}, + [1926] = {.lex_state = 625, .external_lex_state = 2}, + [1927] = {.lex_state = 625, .external_lex_state = 2}, + [1928] = {.lex_state = 625, .external_lex_state = 2}, + [1929] = {.lex_state = 625, .external_lex_state = 2}, + [1930] = {.lex_state = 625, .external_lex_state = 2}, + [1931] = {.lex_state = 20}, + [1932] = {.lex_state = 176, .external_lex_state = 2}, + [1933] = {.lex_state = 625, .external_lex_state = 2}, + [1934] = {.lex_state = 1180}, + [1935] = {.lex_state = 625, .external_lex_state = 2}, + [1936] = {.lex_state = 625, .external_lex_state = 2}, + [1937] = {.lex_state = 162, .external_lex_state = 2}, + [1938] = {.lex_state = 20}, + [1939] = {.lex_state = 625, .external_lex_state = 2}, + [1940] = {.lex_state = 162, .external_lex_state = 2}, + [1941] = {.lex_state = 625, .external_lex_state = 2}, + [1942] = {.lex_state = 625, .external_lex_state = 2}, + [1943] = {.lex_state = 162, .external_lex_state = 2}, + [1944] = {.lex_state = 625, .external_lex_state = 2}, + [1945] = {.lex_state = 625, .external_lex_state = 2}, + [1946] = {.lex_state = 625, .external_lex_state = 2}, + [1947] = {.lex_state = 267}, + [1948] = {.lex_state = 143}, + [1949] = {.lex_state = 21}, + [1950] = {.lex_state = 574}, + [1951] = {.lex_state = 91}, + [1952] = {.lex_state = 1183}, + [1953] = {.lex_state = 126, .external_lex_state = 2}, + [1954] = {.lex_state = 1185}, + [1955] = {.lex_state = 126, .external_lex_state = 2}, + [1956] = {.lex_state = 267}, + [1957] = {.lex_state = 574}, + [1958] = {.lex_state = 574}, + [1959] = {.lex_state = 574}, + [1960] = {.lex_state = 1185}, + [1961] = {.lex_state = 21}, + [1962] = {.lex_state = 164, .external_lex_state = 2}, + [1963] = {.lex_state = 126, .external_lex_state = 2}, + [1964] = {.lex_state = 153, .external_lex_state = 2}, + [1965] = {.lex_state = 126, .external_lex_state = 2}, + [1966] = {.lex_state = 126, .external_lex_state = 2}, + [1967] = {.lex_state = 21}, + [1968] = {.lex_state = 126, .external_lex_state = 2}, + [1969] = {.lex_state = 574}, + [1970] = {.lex_state = 574}, + [1971] = {.lex_state = 267}, + [1972] = {.lex_state = 574}, + [1973] = {.lex_state = 1183}, + [1974] = {.lex_state = 21}, + [1975] = {.lex_state = 153, .external_lex_state = 2}, + [1976] = {.lex_state = 267}, + [1977] = {.lex_state = 267}, + [1978] = {.lex_state = 21}, + [1979] = {.lex_state = 21}, + [1980] = {.lex_state = 21}, + [1981] = {.lex_state = 267}, + [1982] = {.lex_state = 21}, + [1983] = {.lex_state = 21}, + [1984] = {.lex_state = 1183}, + [1985] = {.lex_state = 267}, + [1986] = {.lex_state = 1183}, + [1987] = {.lex_state = 267}, + [1988] = {.lex_state = 574}, + [1989] = {.lex_state = 21}, + [1990] = {.lex_state = 162, .external_lex_state = 2}, + [1991] = {.lex_state = 21}, + [1992] = {.lex_state = 143}, + [1993] = {.lex_state = 162, .external_lex_state = 2}, + [1994] = {.lex_state = 21}, + [1995] = {.lex_state = 21}, + [1996] = {.lex_state = 574}, + [1997] = {.lex_state = 574}, + [1998] = {.lex_state = 144}, + [1999] = {.lex_state = 144}, + [2000] = {.lex_state = 144}, + [2001] = {.lex_state = 144}, + [2002] = {.lex_state = 144}, + [2003] = {.lex_state = 574}, + [2004] = {.lex_state = 144}, + [2005] = {.lex_state = 144}, + [2006] = {.lex_state = 144}, + [2007] = {.lex_state = 159, .external_lex_state = 2}, + [2008] = {.lex_state = 45, .external_lex_state = 2}, + [2009] = {.lex_state = 144}, + [2010] = {.lex_state = 144}, + [2011] = {.lex_state = 144}, + [2012] = {.lex_state = 91}, + [2013] = {.lex_state = 1186}, + [2014] = {.lex_state = 573}, + [2015] = {.lex_state = 267}, + [2016] = {.lex_state = 154, .external_lex_state = 2}, + [2017] = {.lex_state = 154, .external_lex_state = 2}, + [2018] = {.lex_state = 154, .external_lex_state = 2}, + [2019] = {.lex_state = 574}, + [2020] = {.lex_state = 574}, + [2021] = {.lex_state = 574}, + [2022] = {.lex_state = 574}, + [2023] = {.lex_state = 159, .external_lex_state = 2}, + [2024] = {.lex_state = 574}, + [2025] = {.lex_state = 267}, + [2026] = {.lex_state = 574}, + [2027] = {.lex_state = 574}, + [2028] = {.lex_state = 574}, + [2029] = {.lex_state = 574}, + [2030] = {.lex_state = 574}, + [2031] = {.lex_state = 574}, + [2032] = {.lex_state = 574}, + [2033] = {.lex_state = 159, .external_lex_state = 2}, + [2034] = {.lex_state = 574}, + [2035] = {.lex_state = 574}, + [2036] = {.lex_state = 574}, + [2037] = {.lex_state = 574}, + [2038] = {.lex_state = 574}, + [2039] = {.lex_state = 574}, + [2040] = {.lex_state = 574}, + [2041] = {.lex_state = 574}, + [2042] = {.lex_state = 574}, + [2043] = {.lex_state = 574}, + [2044] = {.lex_state = 574}, + [2045] = {.lex_state = 574}, + [2046] = {.lex_state = 574}, + [2047] = {.lex_state = 574}, + [2048] = {.lex_state = 574}, + [2049] = {.lex_state = 574}, + [2050] = {.lex_state = 574}, + [2051] = {.lex_state = 574}, + [2052] = {.lex_state = 574}, + [2053] = {.lex_state = 574}, + [2054] = {.lex_state = 574}, + [2055] = {.lex_state = 574}, + [2056] = {.lex_state = 574}, + [2057] = {.lex_state = 574}, + [2058] = {.lex_state = 574}, + [2059] = {.lex_state = 574}, + [2060] = {.lex_state = 574}, + [2061] = {.lex_state = 574}, + [2062] = {.lex_state = 574}, + [2063] = {.lex_state = 574}, + [2064] = {.lex_state = 574}, + [2065] = {.lex_state = 574}, + [2066] = {.lex_state = 574}, + [2067] = {.lex_state = 574}, + [2068] = {.lex_state = 574}, + [2069] = {.lex_state = 159, .external_lex_state = 2}, + [2070] = {.lex_state = 574}, + [2071] = {.lex_state = 574}, + [2072] = {.lex_state = 574}, + [2073] = {.lex_state = 574}, + [2074] = {.lex_state = 574}, + [2075] = {.lex_state = 574}, + [2076] = {.lex_state = 574}, + [2077] = {.lex_state = 574}, + [2078] = {.lex_state = 574}, + [2079] = {.lex_state = 574}, + [2080] = {.lex_state = 574}, + [2081] = {.lex_state = 574}, + [2082] = {.lex_state = 574}, + [2083] = {.lex_state = 574}, + [2084] = {.lex_state = 574}, + [2085] = {.lex_state = 144}, + [2086] = {.lex_state = 574}, + [2087] = {.lex_state = 574}, + [2088] = {.lex_state = 574}, + [2089] = {.lex_state = 574}, + [2090] = {.lex_state = 574}, + [2091] = {.lex_state = 574}, + [2092] = {.lex_state = 574}, + [2093] = {.lex_state = 574}, + [2094] = {.lex_state = 574}, + [2095] = {.lex_state = 574}, + [2096] = {.lex_state = 574}, + [2097] = {.lex_state = 574}, + [2098] = {.lex_state = 574}, + [2099] = {.lex_state = 574}, + [2100] = {.lex_state = 574}, + [2101] = {.lex_state = 574}, + [2102] = {.lex_state = 574}, + [2103] = {.lex_state = 574}, + [2104] = {.lex_state = 574}, + [2105] = {.lex_state = 574}, + [2106] = {.lex_state = 45, .external_lex_state = 2}, + [2107] = {.lex_state = 574}, + [2108] = {.lex_state = 574}, + [2109] = {.lex_state = 574}, + [2110] = {.lex_state = 574}, + [2111] = {.lex_state = 574}, + [2112] = {.lex_state = 574}, + [2113] = {.lex_state = 574}, + [2114] = {.lex_state = 574}, + [2115] = {.lex_state = 574}, + [2116] = {.lex_state = 574}, + [2117] = {.lex_state = 574}, + [2118] = {.lex_state = 574}, + [2119] = {.lex_state = 154, .external_lex_state = 2}, + [2120] = {.lex_state = 1186}, + [2121] = {.lex_state = 1186}, + [2122] = {.lex_state = 38, .external_lex_state = 2}, + [2123] = {.lex_state = 159, .external_lex_state = 2}, + [2124] = {.lex_state = 1186}, + [2125] = {.lex_state = 161, .external_lex_state = 2}, + [2126] = {.lex_state = 38, .external_lex_state = 2}, + [2127] = {.lex_state = 1186}, + [2128] = {.lex_state = 127, .external_lex_state = 2}, + [2129] = {.lex_state = 21}, + [2130] = {.lex_state = 574}, + [2131] = {.lex_state = 574}, + [2132] = {.lex_state = 45, .external_lex_state = 2}, + [2133] = {.lex_state = 1186}, + [2134] = {.lex_state = 154, .external_lex_state = 2}, + [2135] = {.lex_state = 91}, + [2136] = {.lex_state = 1186}, + [2137] = {.lex_state = 1186}, + [2138] = {.lex_state = 1186}, + [2139] = {.lex_state = 1186}, + [2140] = {.lex_state = 144}, + [2141] = {.lex_state = 574}, + [2142] = {.lex_state = 167, .external_lex_state = 2}, + [2143] = {.lex_state = 167, .external_lex_state = 2}, + [2144] = {.lex_state = 167, .external_lex_state = 2}, + [2145] = {.lex_state = 574}, + [2146] = {.lex_state = 159, .external_lex_state = 2}, + [2147] = {.lex_state = 154, .external_lex_state = 2}, + [2148] = {.lex_state = 159, .external_lex_state = 2}, + [2149] = {.lex_state = 154, .external_lex_state = 2}, + [2150] = {.lex_state = 167, .external_lex_state = 2}, + [2151] = {.lex_state = 162, .external_lex_state = 2}, + [2152] = {.lex_state = 91}, + [2153] = {.lex_state = 45, .external_lex_state = 2}, + [2154] = {.lex_state = 167, .external_lex_state = 2}, + [2155] = {.lex_state = 167, .external_lex_state = 2}, + [2156] = {.lex_state = 167, .external_lex_state = 2}, + [2157] = {.lex_state = 574}, + [2158] = {.lex_state = 162, .external_lex_state = 2}, + [2159] = {.lex_state = 38, .external_lex_state = 2}, + [2160] = {.lex_state = 574}, + [2161] = {.lex_state = 574}, + [2162] = {.lex_state = 144}, + [2163] = {.lex_state = 574}, + [2164] = {.lex_state = 574}, + [2165] = {.lex_state = 162, .external_lex_state = 2}, + [2166] = {.lex_state = 38, .external_lex_state = 2}, + [2167] = {.lex_state = 38, .external_lex_state = 2}, + [2168] = {.lex_state = 38, .external_lex_state = 2}, + [2169] = {.lex_state = 38, .external_lex_state = 2}, + [2170] = {.lex_state = 38, .external_lex_state = 2}, + [2171] = {.lex_state = 38, .external_lex_state = 2}, + [2172] = {.lex_state = 38, .external_lex_state = 2}, + [2173] = {.lex_state = 38, .external_lex_state = 2}, + [2174] = {.lex_state = 38, .external_lex_state = 2}, + [2175] = {.lex_state = 38, .external_lex_state = 2}, + [2176] = {.lex_state = 50, .external_lex_state = 2}, + [2177] = {.lex_state = 38, .external_lex_state = 2}, + [2178] = {.lex_state = 38, .external_lex_state = 2}, + [2179] = {.lex_state = 574}, + [2180] = {.lex_state = 574}, + [2181] = {.lex_state = 574}, + [2182] = {.lex_state = 574}, + [2183] = {.lex_state = 574}, + [2184] = {.lex_state = 574}, + [2185] = {.lex_state = 574}, + [2186] = {.lex_state = 574}, + [2187] = {.lex_state = 574}, + [2188] = {.lex_state = 574}, + [2189] = {.lex_state = 574}, + [2190] = {.lex_state = 574}, + [2191] = {.lex_state = 38, .external_lex_state = 2}, + [2192] = {.lex_state = 38, .external_lex_state = 2}, + [2193] = {.lex_state = 42, .external_lex_state = 2}, + [2194] = {.lex_state = 1187}, + [2195] = {.lex_state = 38, .external_lex_state = 2}, + [2196] = {.lex_state = 38, .external_lex_state = 2}, + [2197] = {.lex_state = 38, .external_lex_state = 2}, + [2198] = {.lex_state = 1187}, + [2199] = {.lex_state = 38, .external_lex_state = 2}, + [2200] = {.lex_state = 45, .external_lex_state = 2}, + [2201] = {.lex_state = 50, .external_lex_state = 2}, + [2202] = {.lex_state = 38, .external_lex_state = 2}, + [2203] = {.lex_state = 38, .external_lex_state = 2}, + [2204] = {.lex_state = 38, .external_lex_state = 2}, + [2205] = {.lex_state = 38, .external_lex_state = 2}, + [2206] = {.lex_state = 38, .external_lex_state = 2}, + [2207] = {.lex_state = 38, .external_lex_state = 2}, + [2208] = {.lex_state = 38, .external_lex_state = 2}, + [2209] = {.lex_state = 38, .external_lex_state = 2}, + [2210] = {.lex_state = 38, .external_lex_state = 2}, + [2211] = {.lex_state = 38, .external_lex_state = 2}, + [2212] = {.lex_state = 574}, + [2213] = {.lex_state = 574}, + [2214] = {.lex_state = 574}, + [2215] = {.lex_state = 574}, + [2216] = {.lex_state = 574}, + [2217] = {.lex_state = 38, .external_lex_state = 2}, + [2218] = {.lex_state = 574}, + [2219] = {.lex_state = 574}, + [2220] = {.lex_state = 38, .external_lex_state = 2}, + [2221] = {.lex_state = 574}, + [2222] = {.lex_state = 574}, + [2223] = {.lex_state = 1187}, + [2224] = {.lex_state = 574}, + [2225] = {.lex_state = 50, .external_lex_state = 2}, + [2226] = {.lex_state = 574}, + [2227] = {.lex_state = 574}, + [2228] = {.lex_state = 1187}, + [2229] = {.lex_state = 38, .external_lex_state = 2}, + [2230] = {.lex_state = 38, .external_lex_state = 2}, + [2231] = {.lex_state = 1187}, + [2232] = {.lex_state = 38, .external_lex_state = 2}, + [2233] = {.lex_state = 38, .external_lex_state = 2}, + [2234] = {.lex_state = 1187}, + [2235] = {.lex_state = 1187}, + [2236] = {.lex_state = 38, .external_lex_state = 2}, + [2237] = {.lex_state = 50, .external_lex_state = 2}, + [2238] = {.lex_state = 38, .external_lex_state = 2}, + [2239] = {.lex_state = 38, .external_lex_state = 2}, + [2240] = {.lex_state = 38, .external_lex_state = 2}, + [2241] = {.lex_state = 38, .external_lex_state = 2}, + [2242] = {.lex_state = 38, .external_lex_state = 2}, + [2243] = {.lex_state = 38, .external_lex_state = 2}, + [2244] = {.lex_state = 38, .external_lex_state = 2}, + [2245] = {.lex_state = 1187}, + [2246] = {.lex_state = 42, .external_lex_state = 2}, + [2247] = {.lex_state = 574}, + [2248] = {.lex_state = 573}, + [2249] = {.lex_state = 574}, + [2250] = {.lex_state = 574}, + [2251] = {.lex_state = 574}, + [2252] = {.lex_state = 574}, + [2253] = {.lex_state = 574}, + [2254] = {.lex_state = 50, .external_lex_state = 2}, + [2255] = {.lex_state = 156, .external_lex_state = 2}, + [2256] = {.lex_state = 156, .external_lex_state = 2}, + [2257] = {.lex_state = 156, .external_lex_state = 2}, + [2258] = {.lex_state = 573}, + [2259] = {.lex_state = 46, .external_lex_state = 2}, + [2260] = {.lex_state = 156, .external_lex_state = 2}, + [2261] = {.lex_state = 158, .external_lex_state = 2}, + [2262] = {.lex_state = 158, .external_lex_state = 2}, + [2263] = {.lex_state = 158, .external_lex_state = 2}, + [2264] = {.lex_state = 156, .external_lex_state = 2}, [2265] = {.lex_state = 48, .external_lex_state = 2}, - [2266] = {.lex_state = 48, .external_lex_state = 2}, - [2267] = {.lex_state = 48, .external_lex_state = 2}, - [2268] = {.lex_state = 48, .external_lex_state = 2}, - [2269] = {.lex_state = 48, .external_lex_state = 2}, - [2270] = {.lex_state = 48, .external_lex_state = 2}, - [2271] = {.lex_state = 48, .external_lex_state = 2}, - [2272] = {.lex_state = 48, .external_lex_state = 2}, - [2273] = {.lex_state = 578}, - [2274] = {.lex_state = 48, .external_lex_state = 2}, - [2275] = {.lex_state = 48, .external_lex_state = 2}, - [2276] = {.lex_state = 48, .external_lex_state = 2}, - [2277] = {.lex_state = 48, .external_lex_state = 2}, - [2278] = {.lex_state = 48, .external_lex_state = 2}, - [2279] = {.lex_state = 48, .external_lex_state = 2}, - [2280] = {.lex_state = 48, .external_lex_state = 2}, + [2266] = {.lex_state = 5}, + [2267] = {.lex_state = 156, .external_lex_state = 2}, + [2268] = {.lex_state = 5}, + [2269] = {.lex_state = 158, .external_lex_state = 2}, + [2270] = {.lex_state = 47, .external_lex_state = 2}, + [2271] = {.lex_state = 158, .external_lex_state = 2}, + [2272] = {.lex_state = 158, .external_lex_state = 2}, + [2273] = {.lex_state = 46, .external_lex_state = 2}, + [2274] = {.lex_state = 5}, + [2275] = {.lex_state = 5}, + [2276] = {.lex_state = 158, .external_lex_state = 2}, + [2277] = {.lex_state = 5}, + [2278] = {.lex_state = 5}, + [2279] = {.lex_state = 47, .external_lex_state = 2}, + [2280] = {.lex_state = 50, .external_lex_state = 2}, [2281] = {.lex_state = 48, .external_lex_state = 2}, - [2282] = {.lex_state = 48, .external_lex_state = 2}, - [2283] = {.lex_state = 631}, - [2284] = {.lex_state = 48, .external_lex_state = 2}, - [2285] = {.lex_state = 48, .external_lex_state = 2}, - [2286] = {.lex_state = 48, .external_lex_state = 2}, + [2282] = {.lex_state = 50, .external_lex_state = 2}, + [2283] = {.lex_state = 158, .external_lex_state = 2}, + [2284] = {.lex_state = 158, .external_lex_state = 2}, + [2285] = {.lex_state = 50, .external_lex_state = 2}, + [2286] = {.lex_state = 573}, [2287] = {.lex_state = 48, .external_lex_state = 2}, - [2288] = {.lex_state = 48, .external_lex_state = 2}, - [2289] = {.lex_state = 48, .external_lex_state = 2}, - [2290] = {.lex_state = 578}, - [2291] = {.lex_state = 578}, - [2292] = {.lex_state = 578}, - [2293] = {.lex_state = 578}, - [2294] = {.lex_state = 48, .external_lex_state = 2}, - [2295] = {.lex_state = 48, .external_lex_state = 2}, - [2296] = {.lex_state = 5}, - [2297] = {.lex_state = 581}, - [2298] = {.lex_state = 631}, - [2299] = {.lex_state = 632}, - [2300] = {.lex_state = 632}, - [2301] = {.lex_state = 632}, - [2302] = {.lex_state = 48, .external_lex_state = 2}, - [2303] = {.lex_state = 48, .external_lex_state = 2}, - [2304] = {.lex_state = 632}, - [2305] = {.lex_state = 48, .external_lex_state = 2}, - [2306] = {.lex_state = 581}, - [2307] = {.lex_state = 581}, - [2308] = {.lex_state = 581}, - [2309] = {.lex_state = 581}, - [2310] = {.lex_state = 48, .external_lex_state = 2}, - [2311] = {.lex_state = 48, .external_lex_state = 2}, - [2312] = {.lex_state = 48, .external_lex_state = 2}, - [2313] = {.lex_state = 630}, - [2314] = {.lex_state = 581}, - [2315] = {.lex_state = 48, .external_lex_state = 2}, - [2316] = {.lex_state = 48, .external_lex_state = 2}, - [2317] = {.lex_state = 48, .external_lex_state = 2}, - [2318] = {.lex_state = 48, .external_lex_state = 2}, - [2319] = {.lex_state = 48, .external_lex_state = 2}, - [2320] = {.lex_state = 48, .external_lex_state = 2}, - [2321] = {.lex_state = 635}, - [2322] = {.lex_state = 639}, - [2323] = {.lex_state = 581}, - [2324] = {.lex_state = 641}, - [2325] = {.lex_state = 630}, - [2326] = {.lex_state = 630}, - [2327] = {.lex_state = 639}, - [2328] = {.lex_state = 635}, - [2329] = {.lex_state = 633}, - [2330] = {.lex_state = 633}, - [2331] = {.lex_state = 643}, - [2332] = {.lex_state = 581}, - [2333] = {.lex_state = 581}, - [2334] = {.lex_state = 581}, - [2335] = {.lex_state = 641}, - [2336] = {.lex_state = 643}, - [2337] = {.lex_state = 645}, - [2338] = {.lex_state = 643}, - [2339] = {.lex_state = 643}, - [2340] = {.lex_state = 630}, - [2341] = {.lex_state = 630}, - [2342] = {.lex_state = 643}, - [2343] = {.lex_state = 630}, - [2344] = {.lex_state = 630}, - [2345] = {.lex_state = 630}, - [2346] = {.lex_state = 633}, - [2347] = {.lex_state = 641}, - [2348] = {.lex_state = 637}, - [2349] = {.lex_state = 578}, - [2350] = {.lex_state = 640}, - [2351] = {.lex_state = 578}, - [2352] = {.lex_state = 636}, - [2353] = {.lex_state = 633}, - [2354] = {.lex_state = 641}, - [2355] = {.lex_state = 643}, - [2356] = {.lex_state = 630}, - [2357] = {.lex_state = 636}, - [2358] = {.lex_state = 630}, - [2359] = {.lex_state = 575}, - [2360] = {.lex_state = 647}, - [2361] = {.lex_state = 172, .external_lex_state = 2}, - [2362] = {.lex_state = 172, .external_lex_state = 2}, - [2363] = {.lex_state = 644}, - [2364] = {.lex_state = 577}, - [2365] = {.lex_state = 645}, - [2366] = {.lex_state = 647}, + [2288] = {.lex_state = 573}, + [2289] = {.lex_state = 49, .external_lex_state = 2}, + [2290] = {.lex_state = 573}, + [2291] = {.lex_state = 573}, + [2292] = {.lex_state = 573}, + [2293] = {.lex_state = 571}, + [2294] = {.lex_state = 573}, + [2295] = {.lex_state = 49, .external_lex_state = 2}, + [2296] = {.lex_state = 7}, + [2297] = {.lex_state = 49, .external_lex_state = 2}, + [2298] = {.lex_state = 49, .external_lex_state = 2}, + [2299] = {.lex_state = 49, .external_lex_state = 2}, + [2300] = {.lex_state = 49, .external_lex_state = 2}, + [2301] = {.lex_state = 49, .external_lex_state = 2}, + [2302] = {.lex_state = 574}, + [2303] = {.lex_state = 630}, + [2304] = {.lex_state = 49, .external_lex_state = 2}, + [2305] = {.lex_state = 49, .external_lex_state = 2}, + [2306] = {.lex_state = 49, .external_lex_state = 2}, + [2307] = {.lex_state = 49, .external_lex_state = 2}, + [2308] = {.lex_state = 49, .external_lex_state = 2}, + [2309] = {.lex_state = 49, .external_lex_state = 2}, + [2310] = {.lex_state = 49, .external_lex_state = 2}, + [2311] = {.lex_state = 49, .external_lex_state = 2}, + [2312] = {.lex_state = 49, .external_lex_state = 2}, + [2313] = {.lex_state = 49, .external_lex_state = 2}, + [2314] = {.lex_state = 49, .external_lex_state = 2}, + [2315] = {.lex_state = 49, .external_lex_state = 2}, + [2316] = {.lex_state = 49, .external_lex_state = 2}, + [2317] = {.lex_state = 49, .external_lex_state = 2}, + [2318] = {.lex_state = 49, .external_lex_state = 2}, + [2319] = {.lex_state = 49, .external_lex_state = 2}, + [2320] = {.lex_state = 49, .external_lex_state = 2}, + [2321] = {.lex_state = 49, .external_lex_state = 2}, + [2322] = {.lex_state = 49, .external_lex_state = 2}, + [2323] = {.lex_state = 574}, + [2324] = {.lex_state = 574}, + [2325] = {.lex_state = 574}, + [2326] = {.lex_state = 574}, + [2327] = {.lex_state = 49, .external_lex_state = 2}, + [2328] = {.lex_state = 49, .external_lex_state = 2}, + [2329] = {.lex_state = 630}, + [2330] = {.lex_state = 7}, + [2331] = {.lex_state = 631}, + [2332] = {.lex_state = 577}, + [2333] = {.lex_state = 631}, + [2334] = {.lex_state = 577}, + [2335] = {.lex_state = 49, .external_lex_state = 2}, + [2336] = {.lex_state = 634}, + [2337] = {.lex_state = 49, .external_lex_state = 2}, + [2338] = {.lex_state = 49, .external_lex_state = 2}, + [2339] = {.lex_state = 49, .external_lex_state = 2}, + [2340] = {.lex_state = 638}, + [2341] = {.lex_state = 49, .external_lex_state = 2}, + [2342] = {.lex_state = 631}, + [2343] = {.lex_state = 49, .external_lex_state = 2}, + [2344] = {.lex_state = 631}, + [2345] = {.lex_state = 577}, + [2346] = {.lex_state = 49, .external_lex_state = 2}, + [2347] = {.lex_state = 577}, + [2348] = {.lex_state = 49, .external_lex_state = 2}, + [2349] = {.lex_state = 577}, + [2350] = {.lex_state = 577}, + [2351] = {.lex_state = 49, .external_lex_state = 2}, + [2352] = {.lex_state = 629}, + [2353] = {.lex_state = 49, .external_lex_state = 2}, + [2354] = {.lex_state = 49, .external_lex_state = 2}, + [2355] = {.lex_state = 49, .external_lex_state = 2}, + [2356] = {.lex_state = 642}, + [2357] = {.lex_state = 638}, + [2358] = {.lex_state = 640}, + [2359] = {.lex_state = 634}, + [2360] = {.lex_state = 640}, + [2361] = {.lex_state = 632}, + [2362] = {.lex_state = 629}, + [2363] = {.lex_state = 577}, + [2364] = {.lex_state = 629}, + [2365] = {.lex_state = 632}, + [2366] = {.lex_state = 577}, [2367] = {.lex_state = 577}, - [2368] = {.lex_state = 640}, - [2369] = {.lex_state = 637}, - [2370] = {.lex_state = 577}, - [2371] = {.lex_state = 642}, - [2372] = {.lex_state = 172, .external_lex_state = 2}, - [2373] = {.lex_state = 172, .external_lex_state = 2}, - [2374] = {.lex_state = 2}, - [2375] = {.lex_state = 643}, - [2376] = {.lex_state = 172, .external_lex_state = 2}, - [2377] = {.lex_state = 630}, - [2378] = {.lex_state = 51}, - [2379] = {.lex_state = 643}, - [2380] = {.lex_state = 642}, - [2381] = {.lex_state = 630}, - [2382] = {.lex_state = 577}, - [2383] = {.lex_state = 52}, - [2384] = {.lex_state = 646}, - [2385] = {.lex_state = 172, .external_lex_state = 2}, - [2386] = {.lex_state = 49, .external_lex_state = 2}, - [2387] = {.lex_state = 577}, - [2388] = {.lex_state = 576}, - [2389] = {.lex_state = 577}, - [2390] = {.lex_state = 575}, - [2391] = {.lex_state = 644}, - [2392] = {.lex_state = 51}, - [2393] = {.lex_state = 642}, - [2394] = {.lex_state = 576}, - [2395] = {.lex_state = 53}, - [2396] = {.lex_state = 55}, - [2397] = {.lex_state = 644}, - [2398] = {.lex_state = 649}, - [2399] = {.lex_state = 642}, - [2400] = {.lex_state = 649}, - [2401] = {.lex_state = 649}, - [2402] = {.lex_state = 172, .external_lex_state = 2}, - [2403] = {.lex_state = 575}, - [2404] = {.lex_state = 576}, - [2405] = {.lex_state = 647}, - [2406] = {.lex_state = 649}, - [2407] = {.lex_state = 577}, - [2408] = {.lex_state = 575}, - [2409] = {.lex_state = 649}, - [2410] = {.lex_state = 644}, - [2411] = {.lex_state = 575}, - [2412] = {.lex_state = 576}, - [2413] = {.lex_state = 577}, - [2414] = {.lex_state = 577}, - [2415] = {.lex_state = 577}, - [2416] = {.lex_state = 577}, - [2417] = {.lex_state = 577}, - [2418] = {.lex_state = 52}, - [2419] = {.lex_state = 647}, - [2420] = {.lex_state = 575}, - [2421] = {.lex_state = 644}, - [2422] = {.lex_state = 575}, - [2423] = {.lex_state = 638}, - [2424] = {.lex_state = 649}, - [2425] = {.lex_state = 576}, - [2426] = {.lex_state = 644}, - [2427] = {.lex_state = 51}, - [2428] = {.lex_state = 51}, - [2429] = {.lex_state = 51}, - [2430] = {.lex_state = 576}, - [2431] = {.lex_state = 638}, - [2432] = {.lex_state = 576}, - [2433] = {.lex_state = 649}, - [2434] = {.lex_state = 576}, - [2435] = {.lex_state = 653}, - [2436] = {.lex_state = 649}, - [2437] = {.lex_state = 51}, - [2438] = {.lex_state = 649}, - [2439] = {.lex_state = 49, .external_lex_state = 2}, - [2440] = {.lex_state = 644}, - [2441] = {.lex_state = 576}, - [2442] = {.lex_state = 56}, - [2443] = {.lex_state = 646}, - [2444] = {.lex_state = 57}, - [2445] = {.lex_state = 2}, - [2446] = {.lex_state = 576}, - [2447] = {.lex_state = 651}, - [2448] = {.lex_state = 644}, - [2449] = {.lex_state = 648}, - [2450] = {.lex_state = 644}, - [2451] = {.lex_state = 576}, - [2452] = {.lex_state = 56}, - [2453] = {.lex_state = 649}, - [2454] = {.lex_state = 576}, - [2455] = {.lex_state = 576}, - [2456] = {.lex_state = 576}, - [2457] = {.lex_state = 576}, - [2458] = {.lex_state = 576}, - [2459] = {.lex_state = 575}, - [2460] = {.lex_state = 648}, - [2461] = {.lex_state = 2}, - [2462] = {.lex_state = 576}, - [2463] = {.lex_state = 576}, - [2464] = {.lex_state = 156, .external_lex_state = 2}, - [2465] = {.lex_state = 576}, - [2466] = {.lex_state = 577}, - [2467] = {.lex_state = 2}, - [2468] = {.lex_state = 650}, - [2469] = {.lex_state = 644}, - [2470] = {.lex_state = 577}, - [2471] = {.lex_state = 655}, - [2472] = {.lex_state = 576}, + [2368] = {.lex_state = 577}, + [2369] = {.lex_state = 635}, + [2370] = {.lex_state = 642}, + [2371] = {.lex_state = 629}, + [2372] = {.lex_state = 640}, + [2373] = {.lex_state = 632}, + [2374] = {.lex_state = 632}, + [2375] = {.lex_state = 642}, + [2376] = {.lex_state = 644}, + [2377] = {.lex_state = 617}, + [2378] = {.lex_state = 640}, + [2379] = {.lex_state = 569}, + [2380] = {.lex_state = 629}, + [2381] = {.lex_state = 629}, + [2382] = {.lex_state = 629}, + [2383] = {.lex_state = 569}, + [2384] = {.lex_state = 574}, + [2385] = {.lex_state = 569}, + [2386] = {.lex_state = 574}, + [2387] = {.lex_state = 636}, + [2388] = {.lex_state = 569}, + [2389] = {.lex_state = 629}, + [2390] = {.lex_state = 569}, + [2391] = {.lex_state = 571}, + [2392] = {.lex_state = 642}, + [2393] = {.lex_state = 569}, + [2394] = {.lex_state = 569}, + [2395] = {.lex_state = 639}, + [2396] = {.lex_state = 642}, + [2397] = {.lex_state = 569}, + [2398] = {.lex_state = 646}, + [2399] = {.lex_state = 573}, + [2400] = {.lex_state = 171, .external_lex_state = 2}, + [2401] = {.lex_state = 171, .external_lex_state = 2}, + [2402] = {.lex_state = 52}, + [2403] = {.lex_state = 641}, + [2404] = {.lex_state = 171, .external_lex_state = 2}, + [2405] = {.lex_state = 642}, + [2406] = {.lex_state = 644}, + [2407] = {.lex_state = 629}, + [2408] = {.lex_state = 629}, + [2409] = {.lex_state = 643}, + [2410] = {.lex_state = 636}, + [2411] = {.lex_state = 635}, + [2412] = {.lex_state = 171, .external_lex_state = 2}, + [2413] = {.lex_state = 646}, + [2414] = {.lex_state = 617}, + [2415] = {.lex_state = 573}, + [2416] = {.lex_state = 642}, + [2417] = {.lex_state = 573}, + [2418] = {.lex_state = 171, .external_lex_state = 2}, + [2419] = {.lex_state = 629}, + [2420] = {.lex_state = 641}, + [2421] = {.lex_state = 639}, + [2422] = {.lex_state = 642}, + [2423] = {.lex_state = 629}, + [2424] = {.lex_state = 617}, + [2425] = {.lex_state = 645}, + [2426] = {.lex_state = 54}, + [2427] = {.lex_state = 573}, + [2428] = {.lex_state = 56}, + [2429] = {.lex_state = 641}, + [2430] = {.lex_state = 572}, + [2431] = {.lex_state = 573}, + [2432] = {.lex_state = 648}, + [2433] = {.lex_state = 641}, + [2434] = {.lex_state = 648}, + [2435] = {.lex_state = 171, .external_lex_state = 2}, + [2436] = {.lex_state = 648}, + [2437] = {.lex_state = 572}, + [2438] = {.lex_state = 50, .external_lex_state = 2}, + [2439] = {.lex_state = 572}, + [2440] = {.lex_state = 569}, + [2441] = {.lex_state = 643}, + [2442] = {.lex_state = 646}, + [2443] = {.lex_state = 648}, + [2444] = {.lex_state = 171, .external_lex_state = 2}, + [2445] = {.lex_state = 572}, + [2446] = {.lex_state = 648}, + [2447] = {.lex_state = 646}, + [2448] = {.lex_state = 643}, + [2449] = {.lex_state = 643}, + [2450] = {.lex_state = 53}, + [2451] = {.lex_state = 52}, + [2452] = {.lex_state = 53}, + [2453] = {.lex_state = 573}, + [2454] = {.lex_state = 573}, + [2455] = {.lex_state = 569}, + [2456] = {.lex_state = 573}, + [2457] = {.lex_state = 573}, + [2458] = {.lex_state = 571}, + [2459] = {.lex_state = 569}, + [2460] = {.lex_state = 569}, + [2461] = {.lex_state = 643}, + [2462] = {.lex_state = 637}, + [2463] = {.lex_state = 648}, + [2464] = {.lex_state = 572}, + [2465] = {.lex_state = 648}, + [2466] = {.lex_state = 572}, + [2467] = {.lex_state = 645}, + [2468] = {.lex_state = 572}, + [2469] = {.lex_state = 572}, + [2470] = {.lex_state = 572}, + [2471] = {.lex_state = 572}, + [2472] = {.lex_state = 572}, [2473] = {.lex_state = 57}, - [2474] = {.lex_state = 577}, - [2475] = {.lex_state = 577}, - [2476] = {.lex_state = 2}, - [2477] = {.lex_state = 577}, - [2478] = {.lex_state = 577}, - [2479] = {.lex_state = 577}, - [2480] = {.lex_state = 651}, - [2481] = {.lex_state = 577}, - [2482] = {.lex_state = 58}, - [2483] = {.lex_state = 57}, - [2484] = {.lex_state = 156, .external_lex_state = 2}, - [2485] = {.lex_state = 156, .external_lex_state = 2}, - [2486] = {.lex_state = 576}, - [2487] = {.lex_state = 650}, - [2488] = {.lex_state = 54}, - [2489] = {.lex_state = 576}, - [2490] = {.lex_state = 576}, - [2491] = {.lex_state = 2}, - [2492] = {.lex_state = 576}, - [2493] = {.lex_state = 648}, - [2494] = {.lex_state = 2}, - [2495] = {.lex_state = 156, .external_lex_state = 2}, - [2496] = {.lex_state = 577}, - [2497] = {.lex_state = 577}, - [2498] = {.lex_state = 2}, - [2499] = {.lex_state = 655}, - [2500] = {.lex_state = 577}, - [2501] = {.lex_state = 577}, - [2502] = {.lex_state = 577}, - [2503] = {.lex_state = 577}, - [2504] = {.lex_state = 653}, - [2505] = {.lex_state = 650}, - [2506] = {.lex_state = 576}, - [2507] = {.lex_state = 57}, + [2474] = {.lex_state = 57}, + [2475] = {.lex_state = 650}, + [2476] = {.lex_state = 643}, + [2477] = {.lex_state = 648}, + [2478] = {.lex_state = 52}, + [2479] = {.lex_state = 648}, + [2480] = {.lex_state = 52}, + [2481] = {.lex_state = 52}, + [2482] = {.lex_state = 648}, + [2483] = {.lex_state = 572}, + [2484] = {.lex_state = 572}, + [2485] = {.lex_state = 52}, + [2486] = {.lex_state = 643}, + [2487] = {.lex_state = 572}, + [2488] = {.lex_state = 572}, + [2489] = {.lex_state = 50, .external_lex_state = 2}, + [2490] = {.lex_state = 647}, + [2491] = {.lex_state = 643}, + [2492] = {.lex_state = 58}, + [2493] = {.lex_state = 643}, + [2494] = {.lex_state = 647}, + [2495] = {.lex_state = 637}, + [2496] = {.lex_state = 652}, + [2497] = {.lex_state = 569}, + [2498] = {.lex_state = 572}, + [2499] = {.lex_state = 569}, + [2500] = {.lex_state = 569}, + [2501] = {.lex_state = 573}, + [2502] = {.lex_state = 2}, + [2503] = {.lex_state = 573}, + [2504] = {.lex_state = 647}, + [2505] = {.lex_state = 55}, + [2506] = {.lex_state = 569}, + [2507] = {.lex_state = 573}, [2508] = {.lex_state = 2}, - [2509] = {.lex_state = 650}, - [2510] = {.lex_state = 648}, - [2511] = {.lex_state = 2}, - [2512] = {.lex_state = 576}, - [2513] = {.lex_state = 577}, - [2514] = {.lex_state = 650}, - [2515] = {.lex_state = 657}, - [2516] = {.lex_state = 576}, - [2517] = {.lex_state = 2}, - [2518] = {.lex_state = 576}, - [2519] = {.lex_state = 576}, - [2520] = {.lex_state = 577}, - [2521] = {.lex_state = 576}, - [2522] = {.lex_state = 657}, - [2523] = {.lex_state = 657}, - [2524] = {.lex_state = 657}, - [2525] = {.lex_state = 59}, - [2526] = {.lex_state = 2}, - [2527] = {.lex_state = 657}, - [2528] = {.lex_state = 657}, - [2529] = {.lex_state = 650}, - [2530] = {.lex_state = 2}, - [2531] = {.lex_state = 650}, - [2532] = {.lex_state = 576}, - [2533] = {.lex_state = 657}, - [2534] = {.lex_state = 657}, - [2535] = {.lex_state = 657}, - [2536] = {.lex_state = 2}, - [2537] = {.lex_state = 577}, - [2538] = {.lex_state = 576}, - [2539] = {.lex_state = 576}, - [2540] = {.lex_state = 2}, - [2541] = {.lex_state = 2}, - [2542] = {.lex_state = 576}, - [2543] = {.lex_state = 654}, - [2544] = {.lex_state = 2}, - [2545] = {.lex_state = 576}, - [2546] = {.lex_state = 657}, - [2547] = {.lex_state = 577}, - [2548] = {.lex_state = 2}, - [2549] = {.lex_state = 576}, - [2550] = {.lex_state = 652}, - [2551] = {.lex_state = 576}, - [2552] = {.lex_state = 2}, - [2553] = {.lex_state = 576}, - [2554] = {.lex_state = 576}, - [2555] = {.lex_state = 655}, - [2556] = {.lex_state = 2}, - [2557] = {.lex_state = 576}, - [2558] = {.lex_state = 657}, - [2559] = {.lex_state = 650}, - [2560] = {.lex_state = 650}, - [2561] = {.lex_state = 2}, - [2562] = {.lex_state = 577}, - [2563] = {.lex_state = 577}, - [2564] = {.lex_state = 577}, - [2565] = {.lex_state = 650}, - [2566] = {.lex_state = 576}, - [2567] = {.lex_state = 577}, + [2509] = {.lex_state = 569}, + [2510] = {.lex_state = 650}, + [2511] = {.lex_state = 569}, + [2512] = {.lex_state = 569}, + [2513] = {.lex_state = 572}, + [2514] = {.lex_state = 58}, + [2515] = {.lex_state = 2}, + [2516] = {.lex_state = 572}, + [2517] = {.lex_state = 569}, + [2518] = {.lex_state = 573}, + [2519] = {.lex_state = 572}, + [2520] = {.lex_state = 573}, + [2521] = {.lex_state = 652}, + [2522] = {.lex_state = 573}, + [2523] = {.lex_state = 58}, + [2524] = {.lex_state = 572}, + [2525] = {.lex_state = 573}, + [2526] = {.lex_state = 573}, + [2527] = {.lex_state = 2}, + [2528] = {.lex_state = 643}, + [2529] = {.lex_state = 654}, + [2530] = {.lex_state = 155, .external_lex_state = 2}, + [2531] = {.lex_state = 572}, + [2532] = {.lex_state = 572}, + [2533] = {.lex_state = 569}, + [2534] = {.lex_state = 569}, + [2535] = {.lex_state = 155, .external_lex_state = 2}, + [2536] = {.lex_state = 573}, + [2537] = {.lex_state = 649}, + [2538] = {.lex_state = 573}, + [2539] = {.lex_state = 569}, + [2540] = {.lex_state = 649}, + [2541] = {.lex_state = 572}, + [2542] = {.lex_state = 649}, + [2543] = {.lex_state = 649}, + [2544] = {.lex_state = 573}, + [2545] = {.lex_state = 654}, + [2546] = {.lex_state = 59}, + [2547] = {.lex_state = 569}, + [2548] = {.lex_state = 572}, + [2549] = {.lex_state = 573}, + [2550] = {.lex_state = 2}, + [2551] = {.lex_state = 155, .external_lex_state = 2}, + [2552] = {.lex_state = 573}, + [2553] = {.lex_state = 573}, + [2554] = {.lex_state = 572}, + [2555] = {.lex_state = 573}, + [2556] = {.lex_state = 155, .external_lex_state = 2}, + [2557] = {.lex_state = 58}, + [2558] = {.lex_state = 647}, + [2559] = {.lex_state = 649}, + [2560] = {.lex_state = 572}, + [2561] = {.lex_state = 572}, + [2562] = {.lex_state = 656}, + [2563] = {.lex_state = 656}, + [2564] = {.lex_state = 573}, + [2565] = {.lex_state = 569}, + [2566] = {.lex_state = 656}, + [2567] = {.lex_state = 656}, [2568] = {.lex_state = 2}, - [2569] = {.lex_state = 657}, - [2570] = {.lex_state = 2}, - [2571] = {.lex_state = 657}, - [2572] = {.lex_state = 655}, - [2573] = {.lex_state = 576}, - [2574] = {.lex_state = 577}, - [2575] = {.lex_state = 2}, - [2576] = {.lex_state = 577}, - [2577] = {.lex_state = 59}, - [2578] = {.lex_state = 577}, - [2579] = {.lex_state = 577}, - [2580] = {.lex_state = 577}, - [2581] = {.lex_state = 577}, - [2582] = {.lex_state = 652}, - [2583] = {.lex_state = 657}, - [2584] = {.lex_state = 2}, - [2585] = {.lex_state = 576}, - [2586] = {.lex_state = 656}, - [2587] = {.lex_state = 657}, - [2588] = {.lex_state = 60}, - [2589] = {.lex_state = 60}, - [2590] = {.lex_state = 112}, - [2591] = {.lex_state = 657}, - [2592] = {.lex_state = 2}, - [2593] = {.lex_state = 577}, - [2594] = {.lex_state = 576}, - [2595] = {.lex_state = 657}, - [2596] = {.lex_state = 640}, - [2597] = {.lex_state = 659}, - [2598] = {.lex_state = 640}, - [2599] = {.lex_state = 576}, - [2600] = {.lex_state = 657}, - [2601] = {.lex_state = 640}, - [2602] = {.lex_state = 576}, - [2603] = {.lex_state = 657}, - [2604] = {.lex_state = 640}, - [2605] = {.lex_state = 640}, - [2606] = {.lex_state = 640}, - [2607] = {.lex_state = 640}, - [2608] = {.lex_state = 640}, - [2609] = {.lex_state = 576}, - [2610] = {.lex_state = 60}, - [2611] = {.lex_state = 576}, - [2612] = {.lex_state = 60}, - [2613] = {.lex_state = 577}, - [2614] = {.lex_state = 657}, - [2615] = {.lex_state = 640}, - [2616] = {.lex_state = 2}, - [2617] = {.lex_state = 576}, - [2618] = {.lex_state = 657}, - [2619] = {.lex_state = 657}, - [2620] = {.lex_state = 657}, - [2621] = {.lex_state = 2}, - [2622] = {.lex_state = 640}, - [2623] = {.lex_state = 2}, + [2569] = {.lex_state = 572}, + [2570] = {.lex_state = 656}, + [2571] = {.lex_state = 569}, + [2572] = {.lex_state = 569}, + [2573] = {.lex_state = 572}, + [2574] = {.lex_state = 649}, + [2575] = {.lex_state = 572}, + [2576] = {.lex_state = 569}, + [2577] = {.lex_state = 651}, + [2578] = {.lex_state = 654}, + [2579] = {.lex_state = 60}, + [2580] = {.lex_state = 569}, + [2581] = {.lex_state = 573}, + [2582] = {.lex_state = 569}, + [2583] = {.lex_state = 572}, + [2584] = {.lex_state = 569}, + [2585] = {.lex_state = 649}, + [2586] = {.lex_state = 569}, + [2587] = {.lex_state = 569}, + [2588] = {.lex_state = 573}, + [2589] = {.lex_state = 649}, + [2590] = {.lex_state = 656}, + [2591] = {.lex_state = 573}, + [2592] = {.lex_state = 572}, + [2593] = {.lex_state = 2}, + [2594] = {.lex_state = 569}, + [2595] = {.lex_state = 569}, + [2596] = {.lex_state = 573}, + [2597] = {.lex_state = 569}, + [2598] = {.lex_state = 572}, + [2599] = {.lex_state = 569}, + [2600] = {.lex_state = 572}, + [2601] = {.lex_state = 60}, + [2602] = {.lex_state = 569}, + [2603] = {.lex_state = 572}, + [2604] = {.lex_state = 654}, + [2605] = {.lex_state = 573}, + [2606] = {.lex_state = 573}, + [2607] = {.lex_state = 656}, + [2608] = {.lex_state = 569}, + [2609] = {.lex_state = 569}, + [2610] = {.lex_state = 656}, + [2611] = {.lex_state = 656}, + [2612] = {.lex_state = 569}, + [2613] = {.lex_state = 656}, + [2614] = {.lex_state = 2}, + [2615] = {.lex_state = 2}, + [2616] = {.lex_state = 573}, + [2617] = {.lex_state = 572}, + [2618] = {.lex_state = 569}, + [2619] = {.lex_state = 649}, + [2620] = {.lex_state = 569}, + [2621] = {.lex_state = 572}, + [2622] = {.lex_state = 2}, + [2623] = {.lex_state = 649}, [2624] = {.lex_state = 2}, - [2625] = {.lex_state = 576}, - [2626] = {.lex_state = 657}, - [2627] = {.lex_state = 640}, - [2628] = {.lex_state = 576}, - [2629] = {.lex_state = 654}, - [2630] = {.lex_state = 576}, - [2631] = {.lex_state = 2}, - [2632] = {.lex_state = 577}, - [2633] = {.lex_state = 576}, - [2634] = {.lex_state = 576}, - [2635] = {.lex_state = 576}, - [2636] = {.lex_state = 576}, - [2637] = {.lex_state = 60}, - [2638] = {.lex_state = 656}, - [2639] = {.lex_state = 657}, - [2640] = {.lex_state = 576}, - [2641] = {.lex_state = 657}, - [2642] = {.lex_state = 657}, - [2643] = {.lex_state = 577}, - [2644] = {.lex_state = 640}, - [2645] = {.lex_state = 640}, - [2646] = {.lex_state = 577}, - [2647] = {.lex_state = 577}, - [2648] = {.lex_state = 577}, - [2649] = {.lex_state = 577}, - [2650] = {.lex_state = 577}, - [2651] = {.lex_state = 62}, - [2652] = {.lex_state = 577}, - [2653] = {.lex_state = 577}, - [2654] = {.lex_state = 577}, - [2655] = {.lex_state = 577}, - [2656] = {.lex_state = 577}, - [2657] = {.lex_state = 577}, - [2658] = {.lex_state = 577}, - [2659] = {.lex_state = 577}, - [2660] = {.lex_state = 577}, - [2661] = {.lex_state = 577}, - [2662] = {.lex_state = 577}, - [2663] = {.lex_state = 577}, - [2664] = {.lex_state = 577}, - [2665] = {.lex_state = 577}, - [2666] = {.lex_state = 577}, - [2667] = {.lex_state = 577}, - [2668] = {.lex_state = 577}, - [2669] = {.lex_state = 577}, - [2670] = {.lex_state = 577}, - [2671] = {.lex_state = 577}, - [2672] = {.lex_state = 577}, - [2673] = {.lex_state = 577}, - [2674] = {.lex_state = 577}, - [2675] = {.lex_state = 577}, - [2676] = {.lex_state = 577}, - [2677] = {.lex_state = 577}, - [2678] = {.lex_state = 577}, - [2679] = {.lex_state = 577}, - [2680] = {.lex_state = 577}, - [2681] = {.lex_state = 652}, - [2682] = {.lex_state = 640}, - [2683] = {.lex_state = 61}, - [2684] = {.lex_state = 577}, - [2685] = {.lex_state = 577}, - [2686] = {.lex_state = 577}, - [2687] = {.lex_state = 577}, - [2688] = {.lex_state = 577}, - [2689] = {.lex_state = 577}, - [2690] = {.lex_state = 577}, - [2691] = {.lex_state = 577}, - [2692] = {.lex_state = 577}, - [2693] = {.lex_state = 577}, - [2694] = {.lex_state = 577}, - [2695] = {.lex_state = 658}, - [2696] = {.lex_state = 656}, - [2697] = {.lex_state = 577}, - [2698] = {.lex_state = 577}, - [2699] = {.lex_state = 658}, - [2700] = {.lex_state = 577}, - [2701] = {.lex_state = 640}, - [2702] = {.lex_state = 577}, - [2703] = {.lex_state = 577}, - [2704] = {.lex_state = 640}, - [2705] = {.lex_state = 640}, - [2706] = {.lex_state = 640}, - [2707] = {.lex_state = 658}, - [2708] = {.lex_state = 658}, - [2709] = {.lex_state = 656}, - [2710] = {.lex_state = 658}, - [2711] = {.lex_state = 576}, - [2712] = {.lex_state = 577}, + [2625] = {.lex_state = 2}, + [2626] = {.lex_state = 2}, + [2627] = {.lex_state = 653}, + [2628] = {.lex_state = 572}, + [2629] = {.lex_state = 573}, + [2630] = {.lex_state = 572}, + [2631] = {.lex_state = 573}, + [2632] = {.lex_state = 573}, + [2633] = {.lex_state = 573}, + [2634] = {.lex_state = 656}, + [2635] = {.lex_state = 656}, + [2636] = {.lex_state = 572}, + [2637] = {.lex_state = 569}, + [2638] = {.lex_state = 572}, + [2639] = {.lex_state = 573}, + [2640] = {.lex_state = 569}, + [2641] = {.lex_state = 656}, + [2642] = {.lex_state = 572}, + [2643] = {.lex_state = 569}, + [2644] = {.lex_state = 656}, + [2645] = {.lex_state = 635}, + [2646] = {.lex_state = 61}, + [2647] = {.lex_state = 572}, + [2648] = {.lex_state = 656}, + [2649] = {.lex_state = 573}, + [2650] = {.lex_state = 572}, + [2651] = {.lex_state = 569}, + [2652] = {.lex_state = 651}, + [2653] = {.lex_state = 656}, + [2654] = {.lex_state = 635}, + [2655] = {.lex_state = 635}, + [2656] = {.lex_state = 635}, + [2657] = {.lex_state = 635}, + [2658] = {.lex_state = 635}, + [2659] = {.lex_state = 572}, + [2660] = {.lex_state = 2}, + [2661] = {.lex_state = 656}, + [2662] = {.lex_state = 572}, + [2663] = {.lex_state = 635}, + [2664] = {.lex_state = 572}, + [2665] = {.lex_state = 656}, + [2666] = {.lex_state = 572}, + [2667] = {.lex_state = 635}, + [2668] = {.lex_state = 569}, + [2669] = {.lex_state = 61}, + [2670] = {.lex_state = 61}, + [2671] = {.lex_state = 572}, + [2672] = {.lex_state = 656}, + [2673] = {.lex_state = 572}, + [2674] = {.lex_state = 635}, + [2675] = {.lex_state = 569}, + [2676] = {.lex_state = 572}, + [2677] = {.lex_state = 656}, + [2678] = {.lex_state = 2}, + [2679] = {.lex_state = 111}, + [2680] = {.lex_state = 635}, + [2681] = {.lex_state = 572}, + [2682] = {.lex_state = 573}, + [2683] = {.lex_state = 569}, + [2684] = {.lex_state = 2}, + [2685] = {.lex_state = 2}, + [2686] = {.lex_state = 573}, + [2687] = {.lex_state = 656}, + [2688] = {.lex_state = 572}, + [2689] = {.lex_state = 572}, + [2690] = {.lex_state = 2}, + [2691] = {.lex_state = 569}, + [2692] = {.lex_state = 2}, + [2693] = {.lex_state = 656}, + [2694] = {.lex_state = 569}, + [2695] = {.lex_state = 656}, + [2696] = {.lex_state = 2}, + [2697] = {.lex_state = 572}, + [2698] = {.lex_state = 572}, + [2699] = {.lex_state = 655}, + [2700] = {.lex_state = 656}, + [2701] = {.lex_state = 656}, + [2702] = {.lex_state = 61}, + [2703] = {.lex_state = 572}, + [2704] = {.lex_state = 653}, + [2705] = {.lex_state = 573}, + [2706] = {.lex_state = 656}, + [2707] = {.lex_state = 2}, + [2708] = {.lex_state = 635}, + [2709] = {.lex_state = 2}, + [2710] = {.lex_state = 569}, + [2711] = {.lex_state = 61}, + [2712] = {.lex_state = 656}, [2713] = {.lex_state = 658}, - [2714] = {.lex_state = 577}, - [2715] = {.lex_state = 577}, - [2716] = {.lex_state = 658}, - [2717] = {.lex_state = 658}, - [2718] = {.lex_state = 577}, - [2719] = {.lex_state = 577}, - [2720] = {.lex_state = 577}, - [2721] = {.lex_state = 659}, - [2722] = {.lex_state = 658}, - [2723] = {.lex_state = 658}, - [2724] = {.lex_state = 577}, - [2725] = {.lex_state = 577}, - [2726] = {.lex_state = 577}, - [2727] = {.lex_state = 577}, - [2728] = {.lex_state = 640}, - [2729] = {.lex_state = 577}, - [2730] = {.lex_state = 577}, - [2731] = {.lex_state = 577}, - [2732] = {.lex_state = 577}, - [2733] = {.lex_state = 630}, - [2734] = {.lex_state = 630}, - [2735] = {.lex_state = 577}, - [2736] = {.lex_state = 630}, - [2737] = {.lex_state = 630}, - [2738] = {.lex_state = 577}, - [2739] = {.lex_state = 577}, - [2740] = {.lex_state = 577}, - [2741] = {.lex_state = 577}, - [2742] = {.lex_state = 577}, - [2743] = {.lex_state = 577}, - [2744] = {.lex_state = 577}, - [2745] = {.lex_state = 577}, - [2746] = {.lex_state = 577}, - [2747] = {.lex_state = 577}, - [2748] = {.lex_state = 577}, - [2749] = {.lex_state = 577}, - [2750] = {.lex_state = 577}, - [2751] = {.lex_state = 577}, - [2752] = {.lex_state = 577}, - [2753] = {.lex_state = 577}, - [2754] = {.lex_state = 577}, - [2755] = {.lex_state = 577}, - [2756] = {.lex_state = 640}, - [2757] = {.lex_state = 577}, - [2758] = {.lex_state = 577}, - [2759] = {.lex_state = 577}, - [2760] = {.lex_state = 576}, - [2761] = {.lex_state = 640}, - [2762] = {.lex_state = 630}, - [2763] = {.lex_state = 577}, - [2764] = {.lex_state = 658}, - [2765] = {.lex_state = 577}, - [2766] = {.lex_state = 577}, - [2767] = {.lex_state = 577}, - [2768] = {.lex_state = 658}, - [2769] = {.lex_state = 658}, - [2770] = {.lex_state = 577}, - [2771] = {.lex_state = 577}, - [2772] = {.lex_state = 577}, - [2773] = {.lex_state = 577}, - [2774] = {.lex_state = 577}, - [2775] = {.lex_state = 577}, - [2776] = {.lex_state = 577}, - [2777] = {.lex_state = 577}, - [2778] = {.lex_state = 577}, - [2779] = {.lex_state = 577}, - [2780] = {.lex_state = 577}, - [2781] = {.lex_state = 577}, - [2782] = {.lex_state = 577}, - [2783] = {.lex_state = 577}, - [2784] = {.lex_state = 640}, - [2785] = {.lex_state = 2}, - [2786] = {.lex_state = 577}, - [2787] = {.lex_state = 2}, - [2788] = {.lex_state = 577}, - [2789] = {.lex_state = 576}, - [2790] = {.lex_state = 576}, - [2791] = {.lex_state = 2}, - [2792] = {.lex_state = 2}, - [2793] = {.lex_state = 2}, - [2794] = {.lex_state = 2}, - [2795] = {.lex_state = 2}, - [2796] = {.lex_state = 2}, - [2797] = {.lex_state = 577}, - [2798] = {.lex_state = 577}, - [2799] = {.lex_state = 577}, - [2800] = {.lex_state = 577}, - [2801] = {.lex_state = 577}, - [2802] = {.lex_state = 577}, - [2803] = {.lex_state = 577}, - [2804] = {.lex_state = 577}, - [2805] = {.lex_state = 577}, - [2806] = {.lex_state = 577}, - [2807] = {.lex_state = 577}, - [2808] = {.lex_state = 577}, - [2809] = {.lex_state = 577}, - [2810] = {.lex_state = 577}, - [2811] = {.lex_state = 577}, - [2812] = {.lex_state = 577}, - [2813] = {.lex_state = 577}, - [2814] = {.lex_state = 577}, - [2815] = {.lex_state = 657}, - [2816] = {.lex_state = 658}, - [2817] = {.lex_state = 658}, - [2818] = {.lex_state = 577}, - [2819] = {.lex_state = 658}, - [2820] = {.lex_state = 630}, - [2821] = {.lex_state = 2}, - [2822] = {.lex_state = 576}, - [2823] = {.lex_state = 577}, - [2824] = {.lex_state = 630}, - [2825] = {.lex_state = 63}, - [2826] = {.lex_state = 2}, - [2827] = {.lex_state = 577}, - [2828] = {.lex_state = 2}, - [2829] = {.lex_state = 112}, - [2830] = {.lex_state = 576}, - [2831] = {.lex_state = 577}, - [2832] = {.lex_state = 630}, - [2833] = {.lex_state = 576}, - [2834] = {.lex_state = 630}, - [2835] = {.lex_state = 112}, - [2836] = {.lex_state = 658}, - [2837] = {.lex_state = 658}, - [2838] = {.lex_state = 658}, - [2839] = {.lex_state = 624}, - [2840] = {.lex_state = 624}, - [2841] = {.lex_state = 577}, - [2842] = {.lex_state = 112}, - [2843] = {.lex_state = 2}, - [2844] = {.lex_state = 577}, - [2845] = {.lex_state = 577}, - [2846] = {.lex_state = 577}, - [2847] = {.lex_state = 2}, - [2848] = {.lex_state = 126, .external_lex_state = 2}, - [2849] = {.lex_state = 577}, - [2850] = {.lex_state = 577}, - [2851] = {.lex_state = 577}, - [2852] = {.lex_state = 2}, - [2853] = {.lex_state = 577}, - [2854] = {.lex_state = 577}, - [2855] = {.lex_state = 577}, - [2856] = {.lex_state = 577}, - [2857] = {.lex_state = 624}, - [2858] = {.lex_state = 577}, - [2859] = {.lex_state = 577}, - [2860] = {.lex_state = 577}, - [2861] = {.lex_state = 577}, - [2862] = {.lex_state = 577}, - [2863] = {.lex_state = 2}, - [2864] = {.lex_state = 577}, - [2865] = {.lex_state = 577}, - [2866] = {.lex_state = 2}, - [2867] = {.lex_state = 624}, - [2868] = {.lex_state = 2}, - [2869] = {.lex_state = 112}, - [2870] = {.lex_state = 112}, + [2714] = {.lex_state = 655}, + [2715] = {.lex_state = 573}, + [2716] = {.lex_state = 573}, + [2717] = {.lex_state = 573}, + [2718] = {.lex_state = 635}, + [2719] = {.lex_state = 569}, + [2720] = {.lex_state = 573}, + [2721] = {.lex_state = 573}, + [2722] = {.lex_state = 635}, + [2723] = {.lex_state = 63}, + [2724] = {.lex_state = 573}, + [2725] = {.lex_state = 573}, + [2726] = {.lex_state = 573}, + [2727] = {.lex_state = 573}, + [2728] = {.lex_state = 573}, + [2729] = {.lex_state = 573}, + [2730] = {.lex_state = 573}, + [2731] = {.lex_state = 573}, + [2732] = {.lex_state = 573}, + [2733] = {.lex_state = 573}, + [2734] = {.lex_state = 573}, + [2735] = {.lex_state = 573}, + [2736] = {.lex_state = 573}, + [2737] = {.lex_state = 573}, + [2738] = {.lex_state = 573}, + [2739] = {.lex_state = 573}, + [2740] = {.lex_state = 573}, + [2741] = {.lex_state = 573}, + [2742] = {.lex_state = 573}, + [2743] = {.lex_state = 573}, + [2744] = {.lex_state = 573}, + [2745] = {.lex_state = 573}, + [2746] = {.lex_state = 573}, + [2747] = {.lex_state = 573}, + [2748] = {.lex_state = 573}, + [2749] = {.lex_state = 573}, + [2750] = {.lex_state = 573}, + [2751] = {.lex_state = 573}, + [2752] = {.lex_state = 573}, + [2753] = {.lex_state = 573}, + [2754] = {.lex_state = 573}, + [2755] = {.lex_state = 573}, + [2756] = {.lex_state = 573}, + [2757] = {.lex_state = 573}, + [2758] = {.lex_state = 573}, + [2759] = {.lex_state = 651}, + [2760] = {.lex_state = 573}, + [2761] = {.lex_state = 62}, + [2762] = {.lex_state = 573}, + [2763] = {.lex_state = 573}, + [2764] = {.lex_state = 573}, + [2765] = {.lex_state = 573}, + [2766] = {.lex_state = 573}, + [2767] = {.lex_state = 573}, + [2768] = {.lex_state = 573}, + [2769] = {.lex_state = 573}, + [2770] = {.lex_state = 573}, + [2771] = {.lex_state = 573}, + [2772] = {.lex_state = 573}, + [2773] = {.lex_state = 573}, + [2774] = {.lex_state = 573}, + [2775] = {.lex_state = 573}, + [2776] = {.lex_state = 573}, + [2777] = {.lex_state = 573}, + [2778] = {.lex_state = 573}, + [2779] = {.lex_state = 573}, + [2780] = {.lex_state = 573}, + [2781] = {.lex_state = 573}, + [2782] = {.lex_state = 573}, + [2783] = {.lex_state = 573}, + [2784] = {.lex_state = 635}, + [2785] = {.lex_state = 573}, + [2786] = {.lex_state = 573}, + [2787] = {.lex_state = 573}, + [2788] = {.lex_state = 573}, + [2789] = {.lex_state = 573}, + [2790] = {.lex_state = 573}, + [2791] = {.lex_state = 573}, + [2792] = {.lex_state = 573}, + [2793] = {.lex_state = 573}, + [2794] = {.lex_state = 657}, + [2795] = {.lex_state = 573}, + [2796] = {.lex_state = 655}, + [2797] = {.lex_state = 573}, + [2798] = {.lex_state = 573}, + [2799] = {.lex_state = 635}, + [2800] = {.lex_state = 573}, + [2801] = {.lex_state = 657}, + [2802] = {.lex_state = 573}, + [2803] = {.lex_state = 573}, + [2804] = {.lex_state = 572}, + [2805] = {.lex_state = 657}, + [2806] = {.lex_state = 657}, + [2807] = {.lex_state = 655}, + [2808] = {.lex_state = 573}, + [2809] = {.lex_state = 657}, + [2810] = {.lex_state = 657}, + [2811] = {.lex_state = 573}, + [2812] = {.lex_state = 572}, + [2813] = {.lex_state = 657}, + [2814] = {.lex_state = 657}, + [2815] = {.lex_state = 573}, + [2816] = {.lex_state = 657}, + [2817] = {.lex_state = 635}, + [2818] = {.lex_state = 635}, + [2819] = {.lex_state = 573}, + [2820] = {.lex_state = 635}, + [2821] = {.lex_state = 635}, + [2822] = {.lex_state = 656}, + [2823] = {.lex_state = 569}, + [2824] = {.lex_state = 621}, + [2825] = {.lex_state = 569}, + [2826] = {.lex_state = 573}, + [2827] = {.lex_state = 573}, + [2828] = {.lex_state = 573}, + [2829] = {.lex_state = 573}, + [2830] = {.lex_state = 573}, + [2831] = {.lex_state = 2}, + [2832] = {.lex_state = 2}, + [2833] = {.lex_state = 2}, + [2834] = {.lex_state = 2}, + [2835] = {.lex_state = 2}, + [2836] = {.lex_state = 2}, + [2837] = {.lex_state = 573}, + [2838] = {.lex_state = 573}, + [2839] = {.lex_state = 573}, + [2840] = {.lex_state = 573}, + [2841] = {.lex_state = 573}, + [2842] = {.lex_state = 629}, + [2843] = {.lex_state = 573}, + [2844] = {.lex_state = 573}, + [2845] = {.lex_state = 629}, + [2846] = {.lex_state = 573}, + [2847] = {.lex_state = 573}, + [2848] = {.lex_state = 573}, + [2849] = {.lex_state = 573}, + [2850] = {.lex_state = 573}, + [2851] = {.lex_state = 573}, + [2852] = {.lex_state = 573}, + [2853] = {.lex_state = 573}, + [2854] = {.lex_state = 629}, + [2855] = {.lex_state = 629}, + [2856] = {.lex_state = 2}, + [2857] = {.lex_state = 573}, + [2858] = {.lex_state = 573}, + [2859] = {.lex_state = 573}, + [2860] = {.lex_state = 2}, + [2861] = {.lex_state = 573}, + [2862] = {.lex_state = 573}, + [2863] = {.lex_state = 635}, + [2864] = {.lex_state = 658}, + [2865] = {.lex_state = 573}, + [2866] = {.lex_state = 573}, + [2867] = {.lex_state = 629}, + [2868] = {.lex_state = 635}, + [2869] = {.lex_state = 573}, + [2870] = {.lex_state = 569}, [2871] = {.lex_state = 2}, - [2872] = {.lex_state = 658}, - [2873] = {.lex_state = 658}, - [2874] = {.lex_state = 112}, - [2875] = {.lex_state = 658}, - [2876] = {.lex_state = 658}, - [2877] = {.lex_state = 630}, - [2878] = {.lex_state = 630}, + [2872] = {.lex_state = 621}, + [2873] = {.lex_state = 657}, + [2874] = {.lex_state = 617}, + [2875] = {.lex_state = 635}, + [2876] = {.lex_state = 2}, + [2877] = {.lex_state = 573}, + [2878] = {.lex_state = 657}, [2879] = {.lex_state = 2}, - [2880] = {.lex_state = 2}, - [2881] = {.lex_state = 630}, - [2882] = {.lex_state = 652}, - [2883] = {.lex_state = 63}, - [2884] = {.lex_state = 2}, - [2885] = {.lex_state = 576}, - [2886] = {.lex_state = 2}, - [2887] = {.lex_state = 2}, - [2888] = {.lex_state = 658}, - [2889] = {.lex_state = 2}, - [2890] = {.lex_state = 577}, - [2891] = {.lex_state = 577}, - [2892] = {.lex_state = 66}, - [2893] = {.lex_state = 576}, - [2894] = {.lex_state = 658}, - [2895] = {.lex_state = 576}, - [2896] = {.lex_state = 658}, - [2897] = {.lex_state = 576}, - [2898] = {.lex_state = 71}, - [2899] = {.lex_state = 2}, - [2900] = {.lex_state = 2}, - [2901] = {.lex_state = 2}, - [2902] = {.lex_state = 2}, - [2903] = {.lex_state = 658}, - [2904] = {.lex_state = 630}, + [2880] = {.lex_state = 657}, + [2881] = {.lex_state = 573}, + [2882] = {.lex_state = 573}, + [2883] = {.lex_state = 621}, + [2884] = {.lex_state = 572}, + [2885] = {.lex_state = 572}, + [2886] = {.lex_state = 573}, + [2887] = {.lex_state = 573}, + [2888] = {.lex_state = 573}, + [2889] = {.lex_state = 573}, + [2890] = {.lex_state = 573}, + [2891] = {.lex_state = 573}, + [2892] = {.lex_state = 573}, + [2893] = {.lex_state = 573}, + [2894] = {.lex_state = 573}, + [2895] = {.lex_state = 573}, + [2896] = {.lex_state = 621}, + [2897] = {.lex_state = 621}, + [2898] = {.lex_state = 573}, + [2899] = {.lex_state = 621}, + [2900] = {.lex_state = 621}, + [2901] = {.lex_state = 573}, + [2902] = {.lex_state = 621}, + [2903] = {.lex_state = 573}, + [2904] = {.lex_state = 657}, [2905] = {.lex_state = 624}, - [2906] = {.lex_state = 2}, - [2907] = {.lex_state = 576}, - [2908] = {.lex_state = 576}, - [2909] = {.lex_state = 2}, - [2910] = {.lex_state = 2}, - [2911] = {.lex_state = 576}, - [2912] = {.lex_state = 2}, - [2913] = {.lex_state = 2}, + [2906] = {.lex_state = 573}, + [2907] = {.lex_state = 573}, + [2908] = {.lex_state = 621}, + [2909] = {.lex_state = 621}, + [2910] = {.lex_state = 657}, + [2911] = {.lex_state = 2}, + [2912] = {.lex_state = 621}, + [2913] = {.lex_state = 629}, [2914] = {.lex_state = 2}, - [2915] = {.lex_state = 577}, - [2916] = {.lex_state = 2}, - [2917] = {.lex_state = 624}, - [2918] = {.lex_state = 577}, - [2919] = {.lex_state = 577}, - [2920] = {.lex_state = 624}, - [2921] = {.lex_state = 624}, - [2922] = {.lex_state = 576}, - [2923] = {.lex_state = 61}, - [2924] = {.lex_state = 2}, + [2915] = {.lex_state = 2}, + [2916] = {.lex_state = 657}, + [2917] = {.lex_state = 572}, + [2918] = {.lex_state = 657}, + [2919] = {.lex_state = 573}, + [2920] = {.lex_state = 657}, + [2921] = {.lex_state = 2}, + [2922] = {.lex_state = 2}, + [2923] = {.lex_state = 621}, + [2924] = {.lex_state = 573}, [2925] = {.lex_state = 2}, - [2926] = {.lex_state = 624}, - [2927] = {.lex_state = 60}, - [2928] = {.lex_state = 60}, - [2929] = {.lex_state = 624}, - [2930] = {.lex_state = 624}, - [2931] = {.lex_state = 624}, + [2926] = {.lex_state = 111}, + [2927] = {.lex_state = 2}, + [2928] = {.lex_state = 572}, + [2929] = {.lex_state = 657}, + [2930] = {.lex_state = 111}, + [2931] = {.lex_state = 657}, [2932] = {.lex_state = 624}, - [2933] = {.lex_state = 624}, + [2933] = {.lex_state = 2}, [2934] = {.lex_state = 2}, - [2935] = {.lex_state = 630}, - [2936] = {.lex_state = 2}, - [2937] = {.lex_state = 577}, - [2938] = {.lex_state = 577}, - [2939] = {.lex_state = 577}, - [2940] = {.lex_state = 576}, - [2941] = {.lex_state = 66}, - [2942] = {.lex_state = 2}, + [2935] = {.lex_state = 2}, + [2936] = {.lex_state = 569}, + [2937] = {.lex_state = 2}, + [2938] = {.lex_state = 111}, + [2939] = {.lex_state = 2}, + [2940] = {.lex_state = 621}, + [2941] = {.lex_state = 657}, + [2942] = {.lex_state = 572}, [2943] = {.lex_state = 2}, - [2944] = {.lex_state = 577}, - [2945] = {.lex_state = 60}, - [2946] = {.lex_state = 577}, - [2947] = {.lex_state = 624}, - [2948] = {.lex_state = 60}, - [2949] = {.lex_state = 190}, - [2950] = {.lex_state = 577}, + [2944] = {.lex_state = 624}, + [2945] = {.lex_state = 657}, + [2946] = {.lex_state = 657}, + [2947] = {.lex_state = 572}, + [2948] = {.lex_state = 2}, + [2949] = {.lex_state = 2}, + [2950] = {.lex_state = 657}, [2951] = {.lex_state = 2}, - [2952] = {.lex_state = 2}, - [2953] = {.lex_state = 577}, - [2954] = {.lex_state = 2}, - [2955] = {.lex_state = 624}, - [2956] = {.lex_state = 624}, - [2957] = {.lex_state = 624}, - [2958] = {.lex_state = 576}, - [2959] = {.lex_state = 576}, - [2960] = {.lex_state = 65}, - [2961] = {.lex_state = 60}, - [2962] = {.lex_state = 624}, - [2963] = {.lex_state = 577}, - [2964] = {.lex_state = 577}, - [2965] = {.lex_state = 576}, - [2966] = {.lex_state = 577}, - [2967] = {.lex_state = 624}, - [2968] = {.lex_state = 624}, - [2969] = {.lex_state = 60}, - [2970] = {.lex_state = 624}, - [2971] = {.lex_state = 624}, - [2972] = {.lex_state = 624}, - [2973] = {.lex_state = 624}, - [2974] = {.lex_state = 624}, - [2975] = {.lex_state = 624}, - [2976] = {.lex_state = 577}, - [2977] = {.lex_state = 624}, - [2978] = {.lex_state = 64}, - [2979] = {.lex_state = 624}, - [2980] = {.lex_state = 64}, - [2981] = {.lex_state = 624}, - [2982] = {.lex_state = 624}, - [2983] = {.lex_state = 64}, - [2984] = {.lex_state = 64}, - [2985] = {.lex_state = 624}, - [2986] = {.lex_state = 577}, - [2987] = {.lex_state = 624}, - [2988] = {.lex_state = 624}, - [2989] = {.lex_state = 64}, + [2952] = {.lex_state = 657}, + [2953] = {.lex_state = 657}, + [2954] = {.lex_state = 573}, + [2955] = {.lex_state = 573}, + [2956] = {.lex_state = 573}, + [2957] = {.lex_state = 617}, + [2958] = {.lex_state = 2}, + [2959] = {.lex_state = 111}, + [2960] = {.lex_state = 651}, + [2961] = {.lex_state = 111}, + [2962] = {.lex_state = 621}, + [2963] = {.lex_state = 621}, + [2964] = {.lex_state = 621}, + [2965] = {.lex_state = 573}, + [2966] = {.lex_state = 2}, + [2967] = {.lex_state = 573}, + [2968] = {.lex_state = 573}, + [2969] = {.lex_state = 569}, + [2970] = {.lex_state = 573}, + [2971] = {.lex_state = 67}, + [2972] = {.lex_state = 125, .external_lex_state = 2}, + [2973] = {.lex_state = 573}, + [2974] = {.lex_state = 573}, + [2975] = {.lex_state = 573}, + [2976] = {.lex_state = 2}, + [2977] = {.lex_state = 64}, + [2978] = {.lex_state = 572}, + [2979] = {.lex_state = 573}, + [2980] = {.lex_state = 573}, + [2981] = {.lex_state = 569}, + [2982] = {.lex_state = 2}, + [2983] = {.lex_state = 621}, + [2984] = {.lex_state = 111}, + [2985] = {.lex_state = 573}, + [2986] = {.lex_state = 2}, + [2987] = {.lex_state = 572}, + [2988] = {.lex_state = 573}, + [2989] = {.lex_state = 573}, [2990] = {.lex_state = 2}, - [2991] = {.lex_state = 64}, - [2992] = {.lex_state = 2}, - [2993] = {.lex_state = 64}, - [2994] = {.lex_state = 64}, - [2995] = {.lex_state = 64}, - [2996] = {.lex_state = 624}, - [2997] = {.lex_state = 624}, - [2998] = {.lex_state = 624}, - [2999] = {.lex_state = 67}, - [3000] = {.lex_state = 2}, - [3001] = {.lex_state = 658}, + [2991] = {.lex_state = 573}, + [2992] = {.lex_state = 573}, + [2993] = {.lex_state = 573}, + [2994] = {.lex_state = 629}, + [2995] = {.lex_state = 629}, + [2996] = {.lex_state = 572}, + [2997] = {.lex_state = 573}, + [2998] = {.lex_state = 573}, + [2999] = {.lex_state = 573}, + [3000] = {.lex_state = 629}, + [3001] = {.lex_state = 2}, [3002] = {.lex_state = 2}, - [3003] = {.lex_state = 624}, - [3004] = {.lex_state = 69}, - [3005] = {.lex_state = 624}, - [3006] = {.lex_state = 624}, - [3007] = {.lex_state = 64}, - [3008] = {.lex_state = 624}, - [3009] = {.lex_state = 624}, - [3010] = {.lex_state = 624}, - [3011] = {.lex_state = 624}, - [3012] = {.lex_state = 624}, - [3013] = {.lex_state = 624}, - [3014] = {.lex_state = 64}, - [3015] = {.lex_state = 64}, - [3016] = {.lex_state = 624}, - [3017] = {.lex_state = 624}, - [3018] = {.lex_state = 624}, - [3019] = {.lex_state = 624}, + [3003] = {.lex_state = 621}, + [3004] = {.lex_state = 624}, + [3005] = {.lex_state = 629}, + [3006] = {.lex_state = 629}, + [3007] = {.lex_state = 2}, + [3008] = {.lex_state = 573}, + [3009] = {.lex_state = 572}, + [3010] = {.lex_state = 629}, + [3011] = {.lex_state = 2}, + [3012] = {.lex_state = 572}, + [3013] = {.lex_state = 572}, + [3014] = {.lex_state = 573}, + [3015] = {.lex_state = 573}, + [3016] = {.lex_state = 73}, + [3017] = {.lex_state = 573}, + [3018] = {.lex_state = 629}, + [3019] = {.lex_state = 657}, [3020] = {.lex_state = 624}, - [3021] = {.lex_state = 624}, - [3022] = {.lex_state = 624}, + [3021] = {.lex_state = 657}, + [3022] = {.lex_state = 64}, [3023] = {.lex_state = 624}, - [3024] = {.lex_state = 60}, - [3025] = {.lex_state = 624}, - [3026] = {.lex_state = 2}, - [3027] = {.lex_state = 624}, - [3028] = {.lex_state = 577}, - [3029] = {.lex_state = 577}, - [3030] = {.lex_state = 624}, - [3031] = {.lex_state = 624}, - [3032] = {.lex_state = 2}, + [3024] = {.lex_state = 2}, + [3025] = {.lex_state = 573}, + [3026] = {.lex_state = 629}, + [3027] = {.lex_state = 2}, + [3028] = {.lex_state = 573}, + [3029] = {.lex_state = 2}, + [3030] = {.lex_state = 2}, + [3031] = {.lex_state = 621}, + [3032] = {.lex_state = 624}, [3033] = {.lex_state = 624}, - [3034] = {.lex_state = 2}, - [3035] = {.lex_state = 2}, - [3036] = {.lex_state = 624}, + [3034] = {.lex_state = 624}, + [3035] = {.lex_state = 573}, + [3036] = {.lex_state = 49, .external_lex_state = 2}, [3037] = {.lex_state = 624}, - [3038] = {.lex_state = 2}, - [3039] = {.lex_state = 69}, - [3040] = {.lex_state = 577}, - [3041] = {.lex_state = 577}, - [3042] = {.lex_state = 577}, - [3043] = {.lex_state = 624}, - [3044] = {.lex_state = 577}, - [3045] = {.lex_state = 630}, - [3046] = {.lex_state = 576}, - [3047] = {.lex_state = 577}, - [3048] = {.lex_state = 577}, - [3049] = {.lex_state = 624}, + [3038] = {.lex_state = 573}, + [3039] = {.lex_state = 70}, + [3040] = {.lex_state = 624}, + [3041] = {.lex_state = 629}, + [3042] = {.lex_state = 573}, + [3043] = {.lex_state = 573}, + [3044] = {.lex_state = 621}, + [3045] = {.lex_state = 624}, + [3046] = {.lex_state = 624}, + [3047] = {.lex_state = 2}, + [3048] = {.lex_state = 2}, + [3049] = {.lex_state = 2}, [3050] = {.lex_state = 624}, - [3051] = {.lex_state = 624}, - [3052] = {.lex_state = 624}, + [3051] = {.lex_state = 621}, + [3052] = {.lex_state = 2}, [3053] = {.lex_state = 2}, - [3054] = {.lex_state = 2}, - [3055] = {.lex_state = 64}, - [3056] = {.lex_state = 2}, - [3057] = {.lex_state = 577}, + [3054] = {.lex_state = 573}, + [3055] = {.lex_state = 621}, + [3056] = {.lex_state = 70}, + [3057] = {.lex_state = 2}, [3058] = {.lex_state = 2}, [3059] = {.lex_state = 624}, - [3060] = {.lex_state = 624}, - [3061] = {.lex_state = 2}, - [3062] = {.lex_state = 2}, - [3063] = {.lex_state = 624}, - [3064] = {.lex_state = 630}, - [3065] = {.lex_state = 48, .external_lex_state = 2}, - [3066] = {.lex_state = 624}, + [3060] = {.lex_state = 2}, + [3061] = {.lex_state = 572}, + [3062] = {.lex_state = 573}, + [3063] = {.lex_state = 621}, + [3064] = {.lex_state = 624}, + [3065] = {.lex_state = 624}, + [3066] = {.lex_state = 572}, [3067] = {.lex_state = 624}, [3068] = {.lex_state = 2}, - [3069] = {.lex_state = 577}, + [3069] = {.lex_state = 2}, [3070] = {.lex_state = 624}, - [3071] = {.lex_state = 577}, - [3072] = {.lex_state = 2}, - [3073] = {.lex_state = 624}, - [3074] = {.lex_state = 624}, - [3075] = {.lex_state = 66}, - [3076] = {.lex_state = 577}, - [3077] = {.lex_state = 2}, - [3078] = {.lex_state = 624}, - [3079] = {.lex_state = 577}, - [3080] = {.lex_state = 184}, - [3081] = {.lex_state = 624}, - [3082] = {.lex_state = 66}, - [3083] = {.lex_state = 2}, - [3084] = {.lex_state = 624}, + [3071] = {.lex_state = 624}, + [3072] = {.lex_state = 624}, + [3073] = {.lex_state = 573}, + [3074] = {.lex_state = 657}, + [3075] = {.lex_state = 573}, + [3076] = {.lex_state = 573}, + [3077] = {.lex_state = 624}, + [3078] = {.lex_state = 67}, + [3079] = {.lex_state = 573}, + [3080] = {.lex_state = 573}, + [3081] = {.lex_state = 621}, + [3082] = {.lex_state = 573}, + [3083] = {.lex_state = 573}, + [3084] = {.lex_state = 621}, [3085] = {.lex_state = 624}, - [3086] = {.lex_state = 624}, - [3087] = {.lex_state = 577}, - [3088] = {.lex_state = 2}, - [3089] = {.lex_state = 624}, - [3090] = {.lex_state = 68}, - [3091] = {.lex_state = 624}, - [3092] = {.lex_state = 624}, - [3093] = {.lex_state = 2}, + [3086] = {.lex_state = 573}, + [3087] = {.lex_state = 2}, + [3088] = {.lex_state = 573}, + [3089] = {.lex_state = 2}, + [3090] = {.lex_state = 573}, + [3091] = {.lex_state = 2}, + [3092] = {.lex_state = 2}, + [3093] = {.lex_state = 61}, [3094] = {.lex_state = 624}, - [3095] = {.lex_state = 2}, - [3096] = {.lex_state = 577}, + [3095] = {.lex_state = 624}, + [3096] = {.lex_state = 621}, [3097] = {.lex_state = 624}, - [3098] = {.lex_state = 624}, - [3099] = {.lex_state = 187}, - [3100] = {.lex_state = 577}, - [3101] = {.lex_state = 624}, - [3102] = {.lex_state = 577}, - [3103] = {.lex_state = 624}, - [3104] = {.lex_state = 48, .external_lex_state = 2}, + [3098] = {.lex_state = 572}, + [3099] = {.lex_state = 573}, + [3100] = {.lex_state = 624}, + [3101] = {.lex_state = 572}, + [3102] = {.lex_state = 2}, + [3103] = {.lex_state = 2}, + [3104] = {.lex_state = 62}, [3105] = {.lex_state = 2}, - [3106] = {.lex_state = 577}, - [3107] = {.lex_state = 624}, - [3108] = {.lex_state = 630}, - [3109] = {.lex_state = 577}, - [3110] = {.lex_state = 624}, - [3111] = {.lex_state = 624}, + [3106] = {.lex_state = 621}, + [3107] = {.lex_state = 621}, + [3108] = {.lex_state = 61}, + [3109] = {.lex_state = 624}, + [3110] = {.lex_state = 189}, + [3111] = {.lex_state = 573}, [3112] = {.lex_state = 624}, - [3113] = {.lex_state = 577}, - [3114] = {.lex_state = 577}, - [3115] = {.lex_state = 577}, - [3116] = {.lex_state = 2}, - [3117] = {.lex_state = 71}, - [3118] = {.lex_state = 577}, - [3119] = {.lex_state = 190}, - [3120] = {.lex_state = 2}, - [3121] = {.lex_state = 624}, + [3113] = {.lex_state = 624}, + [3114] = {.lex_state = 624}, + [3115] = {.lex_state = 624}, + [3116] = {.lex_state = 573}, + [3117] = {.lex_state = 61}, + [3118] = {.lex_state = 573}, + [3119] = {.lex_state = 573}, + [3120] = {.lex_state = 624}, + [3121] = {.lex_state = 2}, [3122] = {.lex_state = 624}, [3123] = {.lex_state = 624}, [3124] = {.lex_state = 624}, - [3125] = {.lex_state = 624}, - [3126] = {.lex_state = 624}, - [3127] = {.lex_state = 68}, - [3128] = {.lex_state = 64}, - [3129] = {.lex_state = 60}, + [3125] = {.lex_state = 65}, + [3126] = {.lex_state = 621}, + [3127] = {.lex_state = 65}, + [3128] = {.lex_state = 65}, + [3129] = {.lex_state = 624}, [3130] = {.lex_state = 624}, - [3131] = {.lex_state = 2}, + [3131] = {.lex_state = 624}, [3132] = {.lex_state = 624}, - [3133] = {.lex_state = 624}, - [3134] = {.lex_state = 577}, - [3135] = {.lex_state = 624}, - [3136] = {.lex_state = 577}, - [3137] = {.lex_state = 2}, + [3133] = {.lex_state = 65}, + [3134] = {.lex_state = 65}, + [3135] = {.lex_state = 65}, + [3136] = {.lex_state = 65}, + [3137] = {.lex_state = 624}, [3138] = {.lex_state = 624}, - [3139] = {.lex_state = 2}, - [3140] = {.lex_state = 2}, + [3139] = {.lex_state = 624}, + [3140] = {.lex_state = 624}, [3141] = {.lex_state = 624}, - [3142] = {.lex_state = 2}, + [3142] = {.lex_state = 624}, [3143] = {.lex_state = 624}, - [3144] = {.lex_state = 2}, - [3145] = {.lex_state = 577}, - [3146] = {.lex_state = 577}, + [3144] = {.lex_state = 61}, + [3145] = {.lex_state = 68}, + [3146] = {.lex_state = 572}, [3147] = {.lex_state = 624}, [3148] = {.lex_state = 624}, - [3149] = {.lex_state = 70}, - [3150] = {.lex_state = 624}, - [3151] = {.lex_state = 2}, + [3149] = {.lex_state = 621}, + [3150] = {.lex_state = 572}, + [3151] = {.lex_state = 65}, [3152] = {.lex_state = 624}, - [3153] = {.lex_state = 624}, - [3154] = {.lex_state = 66}, + [3153] = {.lex_state = 573}, + [3154] = {.lex_state = 624}, [3155] = {.lex_state = 624}, - [3156] = {.lex_state = 624}, - [3157] = {.lex_state = 60}, - [3158] = {.lex_state = 2}, - [3159] = {.lex_state = 577}, - [3160] = {.lex_state = 66}, - [3161] = {.lex_state = 577}, - [3162] = {.lex_state = 624}, - [3163] = {.lex_state = 624}, - [3164] = {.lex_state = 70}, + [3156] = {.lex_state = 66}, + [3157] = {.lex_state = 65}, + [3158] = {.lex_state = 621}, + [3159] = {.lex_state = 624}, + [3160] = {.lex_state = 65}, + [3161] = {.lex_state = 621}, + [3162] = {.lex_state = 621}, + [3163] = {.lex_state = 621}, + [3164] = {.lex_state = 624}, [3165] = {.lex_state = 624}, - [3166] = {.lex_state = 624}, - [3167] = {.lex_state = 577}, - [3168] = {.lex_state = 624}, - [3169] = {.lex_state = 577}, - [3170] = {.lex_state = 624}, - [3171] = {.lex_state = 2}, - [3172] = {.lex_state = 2}, - [3173] = {.lex_state = 577}, + [3166] = {.lex_state = 621}, + [3167] = {.lex_state = 624}, + [3168] = {.lex_state = 621}, + [3169] = {.lex_state = 65}, + [3170] = {.lex_state = 573}, + [3171] = {.lex_state = 624}, + [3172] = {.lex_state = 624}, + [3173] = {.lex_state = 624}, [3174] = {.lex_state = 2}, - [3175] = {.lex_state = 187}, - [3176] = {.lex_state = 624}, - [3177] = {.lex_state = 624}, - [3178] = {.lex_state = 188}, - [3179] = {.lex_state = 2}, - [3180] = {.lex_state = 624}, + [3175] = {.lex_state = 2}, + [3176] = {.lex_state = 573}, + [3177] = {.lex_state = 65}, + [3178] = {.lex_state = 624}, + [3179] = {.lex_state = 624}, + [3180] = {.lex_state = 61}, [3181] = {.lex_state = 624}, [3182] = {.lex_state = 624}, - [3183] = {.lex_state = 577}, - [3184] = {.lex_state = 577}, - [3185] = {.lex_state = 577}, - [3186] = {.lex_state = 577}, - [3187] = {.lex_state = 577}, - [3188] = {.lex_state = 577}, - [3189] = {.lex_state = 577}, - [3190] = {.lex_state = 577}, - [3191] = {.lex_state = 577}, - [3192] = {.lex_state = 577}, - [3193] = {.lex_state = 577}, - [3194] = {.lex_state = 577}, - [3195] = {.lex_state = 624}, - [3196] = {.lex_state = 624}, - [3197] = {.lex_state = 624}, - [3198] = {.lex_state = 2}, + [3183] = {.lex_state = 624}, + [3184] = {.lex_state = 621}, + [3185] = {.lex_state = 624}, + [3186] = {.lex_state = 624}, + [3187] = {.lex_state = 65}, + [3188] = {.lex_state = 624}, + [3189] = {.lex_state = 624}, + [3190] = {.lex_state = 2}, + [3191] = {.lex_state = 621}, + [3192] = {.lex_state = 624}, + [3193] = {.lex_state = 573}, + [3194] = {.lex_state = 621}, + [3195] = {.lex_state = 621}, + [3196] = {.lex_state = 621}, + [3197] = {.lex_state = 621}, + [3198] = {.lex_state = 624}, [3199] = {.lex_state = 624}, - [3200] = {.lex_state = 184}, - [3201] = {.lex_state = 624}, - [3202] = {.lex_state = 2}, + [3200] = {.lex_state = 573}, + [3201] = {.lex_state = 629}, + [3202] = {.lex_state = 624}, [3203] = {.lex_state = 624}, [3204] = {.lex_state = 624}, - [3205] = {.lex_state = 624}, - [3206] = {.lex_state = 624}, - [3207] = {.lex_state = 577}, - [3208] = {.lex_state = 624}, - [3209] = {.lex_state = 577}, - [3210] = {.lex_state = 624}, - [3211] = {.lex_state = 577}, + [3205] = {.lex_state = 61}, + [3206] = {.lex_state = 2}, + [3207] = {.lex_state = 621}, + [3208] = {.lex_state = 573}, + [3209] = {.lex_state = 621}, + [3210] = {.lex_state = 61}, + [3211] = {.lex_state = 2}, [3212] = {.lex_state = 624}, [3213] = {.lex_state = 624}, - [3214] = {.lex_state = 577}, - [3215] = {.lex_state = 577}, - [3216] = {.lex_state = 2129}, - [3217] = {.lex_state = 577}, - [3218] = {.lex_state = 577}, - [3219] = {.lex_state = 2}, - [3220] = {.lex_state = 2}, - [3221] = {.lex_state = 2}, - [3222] = {.lex_state = 577}, - [3223] = {.lex_state = 577}, - [3224] = {.lex_state = 577}, - [3225] = {.lex_state = 577}, - [3226] = {.lex_state = 2}, - [3227] = {.lex_state = 577}, - [3228] = {.lex_state = 577}, - [3229] = {.lex_state = 577}, - [3230] = {.lex_state = 577}, - [3231] = {.lex_state = 2}, - [3232] = {.lex_state = 577}, - [3233] = {.lex_state = 2}, - [3234] = {.lex_state = 2}, - [3235] = {.lex_state = 190}, - [3236] = {.lex_state = 190}, - [3237] = {.lex_state = 190}, - [3238] = {.lex_state = 630}, - [3239] = {.lex_state = 2}, - [3240] = {.lex_state = 630}, - [3241] = {.lex_state = 2}, - [3242] = {.lex_state = 2}, - [3243] = {.lex_state = 2}, - [3244] = {.lex_state = 2}, - [3245] = {.lex_state = 577}, - [3246] = {.lex_state = 577}, - [3247] = {.lex_state = 577}, - [3248] = {.lex_state = 94}, - [3249] = {.lex_state = 577}, - [3250] = {.lex_state = 577}, - [3251] = {.lex_state = 2}, - [3252] = {.lex_state = 577}, - [3253] = {.lex_state = 98}, - [3254] = {.lex_state = 2}, - [3255] = {.lex_state = 577}, - [3256] = {.lex_state = 2}, - [3257] = {.lex_state = 577}, - [3258] = {.lex_state = 577}, - [3259] = {.lex_state = 577}, - [3260] = {.lex_state = 2}, - [3261] = {.lex_state = 577}, - [3262] = {.lex_state = 577}, - [3263] = {.lex_state = 577}, - [3264] = {.lex_state = 630}, - [3265] = {.lex_state = 577}, - [3266] = {.lex_state = 577}, - [3267] = {.lex_state = 77}, - [3268] = {.lex_state = 130}, - [3269] = {.lex_state = 2}, - [3270] = {.lex_state = 79}, - [3271] = {.lex_state = 2}, - [3272] = {.lex_state = 577}, - [3273] = {.lex_state = 185}, - [3274] = {.lex_state = 2}, - [3275] = {.lex_state = 2}, - [3276] = {.lex_state = 195}, - [3277] = {.lex_state = 190}, - [3278] = {.lex_state = 577}, - [3279] = {.lex_state = 2}, - [3280] = {.lex_state = 577}, - [3281] = {.lex_state = 577}, - [3282] = {.lex_state = 577}, - [3283] = {.lex_state = 577}, - [3284] = {.lex_state = 2}, - [3285] = {.lex_state = 2}, - [3286] = {.lex_state = 185}, - [3287] = {.lex_state = 577}, - [3288] = {.lex_state = 577}, - [3289] = {.lex_state = 577}, - [3290] = {.lex_state = 2}, - [3291] = {.lex_state = 577}, - [3292] = {.lex_state = 630}, - [3293] = {.lex_state = 124}, - [3294] = {.lex_state = 577}, - [3295] = {.lex_state = 577}, - [3296] = {.lex_state = 577}, - [3297] = {.lex_state = 577}, - [3298] = {.lex_state = 203}, - [3299] = {.lex_state = 577}, + [3214] = {.lex_state = 624}, + [3215] = {.lex_state = 183}, + [3216] = {.lex_state = 624}, + [3217] = {.lex_state = 624}, + [3218] = {.lex_state = 2}, + [3219] = {.lex_state = 573}, + [3220] = {.lex_state = 573}, + [3221] = {.lex_state = 624}, + [3222] = {.lex_state = 573}, + [3223] = {.lex_state = 624}, + [3224] = {.lex_state = 624}, + [3225] = {.lex_state = 624}, + [3226] = {.lex_state = 624}, + [3227] = {.lex_state = 189}, + [3228] = {.lex_state = 624}, + [3229] = {.lex_state = 183}, + [3230] = {.lex_state = 624}, + [3231] = {.lex_state = 624}, + [3232] = {.lex_state = 624}, + [3233] = {.lex_state = 573}, + [3234] = {.lex_state = 624}, + [3235] = {.lex_state = 67}, + [3236] = {.lex_state = 67}, + [3237] = {.lex_state = 67}, + [3238] = {.lex_state = 573}, + [3239] = {.lex_state = 624}, + [3240] = {.lex_state = 621}, + [3241] = {.lex_state = 624}, + [3242] = {.lex_state = 573}, + [3243] = {.lex_state = 624}, + [3244] = {.lex_state = 573}, + [3245] = {.lex_state = 624}, + [3246] = {.lex_state = 621}, + [3247] = {.lex_state = 71}, + [3248] = {.lex_state = 624}, + [3249] = {.lex_state = 624}, + [3250] = {.lex_state = 624}, + [3251] = {.lex_state = 624}, + [3252] = {.lex_state = 71}, + [3253] = {.lex_state = 2}, + [3254] = {.lex_state = 624}, + [3255] = {.lex_state = 573}, + [3256] = {.lex_state = 621}, + [3257] = {.lex_state = 573}, + [3258] = {.lex_state = 624}, + [3259] = {.lex_state = 624}, + [3260] = {.lex_state = 624}, + [3261] = {.lex_state = 624}, + [3262] = {.lex_state = 69}, + [3263] = {.lex_state = 621}, + [3264] = {.lex_state = 624}, + [3265] = {.lex_state = 624}, + [3266] = {.lex_state = 61}, + [3267] = {.lex_state = 624}, + [3268] = {.lex_state = 621}, + [3269] = {.lex_state = 621}, + [3270] = {.lex_state = 69}, + [3271] = {.lex_state = 624}, + [3272] = {.lex_state = 2}, + [3273] = {.lex_state = 624}, + [3274] = {.lex_state = 624}, + [3275] = {.lex_state = 624}, + [3276] = {.lex_state = 624}, + [3277] = {.lex_state = 573}, + [3278] = {.lex_state = 573}, + [3279] = {.lex_state = 624}, + [3280] = {.lex_state = 624}, + [3281] = {.lex_state = 624}, + [3282] = {.lex_state = 624}, + [3283] = {.lex_state = 621}, + [3284] = {.lex_state = 624}, + [3285] = {.lex_state = 624}, + [3286] = {.lex_state = 624}, + [3287] = {.lex_state = 621}, + [3288] = {.lex_state = 573}, + [3289] = {.lex_state = 573}, + [3290] = {.lex_state = 624}, + [3291] = {.lex_state = 573}, + [3292] = {.lex_state = 573}, + [3293] = {.lex_state = 624}, + [3294] = {.lex_state = 624}, + [3295] = {.lex_state = 67}, + [3296] = {.lex_state = 624}, + [3297] = {.lex_state = 624}, + [3298] = {.lex_state = 624}, + [3299] = {.lex_state = 2}, [3300] = {.lex_state = 2}, - [3301] = {.lex_state = 577}, - [3302] = {.lex_state = 577}, - [3303] = {.lex_state = 577}, - [3304] = {.lex_state = 2}, - [3305] = {.lex_state = 2}, + [3301] = {.lex_state = 2}, + [3302] = {.lex_state = 624}, + [3303] = {.lex_state = 573}, + [3304] = {.lex_state = 621}, + [3305] = {.lex_state = 624}, [3306] = {.lex_state = 2}, - [3307] = {.lex_state = 577}, - [3308] = {.lex_state = 577}, - [3309] = {.lex_state = 577}, - [3310] = {.lex_state = 577}, - [3311] = {.lex_state = 577}, - [3312] = {.lex_state = 577}, - [3313] = {.lex_state = 577}, + [3307] = {.lex_state = 2}, + [3308] = {.lex_state = 573}, + [3309] = {.lex_state = 2}, + [3310] = {.lex_state = 187}, + [3311] = {.lex_state = 621}, + [3312] = {.lex_state = 573}, + [3313] = {.lex_state = 2}, [3314] = {.lex_state = 2}, - [3315] = {.lex_state = 577}, - [3316] = {.lex_state = 577}, - [3317] = {.lex_state = 577}, - [3318] = {.lex_state = 577}, - [3319] = {.lex_state = 577}, - [3320] = {.lex_state = 577}, - [3321] = {.lex_state = 577}, - [3322] = {.lex_state = 577}, - [3323] = {.lex_state = 577}, - [3324] = {.lex_state = 577}, - [3325] = {.lex_state = 577}, - [3326] = {.lex_state = 577}, - [3327] = {.lex_state = 577}, - [3328] = {.lex_state = 2}, - [3329] = {.lex_state = 577}, - [3330] = {.lex_state = 577}, - [3331] = {.lex_state = 183}, - [3332] = {.lex_state = 577}, - [3333] = {.lex_state = 577}, - [3334] = {.lex_state = 577}, - [3335] = {.lex_state = 190}, - [3336] = {.lex_state = 190}, - [3337] = {.lex_state = 190}, - [3338] = {.lex_state = 190}, - [3339] = {.lex_state = 2129}, - [3340] = {.lex_state = 577}, - [3341] = {.lex_state = 577}, - [3342] = {.lex_state = 186}, - [3343] = {.lex_state = 2}, - [3344] = {.lex_state = 184}, - [3345] = {.lex_state = 2}, - [3346] = {.lex_state = 577}, + [3315] = {.lex_state = 621}, + [3316] = {.lex_state = 2}, + [3317] = {.lex_state = 2}, + [3318] = {.lex_state = 621}, + [3319] = {.lex_state = 2}, + [3320] = {.lex_state = 624}, + [3321] = {.lex_state = 2}, + [3322] = {.lex_state = 629}, + [3323] = {.lex_state = 73}, + [3324] = {.lex_state = 49, .external_lex_state = 2}, + [3325] = {.lex_state = 61}, + [3326] = {.lex_state = 573}, + [3327] = {.lex_state = 2}, + [3328] = {.lex_state = 573}, + [3329] = {.lex_state = 573}, + [3330] = {.lex_state = 573}, + [3331] = {.lex_state = 573}, + [3332] = {.lex_state = 573}, + [3333] = {.lex_state = 573}, + [3334] = {.lex_state = 573}, + [3335] = {.lex_state = 573}, + [3336] = {.lex_state = 573}, + [3337] = {.lex_state = 573}, + [3338] = {.lex_state = 573}, + [3339] = {.lex_state = 186}, + [3340] = {.lex_state = 624}, + [3341] = {.lex_state = 624}, + [3342] = {.lex_state = 624}, + [3343] = {.lex_state = 573}, + [3344] = {.lex_state = 624}, + [3345] = {.lex_state = 573}, + [3346] = {.lex_state = 621}, [3347] = {.lex_state = 2}, - [3348] = {.lex_state = 196}, - [3349] = {.lex_state = 577}, - [3350] = {.lex_state = 204}, - [3351] = {.lex_state = 2}, - [3352] = {.lex_state = 577}, - [3353] = {.lex_state = 186}, - [3354] = {.lex_state = 577}, - [3355] = {.lex_state = 611}, + [3348] = {.lex_state = 573}, + [3349] = {.lex_state = 624}, + [3350] = {.lex_state = 624}, + [3351] = {.lex_state = 621}, + [3352] = {.lex_state = 573}, + [3353] = {.lex_state = 2}, + [3354] = {.lex_state = 186}, + [3355] = {.lex_state = 624}, [3356] = {.lex_state = 2}, - [3357] = {.lex_state = 208}, - [3358] = {.lex_state = 80}, - [3359] = {.lex_state = 611}, - [3360] = {.lex_state = 205}, - [3361] = {.lex_state = 189}, - [3362] = {.lex_state = 95}, + [3357] = {.lex_state = 573}, + [3358] = {.lex_state = 573}, + [3359] = {.lex_state = 573}, + [3360] = {.lex_state = 75}, + [3361] = {.lex_state = 573}, + [3362] = {.lex_state = 624}, [3363] = {.lex_state = 2}, - [3364] = {.lex_state = 234}, - [3365] = {.lex_state = 577}, - [3366] = {.lex_state = 81}, - [3367] = {.lex_state = 2}, - [3368] = {.lex_state = 100}, - [3369] = {.lex_state = 124}, - [3370] = {.lex_state = 205}, + [3364] = {.lex_state = 624}, + [3365] = {.lex_state = 202}, + [3366] = {.lex_state = 2}, + [3367] = {.lex_state = 573}, + [3368] = {.lex_state = 573}, + [3369] = {.lex_state = 2}, + [3370] = {.lex_state = 573}, [3371] = {.lex_state = 2}, - [3372] = {.lex_state = 130}, - [3373] = {.lex_state = 100}, + [3372] = {.lex_state = 573}, + [3373] = {.lex_state = 573}, [3374] = {.lex_state = 2}, - [3375] = {.lex_state = 581}, - [3376] = {.lex_state = 130}, - [3377] = {.lex_state = 130}, - [3378] = {.lex_state = 124}, - [3379] = {.lex_state = 130}, - [3380] = {.lex_state = 124}, - [3381] = {.lex_state = 611}, - [3382] = {.lex_state = 130}, - [3383] = {.lex_state = 130}, - [3384] = {.lex_state = 2}, - [3385] = {.lex_state = 189}, - [3386] = {.lex_state = 124}, - [3387] = {.lex_state = 190}, - [3388] = {.lex_state = 80}, - [3389] = {.lex_state = 190}, - [3390] = {.lex_state = 99}, + [3375] = {.lex_state = 2}, + [3376] = {.lex_state = 185}, + [3377] = {.lex_state = 629}, + [3378] = {.lex_state = 629}, + [3379] = {.lex_state = 573}, + [3380] = {.lex_state = 573}, + [3381] = {.lex_state = 573}, + [3382] = {.lex_state = 2}, + [3383] = {.lex_state = 573}, + [3384] = {.lex_state = 194}, + [3385] = {.lex_state = 2}, + [3386] = {.lex_state = 573}, + [3387] = {.lex_state = 573}, + [3388] = {.lex_state = 2}, + [3389] = {.lex_state = 2}, + [3390] = {.lex_state = 2}, [3391] = {.lex_state = 2}, - [3392] = {.lex_state = 197}, - [3393] = {.lex_state = 611}, - [3394] = {.lex_state = 2}, - [3395] = {.lex_state = 577}, - [3396] = {.lex_state = 611}, - [3397] = {.lex_state = 219}, - [3398] = {.lex_state = 206}, - [3399] = {.lex_state = 206}, - [3400] = {.lex_state = 235}, - [3401] = {.lex_state = 2130}, - [3402] = {.lex_state = 1727, .external_lex_state = 2}, - [3403] = {.lex_state = 1727, .external_lex_state = 2}, - [3404] = {.lex_state = 1727, .external_lex_state = 2}, - [3405] = {.lex_state = 2071}, - [3406] = {.lex_state = 2071}, - [3407] = {.lex_state = 81}, - [3408] = {.lex_state = 1727, .external_lex_state = 2}, - [3409] = {.lex_state = 2130}, - [3410] = {.lex_state = 2130}, - [3411] = {.lex_state = 2071}, - [3412] = {.lex_state = 101}, - [3413] = {.lex_state = 82}, - [3414] = {.lex_state = 81}, - [3415] = {.lex_state = 1727, .external_lex_state = 2}, - [3416] = {.lex_state = 199}, - [3417] = {.lex_state = 2}, - [3418] = {.lex_state = 221}, - [3419] = {.lex_state = 236}, - [3420] = {.lex_state = 2071}, - [3421] = {.lex_state = 2071}, - [3422] = {.lex_state = 1727, .external_lex_state = 2}, - [3423] = {.lex_state = 209}, - [3424] = {.lex_state = 207}, - [3425] = {.lex_state = 102}, - [3426] = {.lex_state = 104}, - [3427] = {.lex_state = 581}, - [3428] = {.lex_state = 581}, - [3429] = {.lex_state = 207}, - [3430] = {.lex_state = 2071}, - [3431] = {.lex_state = 2071}, - [3432] = {.lex_state = 581}, - [3433] = {.lex_state = 1727, .external_lex_state = 2}, - [3434] = {.lex_state = 581}, - [3435] = {.lex_state = 130}, - [3436] = {.lex_state = 2071}, - [3437] = {.lex_state = 2071}, - [3438] = {.lex_state = 1727, .external_lex_state = 2}, - [3439] = {.lex_state = 198}, - [3440] = {.lex_state = 236}, - [3441] = {.lex_state = 1727, .external_lex_state = 2}, - [3442] = {.lex_state = 2071}, - [3443] = {.lex_state = 2071}, - [3444] = {.lex_state = 1727, .external_lex_state = 2}, - [3445] = {.lex_state = 101}, - [3446] = {.lex_state = 2071}, - [3447] = {.lex_state = 2071}, - [3448] = {.lex_state = 102}, - [3449] = {.lex_state = 2175}, - [3450] = {.lex_state = 220}, - [3451] = {.lex_state = 2071}, - [3452] = {.lex_state = 207}, - [3453] = {.lex_state = 2071}, - [3454] = {.lex_state = 1727, .external_lex_state = 2}, - [3455] = {.lex_state = 2071}, - [3456] = {.lex_state = 207}, - [3457] = {.lex_state = 2175}, - [3458] = {.lex_state = 2071}, - [3459] = {.lex_state = 1727, .external_lex_state = 2}, - [3460] = {.lex_state = 220}, - [3461] = {.lex_state = 2175}, - [3462] = {.lex_state = 2175}, - [3463] = {.lex_state = 2071}, - [3464] = {.lex_state = 2071}, - [3465] = {.lex_state = 2071}, - [3466] = {.lex_state = 2071}, - [3467] = {.lex_state = 1727, .external_lex_state = 2}, - [3468] = {.lex_state = 2071}, - [3469] = {.lex_state = 2071}, - [3470] = {.lex_state = 78}, - [3471] = {.lex_state = 2071}, - [3472] = {.lex_state = 2071}, - [3473] = {.lex_state = 2071}, - [3474] = {.lex_state = 2071}, - [3475] = {.lex_state = 2071}, - [3476] = {.lex_state = 1727, .external_lex_state = 2}, - [3477] = {.lex_state = 1727, .external_lex_state = 2}, - [3478] = {.lex_state = 2130}, - [3479] = {.lex_state = 1727, .external_lex_state = 2}, - [3480] = {.lex_state = 96}, - [3481] = {.lex_state = 208}, - [3482] = {.lex_state = 210}, - [3483] = {.lex_state = 1727, .external_lex_state = 2}, - [3484] = {.lex_state = 208}, - [3485] = {.lex_state = 208}, - [3486] = {.lex_state = 1727, .external_lex_state = 2}, - [3487] = {.lex_state = 102}, - [3488] = {.lex_state = 102}, - [3489] = {.lex_state = 81}, - [3490] = {.lex_state = 1727, .external_lex_state = 2}, - [3491] = {.lex_state = 221}, - [3492] = {.lex_state = 103}, - [3493] = {.lex_state = 89}, - [3494] = {.lex_state = 581}, - [3495] = {.lex_state = 581}, - [3496] = {.lex_state = 89}, - [3497] = {.lex_state = 221}, - [3498] = {.lex_state = 581}, - [3499] = {.lex_state = 581}, - [3500] = {.lex_state = 211}, - [3501] = {.lex_state = 103}, - [3502] = {.lex_state = 581}, - [3503] = {.lex_state = 581}, - [3504] = {.lex_state = 581}, - [3505] = {.lex_state = 131}, - [3506] = {.lex_state = 581}, - [3507] = {.lex_state = 581}, - [3508] = {.lex_state = 131}, - [3509] = {.lex_state = 581}, - [3510] = {.lex_state = 581}, - [3511] = {.lex_state = 131}, - [3512] = {.lex_state = 581}, - [3513] = {.lex_state = 581}, - [3514] = {.lex_state = 105}, - [3515] = {.lex_state = 581}, - [3516] = {.lex_state = 581}, - [3517] = {.lex_state = 581}, - [3518] = {.lex_state = 241}, - [3519] = {.lex_state = 581}, - [3520] = {.lex_state = 581}, - [3521] = {.lex_state = 581}, - [3522] = {.lex_state = 581}, - [3523] = {.lex_state = 581}, - [3524] = {.lex_state = 581}, - [3525] = {.lex_state = 581}, - [3526] = {.lex_state = 81}, - [3527] = {.lex_state = 581}, - [3528] = {.lex_state = 131}, - [3529] = {.lex_state = 581}, - [3530] = {.lex_state = 581}, - [3531] = {.lex_state = 581}, - [3532] = {.lex_state = 625}, - [3533] = {.lex_state = 581}, - [3534] = {.lex_state = 106}, - [3535] = {.lex_state = 581}, - [3536] = {.lex_state = 106}, - [3537] = {.lex_state = 581}, - [3538] = {.lex_state = 237}, - [3539] = {.lex_state = 581}, - [3540] = {.lex_state = 581}, - [3541] = {.lex_state = 237}, - [3542] = {.lex_state = 221}, - [3543] = {.lex_state = 581}, - [3544] = {.lex_state = 237}, - [3545] = {.lex_state = 581}, - [3546] = {.lex_state = 237}, - [3547] = {.lex_state = 581}, - [3548] = {.lex_state = 83}, - [3549] = {.lex_state = 103}, - [3550] = {.lex_state = 581}, - [3551] = {.lex_state = 581}, - [3552] = {.lex_state = 581}, - [3553] = {.lex_state = 211}, - [3554] = {.lex_state = 97}, - [3555] = {.lex_state = 208}, - [3556] = {.lex_state = 581}, - [3557] = {.lex_state = 581}, - [3558] = {.lex_state = 581}, - [3559] = {.lex_state = 222}, - [3560] = {.lex_state = 131}, - [3561] = {.lex_state = 103}, - [3562] = {.lex_state = 89}, - [3563] = {.lex_state = 83}, - [3564] = {.lex_state = 247}, - [3565] = {.lex_state = 213}, - [3566] = {.lex_state = 581}, - [3567] = {.lex_state = 581}, - [3568] = {.lex_state = 131}, - [3569] = {.lex_state = 213}, - [3570] = {.lex_state = 625}, - [3571] = {.lex_state = 200}, - [3572] = {.lex_state = 89}, - [3573] = {.lex_state = 245}, - [3574] = {.lex_state = 245}, - [3575] = {.lex_state = 108}, - [3576] = {.lex_state = 245}, - [3577] = {.lex_state = 107}, - [3578] = {.lex_state = 212}, - [3579] = {.lex_state = 107}, - [3580] = {.lex_state = 245}, - [3581] = {.lex_state = 129}, - [3582] = {.lex_state = 2}, - [3583] = {.lex_state = 212}, - [3584] = {.lex_state = 212}, - [3585] = {.lex_state = 107}, - [3586] = {.lex_state = 245}, - [3587] = {.lex_state = 245}, - [3588] = {.lex_state = 107}, - [3589] = {.lex_state = 248}, - [3590] = {.lex_state = 223}, - [3591] = {.lex_state = 578}, - [3592] = {.lex_state = 89}, - [3593] = {.lex_state = 89}, - [3594] = {.lex_state = 245}, - [3595] = {.lex_state = 108}, - [3596] = {.lex_state = 84}, - [3597] = {.lex_state = 84}, - [3598] = {.lex_state = 84}, - [3599] = {.lex_state = 277}, - [3600] = {.lex_state = 107}, - [3601] = {.lex_state = 248}, - [3602] = {.lex_state = 245}, - [3603] = {.lex_state = 214}, - [3604] = {.lex_state = 223}, - [3605] = {.lex_state = 245}, - [3606] = {.lex_state = 214}, - [3607] = {.lex_state = 245}, - [3608] = {.lex_state = 84}, - [3609] = {.lex_state = 259}, - [3610] = {.lex_state = 131}, - [3611] = {.lex_state = 242}, - [3612] = {.lex_state = 245}, - [3613] = {.lex_state = 578}, - [3614] = {.lex_state = 84}, - [3615] = {.lex_state = 245}, - [3616] = {.lex_state = 214}, - [3617] = {.lex_state = 214}, - [3618] = {.lex_state = 214}, - [3619] = {.lex_state = 245}, - [3620] = {.lex_state = 129}, - [3621] = {.lex_state = 131}, - [3622] = {.lex_state = 243}, - [3623] = {.lex_state = 276}, - [3624] = {.lex_state = 131}, - [3625] = {.lex_state = 578}, - [3626] = {.lex_state = 224}, - [3627] = {.lex_state = 46}, - [3628] = {.lex_state = 46}, - [3629] = {.lex_state = 46}, - [3630] = {.lex_state = 86}, - [3631] = {.lex_state = 110}, - [3632] = {.lex_state = 124}, - [3633] = {.lex_state = 46}, - [3634] = {.lex_state = 578}, - [3635] = {.lex_state = 578}, - [3636] = {.lex_state = 578}, - [3637] = {.lex_state = 215}, - [3638] = {.lex_state = 124}, - [3639] = {.lex_state = 224}, - [3640] = {.lex_state = 131}, - [3641] = {.lex_state = 46}, - [3642] = {.lex_state = 46}, - [3643] = {.lex_state = 246}, - [3644] = {.lex_state = 260}, - [3645] = {.lex_state = 109}, - [3646] = {.lex_state = 31}, - [3647] = {.lex_state = 124}, - [3648] = {.lex_state = 46}, - [3649] = {.lex_state = 224}, - [3650] = {.lex_state = 31}, - [3651] = {.lex_state = 46}, - [3652] = {.lex_state = 249}, - [3653] = {.lex_state = 89}, - [3654] = {.lex_state = 46}, - [3655] = {.lex_state = 124}, - [3656] = {.lex_state = 31}, - [3657] = {.lex_state = 46}, - [3658] = {.lex_state = 46}, - [3659] = {.lex_state = 46}, - [3660] = {.lex_state = 129}, - [3661] = {.lex_state = 124}, - [3662] = {.lex_state = 276}, - [3663] = {.lex_state = 124}, - [3664] = {.lex_state = 124}, - [3665] = {.lex_state = 31}, - [3666] = {.lex_state = 46}, - [3667] = {.lex_state = 131}, - [3668] = {.lex_state = 131}, - [3669] = {.lex_state = 124}, - [3670] = {.lex_state = 31}, - [3671] = {.lex_state = 277}, - [3672] = {.lex_state = 207}, - [3673] = {.lex_state = 212}, - [3674] = {.lex_state = 46}, - [3675] = {.lex_state = 31}, - [3676] = {.lex_state = 130}, - [3677] = {.lex_state = 129}, - [3678] = {.lex_state = 85}, - [3679] = {.lex_state = 218}, - [3680] = {.lex_state = 109}, - [3681] = {.lex_state = 250}, - [3682] = {.lex_state = 124}, - [3683] = {.lex_state = 109}, - [3684] = {.lex_state = 124}, - [3685] = {.lex_state = 31}, - [3686] = {.lex_state = 277}, - [3687] = {.lex_state = 109}, - [3688] = {.lex_state = 46}, - [3689] = {.lex_state = 276}, - [3690] = {.lex_state = 89}, - [3691] = {.lex_state = 46}, - [3692] = {.lex_state = 124}, - [3693] = {.lex_state = 224}, - [3694] = {.lex_state = 224}, - [3695] = {.lex_state = 277}, - [3696] = {.lex_state = 131}, - [3697] = {.lex_state = 31}, - [3698] = {.lex_state = 257}, - [3699] = {.lex_state = 89}, - [3700] = {.lex_state = 117}, - [3701] = {.lex_state = 131}, - [3702] = {.lex_state = 31}, - [3703] = {.lex_state = 89}, - [3704] = {.lex_state = 129}, - [3705] = {.lex_state = 109}, - [3706] = {.lex_state = 46}, - [3707] = {.lex_state = 131}, - [3708] = {.lex_state = 46}, - [3709] = {.lex_state = 31}, - [3710] = {.lex_state = 249}, - [3711] = {.lex_state = 124}, - [3712] = {.lex_state = 131}, - [3713] = {.lex_state = 46}, - [3714] = {.lex_state = 578}, - [3715] = {.lex_state = 578}, - [3716] = {.lex_state = 46}, - [3717] = {.lex_state = 249}, - [3718] = {.lex_state = 124}, - [3719] = {.lex_state = 212}, - [3720] = {.lex_state = 277}, - [3721] = {.lex_state = 46}, - [3722] = {.lex_state = 277}, - [3723] = {.lex_state = 260}, - [3724] = {.lex_state = 46}, - [3725] = {.lex_state = 277}, - [3726] = {.lex_state = 124}, - [3727] = {.lex_state = 46}, - [3728] = {.lex_state = 31}, - [3729] = {.lex_state = 46}, - [3730] = {.lex_state = 249}, - [3731] = {.lex_state = 276}, - [3732] = {.lex_state = 0}, + [3392] = {.lex_state = 573}, + [3393] = {.lex_state = 2}, + [3394] = {.lex_state = 573}, + [3395] = {.lex_state = 2}, + [3396] = {.lex_state = 2}, + [3397] = {.lex_state = 2}, + [3398] = {.lex_state = 2}, + [3399] = {.lex_state = 2}, + [3400] = {.lex_state = 2}, + [3401] = {.lex_state = 573}, + [3402] = {.lex_state = 183}, + [3403] = {.lex_state = 573}, + [3404] = {.lex_state = 573}, + [3405] = {.lex_state = 573}, + [3406] = {.lex_state = 2128}, + [3407] = {.lex_state = 2}, + [3408] = {.lex_state = 573}, + [3409] = {.lex_state = 189}, + [3410] = {.lex_state = 2}, + [3411] = {.lex_state = 573}, + [3412] = {.lex_state = 629}, + [3413] = {.lex_state = 2}, + [3414] = {.lex_state = 93}, + [3415] = {.lex_state = 573}, + [3416] = {.lex_state = 185}, + [3417] = {.lex_state = 573}, + [3418] = {.lex_state = 182}, + [3419] = {.lex_state = 97}, + [3420] = {.lex_state = 573}, + [3421] = {.lex_state = 2}, + [3422] = {.lex_state = 573}, + [3423] = {.lex_state = 2}, + [3424] = {.lex_state = 79}, + [3425] = {.lex_state = 2}, + [3426] = {.lex_state = 2}, + [3427] = {.lex_state = 2}, + [3428] = {.lex_state = 573}, + [3429] = {.lex_state = 573}, + [3430] = {.lex_state = 81}, + [3431] = {.lex_state = 184}, + [3432] = {.lex_state = 2}, + [3433] = {.lex_state = 2}, + [3434] = {.lex_state = 2}, + [3435] = {.lex_state = 573}, + [3436] = {.lex_state = 573}, + [3437] = {.lex_state = 2}, + [3438] = {.lex_state = 573}, + [3439] = {.lex_state = 573}, + [3440] = {.lex_state = 2}, + [3441] = {.lex_state = 573}, + [3442] = {.lex_state = 2}, + [3443] = {.lex_state = 573}, + [3444] = {.lex_state = 573}, + [3445] = {.lex_state = 2}, + [3446] = {.lex_state = 573}, + [3447] = {.lex_state = 2}, + [3448] = {.lex_state = 2}, + [3449] = {.lex_state = 573}, + [3450] = {.lex_state = 573}, + [3451] = {.lex_state = 189}, + [3452] = {.lex_state = 189}, + [3453] = {.lex_state = 189}, + [3454] = {.lex_state = 189}, + [3455] = {.lex_state = 189}, + [3456] = {.lex_state = 189}, + [3457] = {.lex_state = 184}, + [3458] = {.lex_state = 573}, + [3459] = {.lex_state = 621}, + [3460] = {.lex_state = 573}, + [3461] = {.lex_state = 195}, + [3462] = {.lex_state = 189}, + [3463] = {.lex_state = 573}, + [3464] = {.lex_state = 573}, + [3465] = {.lex_state = 573}, + [3466] = {.lex_state = 573}, + [3467] = {.lex_state = 573}, + [3468] = {.lex_state = 573}, + [3469] = {.lex_state = 573}, + [3470] = {.lex_state = 573}, + [3471] = {.lex_state = 573}, + [3472] = {.lex_state = 573}, + [3473] = {.lex_state = 573}, + [3474] = {.lex_state = 573}, + [3475] = {.lex_state = 573}, + [3476] = {.lex_state = 2}, + [3477] = {.lex_state = 573}, + [3478] = {.lex_state = 2}, + [3479] = {.lex_state = 2}, + [3480] = {.lex_state = 2}, + [3481] = {.lex_state = 573}, + [3482] = {.lex_state = 573}, + [3483] = {.lex_state = 573}, + [3484] = {.lex_state = 573}, + [3485] = {.lex_state = 2}, + [3486] = {.lex_state = 573}, + [3487] = {.lex_state = 573}, + [3488] = {.lex_state = 573}, + [3489] = {.lex_state = 573}, + [3490] = {.lex_state = 573}, + [3491] = {.lex_state = 573}, + [3492] = {.lex_state = 2128}, + [3493] = {.lex_state = 573}, + [3494] = {.lex_state = 573}, + [3495] = {.lex_state = 573}, + [3496] = {.lex_state = 203}, + [3497] = {.lex_state = 573}, + [3498] = {.lex_state = 629}, + [3499] = {.lex_state = 573}, + [3500] = {.lex_state = 621}, + [3501] = {.lex_state = 573}, + [3502] = {.lex_state = 573}, + [3503] = {.lex_state = 573}, + [3504] = {.lex_state = 573}, + [3505] = {.lex_state = 573}, + [3506] = {.lex_state = 573}, + [3507] = {.lex_state = 573}, + [3508] = {.lex_state = 129}, + [3509] = {.lex_state = 123}, + [3510] = {.lex_state = 573}, + [3511] = {.lex_state = 2}, + [3512] = {.lex_state = 573}, + [3513] = {.lex_state = 573}, + [3514] = {.lex_state = 573}, + [3515] = {.lex_state = 573}, + [3516] = {.lex_state = 573}, + [3517] = {.lex_state = 573}, + [3518] = {.lex_state = 2}, + [3519] = {.lex_state = 577}, + [3520] = {.lex_state = 123}, + [3521] = {.lex_state = 82}, + [3522] = {.lex_state = 2}, + [3523] = {.lex_state = 99}, + [3524] = {.lex_state = 189}, + [3525] = {.lex_state = 608}, + [3526] = {.lex_state = 2}, + [3527] = {.lex_state = 98}, + [3528] = {.lex_state = 83}, + [3529] = {.lex_state = 82}, + [3530] = {.lex_state = 608}, + [3531] = {.lex_state = 123}, + [3532] = {.lex_state = 2}, + [3533] = {.lex_state = 99}, + [3534] = {.lex_state = 204}, + [3535] = {.lex_state = 129}, + [3536] = {.lex_state = 608}, + [3537] = {.lex_state = 573}, + [3538] = {.lex_state = 123}, + [3539] = {.lex_state = 2}, + [3540] = {.lex_state = 123}, + [3541] = {.lex_state = 2}, + [3542] = {.lex_state = 188}, + [3543] = {.lex_state = 205}, + [3544] = {.lex_state = 207}, + [3545] = {.lex_state = 196}, + [3546] = {.lex_state = 573}, + [3547] = {.lex_state = 94}, + [3548] = {.lex_state = 218}, + [3549] = {.lex_state = 233}, + [3550] = {.lex_state = 129}, + [3551] = {.lex_state = 608}, + [3552] = {.lex_state = 188}, + [3553] = {.lex_state = 189}, + [3554] = {.lex_state = 234}, + [3555] = {.lex_state = 129}, + [3556] = {.lex_state = 608}, + [3557] = {.lex_state = 129}, + [3558] = {.lex_state = 204}, + [3559] = {.lex_state = 205}, + [3560] = {.lex_state = 2}, + [3561] = {.lex_state = 2}, + [3562] = {.lex_state = 129}, + [3563] = {.lex_state = 129}, + [3564] = {.lex_state = 2}, + [3565] = {.lex_state = 2070}, + [3566] = {.lex_state = 2070}, + [3567] = {.lex_state = 2070}, + [3568] = {.lex_state = 1726, .external_lex_state = 2}, + [3569] = {.lex_state = 1726, .external_lex_state = 2}, + [3570] = {.lex_state = 95}, + [3571] = {.lex_state = 83}, + [3572] = {.lex_state = 2070}, + [3573] = {.lex_state = 2070}, + [3574] = {.lex_state = 1726, .external_lex_state = 2}, + [3575] = {.lex_state = 206}, + [3576] = {.lex_state = 207}, + [3577] = {.lex_state = 84}, + [3578] = {.lex_state = 2070}, + [3579] = {.lex_state = 2070}, + [3580] = {.lex_state = 1726, .external_lex_state = 2}, + [3581] = {.lex_state = 83}, + [3582] = {.lex_state = 2174}, + [3583] = {.lex_state = 2070}, + [3584] = {.lex_state = 2070}, + [3585] = {.lex_state = 1726, .external_lex_state = 2}, + [3586] = {.lex_state = 83}, + [3587] = {.lex_state = 2070}, + [3588] = {.lex_state = 2070}, + [3589] = {.lex_state = 1726, .external_lex_state = 2}, + [3590] = {.lex_state = 207}, + [3591] = {.lex_state = 1726, .external_lex_state = 2}, + [3592] = {.lex_state = 2070}, + [3593] = {.lex_state = 2070}, + [3594] = {.lex_state = 1726, .external_lex_state = 2}, + [3595] = {.lex_state = 2070}, + [3596] = {.lex_state = 2070}, + [3597] = {.lex_state = 2070}, + [3598] = {.lex_state = 1726, .external_lex_state = 2}, + [3599] = {.lex_state = 2070}, + [3600] = {.lex_state = 2070}, + [3601] = {.lex_state = 1726, .external_lex_state = 2}, + [3602] = {.lex_state = 2070}, + [3603] = {.lex_state = 1726, .external_lex_state = 2}, + [3604] = {.lex_state = 2070}, + [3605] = {.lex_state = 2070}, + [3606] = {.lex_state = 1726, .external_lex_state = 2}, + [3607] = {.lex_state = 2070}, + [3608] = {.lex_state = 2070}, + [3609] = {.lex_state = 1726, .external_lex_state = 2}, + [3610] = {.lex_state = 1726, .external_lex_state = 2}, + [3611] = {.lex_state = 1726, .external_lex_state = 2}, + [3612] = {.lex_state = 1726, .external_lex_state = 2}, + [3613] = {.lex_state = 207}, + [3614] = {.lex_state = 1726, .external_lex_state = 2}, + [3615] = {.lex_state = 1726, .external_lex_state = 2}, + [3616] = {.lex_state = 1726, .external_lex_state = 2}, + [3617] = {.lex_state = 1726, .external_lex_state = 2}, + [3618] = {.lex_state = 577}, + [3619] = {.lex_state = 206}, + [3620] = {.lex_state = 2174}, + [3621] = {.lex_state = 206}, + [3622] = {.lex_state = 2174}, + [3623] = {.lex_state = 100}, + [3624] = {.lex_state = 197}, + [3625] = {.lex_state = 129}, + [3626] = {.lex_state = 2070}, + [3627] = {.lex_state = 577}, + [3628] = {.lex_state = 219}, + [3629] = {.lex_state = 577}, + [3630] = {.lex_state = 80}, + [3631] = {.lex_state = 577}, + [3632] = {.lex_state = 2070}, + [3633] = {.lex_state = 209}, + [3634] = {.lex_state = 2129}, + [3635] = {.lex_state = 2070}, + [3636] = {.lex_state = 101}, + [3637] = {.lex_state = 2129}, + [3638] = {.lex_state = 198}, + [3639] = {.lex_state = 219}, + [3640] = {.lex_state = 220}, + [3641] = {.lex_state = 2070}, + [3642] = {.lex_state = 2070}, + [3643] = {.lex_state = 2}, + [3644] = {.lex_state = 1726, .external_lex_state = 2}, + [3645] = {.lex_state = 101}, + [3646] = {.lex_state = 208}, + [3647] = {.lex_state = 2174}, + [3648] = {.lex_state = 2129}, + [3649] = {.lex_state = 206}, + [3650] = {.lex_state = 2129}, + [3651] = {.lex_state = 101}, + [3652] = {.lex_state = 235}, + [3653] = {.lex_state = 101}, + [3654] = {.lex_state = 100}, + [3655] = {.lex_state = 103}, + [3656] = {.lex_state = 235}, + [3657] = {.lex_state = 1726, .external_lex_state = 2}, + [3658] = {.lex_state = 96}, + [3659] = {.lex_state = 577}, + [3660] = {.lex_state = 577}, + [3661] = {.lex_state = 210}, + [3662] = {.lex_state = 577}, + [3663] = {.lex_state = 577}, + [3664] = {.lex_state = 577}, + [3665] = {.lex_state = 130}, + [3666] = {.lex_state = 577}, + [3667] = {.lex_state = 577}, + [3668] = {.lex_state = 577}, + [3669] = {.lex_state = 577}, + [3670] = {.lex_state = 577}, + [3671] = {.lex_state = 212}, + [3672] = {.lex_state = 130}, + [3673] = {.lex_state = 577}, + [3674] = {.lex_state = 577}, + [3675] = {.lex_state = 577}, + [3676] = {.lex_state = 85}, + [3677] = {.lex_state = 577}, + [3678] = {.lex_state = 577}, + [3679] = {.lex_state = 577}, + [3680] = {.lex_state = 577}, + [3681] = {.lex_state = 577}, + [3682] = {.lex_state = 130}, + [3683] = {.lex_state = 577}, + [3684] = {.lex_state = 91}, + [3685] = {.lex_state = 210}, + [3686] = {.lex_state = 577}, + [3687] = {.lex_state = 105}, + [3688] = {.lex_state = 577}, + [3689] = {.lex_state = 577}, + [3690] = {.lex_state = 577}, + [3691] = {.lex_state = 577}, + [3692] = {.lex_state = 102}, + [3693] = {.lex_state = 577}, + [3694] = {.lex_state = 91}, + [3695] = {.lex_state = 577}, + [3696] = {.lex_state = 577}, + [3697] = {.lex_state = 577}, + [3698] = {.lex_state = 577}, + [3699] = {.lex_state = 220}, + [3700] = {.lex_state = 83}, + [3701] = {.lex_state = 577}, + [3702] = {.lex_state = 577}, + [3703] = {.lex_state = 102}, + [3704] = {.lex_state = 577}, + [3705] = {.lex_state = 241}, + [3706] = {.lex_state = 104}, + [3707] = {.lex_state = 221}, + [3708] = {.lex_state = 91}, + [3709] = {.lex_state = 220}, + [3710] = {.lex_state = 199}, + [3711] = {.lex_state = 577}, + [3712] = {.lex_state = 220}, + [3713] = {.lex_state = 625}, + [3714] = {.lex_state = 236}, + [3715] = {.lex_state = 102}, + [3716] = {.lex_state = 577}, + [3717] = {.lex_state = 85}, + [3718] = {.lex_state = 577}, + [3719] = {.lex_state = 625}, + [3720] = {.lex_state = 236}, + [3721] = {.lex_state = 577}, + [3722] = {.lex_state = 577}, + [3723] = {.lex_state = 105}, + [3724] = {.lex_state = 577}, + [3725] = {.lex_state = 102}, + [3726] = {.lex_state = 130}, + [3727] = {.lex_state = 207}, + [3728] = {.lex_state = 577}, + [3729] = {.lex_state = 212}, + [3730] = {.lex_state = 130}, + [3731] = {.lex_state = 130}, + [3732] = {.lex_state = 577}, [3733] = {.lex_state = 577}, - [3734] = {.lex_state = 0}, - [3735] = {.lex_state = 0}, - [3736] = {.lex_state = 0}, - [3737] = {.lex_state = 659}, - [3738] = {.lex_state = 640}, - [3739] = {.lex_state = 625}, - [3740] = {.lex_state = 625}, - [3741] = {.lex_state = 244}, - [3742] = {.lex_state = 111}, - [3743] = {.lex_state = 276}, - [3744] = {.lex_state = 276}, - [3745] = {.lex_state = 276}, - [3746] = {.lex_state = 225}, - [3747] = {.lex_state = 182}, - [3748] = {.lex_state = 2072}, - [3749] = {.lex_state = 2072}, - [3750] = {.lex_state = 249}, - [3751] = {.lex_state = 258}, - [3752] = {.lex_state = 182}, - [3753] = {.lex_state = 31}, - [3754] = {.lex_state = 31}, - [3755] = {.lex_state = 129}, - [3756] = {.lex_state = 124}, - [3757] = {.lex_state = 124}, - [3758] = {.lex_state = 129}, - [3759] = {.lex_state = 251}, - [3760] = {.lex_state = 182}, - [3761] = {.lex_state = 0}, - [3762] = {.lex_state = 31}, - [3763] = {.lex_state = 0}, - [3764] = {.lex_state = 0}, - [3765] = {.lex_state = 201}, - [3766] = {.lex_state = 256}, - [3767] = {.lex_state = 31}, - [3768] = {.lex_state = 31}, - [3769] = {.lex_state = 31}, - [3770] = {.lex_state = 124}, - [3771] = {.lex_state = 89}, - [3772] = {.lex_state = 130}, - [3773] = {.lex_state = 124}, - [3774] = {.lex_state = 190}, - [3775] = {.lex_state = 276}, - [3776] = {.lex_state = 130}, - [3777] = {.lex_state = 130}, - [3778] = {.lex_state = 124}, - [3779] = {.lex_state = 130}, - [3780] = {.lex_state = 124}, - [3781] = {.lex_state = 182}, - [3782] = {.lex_state = 2072}, - [3783] = {.lex_state = 2072}, - [3784] = {.lex_state = 276}, - [3785] = {.lex_state = 182}, - [3786] = {.lex_state = 276}, - [3787] = {.lex_state = 0}, - [3788] = {.lex_state = 0}, - [3789] = {.lex_state = 0}, - [3790] = {.lex_state = 0}, - [3791] = {.lex_state = 129}, - [3792] = {.lex_state = 31}, - [3793] = {.lex_state = 119}, - [3794] = {.lex_state = 124}, - [3795] = {.lex_state = 129}, - [3796] = {.lex_state = 129}, - [3797] = {.lex_state = 124}, - [3798] = {.lex_state = 129}, - [3799] = {.lex_state = 129}, - [3800] = {.lex_state = 129}, - [3801] = {.lex_state = 119}, - [3802] = {.lex_state = 276}, - [3803] = {.lex_state = 577}, - [3804] = {.lex_state = 276}, - [3805] = {.lex_state = 2072}, - [3806] = {.lex_state = 2072}, - [3807] = {.lex_state = 124}, - [3808] = {.lex_state = 124}, - [3809] = {.lex_state = 124}, - [3810] = {.lex_state = 87}, - [3811] = {.lex_state = 249}, - [3812] = {.lex_state = 131}, - [3813] = {.lex_state = 87}, - [3814] = {.lex_state = 182}, - [3815] = {.lex_state = 276}, - [3816] = {.lex_state = 276}, - [3817] = {.lex_state = 114}, - [3818] = {.lex_state = 258}, - [3819] = {.lex_state = 182}, - [3820] = {.lex_state = 31}, - [3821] = {.lex_state = 2072}, - [3822] = {.lex_state = 2072}, - [3823] = {.lex_state = 182}, - [3824] = {.lex_state = 0}, - [3825] = {.lex_state = 182}, - [3826] = {.lex_state = 2072}, - [3827] = {.lex_state = 2072}, - [3828] = {.lex_state = 182}, - [3829] = {.lex_state = 182}, - [3830] = {.lex_state = 2072}, - [3831] = {.lex_state = 2072}, - [3832] = {.lex_state = 182}, - [3833] = {.lex_state = 182}, - [3834] = {.lex_state = 182}, - [3835] = {.lex_state = 182}, - [3836] = {.lex_state = 124}, - [3837] = {.lex_state = 182}, - [3838] = {.lex_state = 228}, - [3839] = {.lex_state = 182}, - [3840] = {.lex_state = 182}, - [3841] = {.lex_state = 2176}, - [3842] = {.lex_state = 2176}, - [3843] = {.lex_state = 261}, - [3844] = {.lex_state = 239}, - [3845] = {.lex_state = 31}, - [3846] = {.lex_state = 124}, - [3847] = {.lex_state = 124}, - [3848] = {.lex_state = 640}, - [3849] = {.lex_state = 216}, - [3850] = {.lex_state = 216}, - [3851] = {.lex_state = 202}, - [3852] = {.lex_state = 251}, - [3853] = {.lex_state = 640}, - [3854] = {.lex_state = 261}, - [3855] = {.lex_state = 261}, - [3856] = {.lex_state = 261}, - [3857] = {.lex_state = 124}, - [3858] = {.lex_state = 124}, - [3859] = {.lex_state = 190}, - [3860] = {.lex_state = 124}, - [3861] = {.lex_state = 124}, - [3862] = {.lex_state = 124}, - [3863] = {.lex_state = 124}, - [3864] = {.lex_state = 182}, - [3865] = {.lex_state = 276}, - [3866] = {.lex_state = 276}, + [3734] = {.lex_state = 236}, + [3735] = {.lex_state = 577}, + [3736] = {.lex_state = 247}, + [3737] = {.lex_state = 236}, + [3738] = {.lex_state = 577}, + [3739] = {.lex_state = 242}, + [3740] = {.lex_state = 106}, + [3741] = {.lex_state = 574}, + [3742] = {.lex_state = 213}, + [3743] = {.lex_state = 211}, + [3744] = {.lex_state = 107}, + [3745] = {.lex_state = 106}, + [3746] = {.lex_state = 245}, + [3747] = {.lex_state = 245}, + [3748] = {.lex_state = 222}, + [3749] = {.lex_state = 245}, + [3750] = {.lex_state = 248}, + [3751] = {.lex_state = 86}, + [3752] = {.lex_state = 213}, + [3753] = {.lex_state = 128}, + [3754] = {.lex_state = 245}, + [3755] = {.lex_state = 245}, + [3756] = {.lex_state = 86}, + [3757] = {.lex_state = 106}, + [3758] = {.lex_state = 130}, + [3759] = {.lex_state = 213}, + [3760] = {.lex_state = 86}, + [3761] = {.lex_state = 2}, + [3762] = {.lex_state = 245}, + [3763] = {.lex_state = 259}, + [3764] = {.lex_state = 245}, + [3765] = {.lex_state = 222}, + [3766] = {.lex_state = 574}, + [3767] = {.lex_state = 107}, + [3768] = {.lex_state = 213}, + [3769] = {.lex_state = 211}, + [3770] = {.lex_state = 211}, + [3771] = {.lex_state = 106}, + [3772] = {.lex_state = 245}, + [3773] = {.lex_state = 128}, + [3774] = {.lex_state = 213}, + [3775] = {.lex_state = 245}, + [3776] = {.lex_state = 245}, + [3777] = {.lex_state = 248}, + [3778] = {.lex_state = 245}, + [3779] = {.lex_state = 277}, + [3780] = {.lex_state = 86}, + [3781] = {.lex_state = 130}, + [3782] = {.lex_state = 106}, + [3783] = {.lex_state = 86}, + [3784] = {.lex_state = 245}, + [3785] = {.lex_state = 245}, + [3786] = {.lex_state = 123}, + [3787] = {.lex_state = 47}, + [3788] = {.lex_state = 223}, + [3789] = {.lex_state = 47}, + [3790] = {.lex_state = 277}, + [3791] = {.lex_state = 88}, + [3792] = {.lex_state = 202}, + [3793] = {.lex_state = 130}, + [3794] = {.lex_state = 47}, + [3795] = {.lex_state = 47}, + [3796] = {.lex_state = 116}, + [3797] = {.lex_state = 47}, + [3798] = {.lex_state = 123}, + [3799] = {.lex_state = 33}, + [3800] = {.lex_state = 246}, + [3801] = {.lex_state = 128}, + [3802] = {.lex_state = 33}, + [3803] = {.lex_state = 47}, + [3804] = {.lex_state = 256}, + [3805] = {.lex_state = 223}, + [3806] = {.lex_state = 123}, + [3807] = {.lex_state = 249}, + [3808] = {.lex_state = 574}, + [3809] = {.lex_state = 91}, + [3810] = {.lex_state = 123}, + [3811] = {.lex_state = 217}, + [3812] = {.lex_state = 33}, + [3813] = {.lex_state = 130}, + [3814] = {.lex_state = 214}, + [3815] = {.lex_state = 33}, + [3816] = {.lex_state = 211}, + [3817] = {.lex_state = 108}, + [3818] = {.lex_state = 47}, + [3819] = {.lex_state = 91}, + [3820] = {.lex_state = 47}, + [3821] = {.lex_state = 223}, + [3822] = {.lex_state = 123}, + [3823] = {.lex_state = 47}, + [3824] = {.lex_state = 33}, + [3825] = {.lex_state = 574}, + [3826] = {.lex_state = 47}, + [3827] = {.lex_state = 123}, + [3828] = {.lex_state = 277}, + [3829] = {.lex_state = 123}, + [3830] = {.lex_state = 123}, + [3831] = {.lex_state = 47}, + [3832] = {.lex_state = 91}, + [3833] = {.lex_state = 47}, + [3834] = {.lex_state = 109}, + [3835] = {.lex_state = 260}, + [3836] = {.lex_state = 108}, + [3837] = {.lex_state = 33}, + [3838] = {.lex_state = 223}, + [3839] = {.lex_state = 250}, + [3840] = {.lex_state = 130}, + [3841] = {.lex_state = 33}, + [3842] = {.lex_state = 33}, + [3843] = {.lex_state = 130}, + [3844] = {.lex_state = 123}, + [3845] = {.lex_state = 276}, + [3846] = {.lex_state = 47}, + [3847] = {.lex_state = 87}, + [3848] = {.lex_state = 108}, + [3849] = {.lex_state = 33}, + [3850] = {.lex_state = 123}, + [3851] = {.lex_state = 130}, + [3852] = {.lex_state = 47}, + [3853] = {.lex_state = 223}, + [3854] = {.lex_state = 47}, + [3855] = {.lex_state = 47}, + [3856] = {.lex_state = 211}, + [3857] = {.lex_state = 276}, + [3858] = {.lex_state = 47}, + [3859] = {.lex_state = 130}, + [3860] = {.lex_state = 108}, + [3861] = {.lex_state = 243}, + [3862] = {.lex_state = 47}, + [3863] = {.lex_state = 47}, + [3864] = {.lex_state = 249}, + [3865] = {.lex_state = 574}, + [3866] = {.lex_state = 33}, [3867] = {.lex_state = 276}, - [3868] = {.lex_state = 262}, - [3869] = {.lex_state = 640}, - [3870] = {.lex_state = 640}, - [3871] = {.lex_state = 31}, - [3872] = {.lex_state = 640}, - [3873] = {.lex_state = 611}, - [3874] = {.lex_state = 256}, - [3875] = {.lex_state = 31}, - [3876] = {.lex_state = 276}, - [3877] = {.lex_state = 276}, - [3878] = {.lex_state = 276}, - [3879] = {.lex_state = 31}, - [3880] = {.lex_state = 118}, - [3881] = {.lex_state = 276}, - [3882] = {.lex_state = 276}, - [3883] = {.lex_state = 131}, - [3884] = {.lex_state = 131}, - [3885] = {.lex_state = 88}, - [3886] = {.lex_state = 88}, - [3887] = {.lex_state = 278}, - [3888] = {.lex_state = 625}, - [3889] = {.lex_state = 129}, - [3890] = {.lex_state = 252}, - [3891] = {.lex_state = 625}, - [3892] = {.lex_state = 252}, - [3893] = {.lex_state = 2}, - [3894] = {.lex_state = 625}, - [3895] = {.lex_state = 625}, - [3896] = {.lex_state = 126}, - [3897] = {.lex_state = 622}, - [3898] = {.lex_state = 625}, - [3899] = {.lex_state = 126}, - [3900] = {.lex_state = 120}, - [3901] = {.lex_state = 201}, - [3902] = {.lex_state = 0}, - [3903] = {.lex_state = 190}, - [3904] = {.lex_state = 226}, - [3905] = {.lex_state = 124}, - [3906] = {.lex_state = 124}, - [3907] = {.lex_state = 124}, - [3908] = {.lex_state = 120}, - [3909] = {.lex_state = 120}, - [3910] = {.lex_state = 278}, - [3911] = {.lex_state = 124}, - [3912] = {.lex_state = 180}, - [3913] = {.lex_state = 278}, - [3914] = {.lex_state = 120}, - [3915] = {.lex_state = 622}, - [3916] = {.lex_state = 227}, - [3917] = {.lex_state = 278}, - [3918] = {.lex_state = 31}, - [3919] = {.lex_state = 120}, - [3920] = {.lex_state = 123}, - [3921] = {.lex_state = 217}, - [3922] = {.lex_state = 217}, - [3923] = {.lex_state = 120}, - [3924] = {.lex_state = 149}, - [3925] = {.lex_state = 149}, - [3926] = {.lex_state = 120}, - [3927] = {.lex_state = 217}, - [3928] = {.lex_state = 217}, - [3929] = {.lex_state = 120}, - [3930] = {.lex_state = 217}, - [3931] = {.lex_state = 120}, - [3932] = {.lex_state = 217}, - [3933] = {.lex_state = 622}, - [3934] = {.lex_state = 126}, - [3935] = {.lex_state = 120}, - [3936] = {.lex_state = 120}, - [3937] = {.lex_state = 124}, - [3938] = {.lex_state = 217}, - [3939] = {.lex_state = 276}, - [3940] = {.lex_state = 622}, - [3941] = {.lex_state = 88}, - [3942] = {.lex_state = 0}, - [3943] = {.lex_state = 217}, - [3944] = {.lex_state = 217}, - [3945] = {.lex_state = 278}, - [3946] = {.lex_state = 88}, - [3947] = {.lex_state = 131}, - [3948] = {.lex_state = 88}, - [3949] = {.lex_state = 131}, - [3950] = {.lex_state = 88}, - [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 625}, - [3953] = {.lex_state = 581}, - [3954] = {.lex_state = 124}, - [3955] = {.lex_state = 180}, - [3956] = {.lex_state = 278}, - [3957] = {.lex_state = 622}, - [3958] = {.lex_state = 89}, - [3959] = {.lex_state = 0}, - [3960] = {.lex_state = 278}, - [3961] = {.lex_state = 88}, - [3962] = {.lex_state = 160}, - [3963] = {.lex_state = 0}, - [3964] = {.lex_state = 160}, - [3965] = {.lex_state = 124}, - [3966] = {.lex_state = 180}, - [3967] = {.lex_state = 278}, - [3968] = {.lex_state = 33}, - [3969] = {.lex_state = 180}, - [3970] = {.lex_state = 581}, - [3971] = {.lex_state = 120}, - [3972] = {.lex_state = 89}, - [3973] = {.lex_state = 120}, - [3974] = {.lex_state = 180}, - [3975] = {.lex_state = 278}, - [3976] = {.lex_state = 124}, - [3977] = {.lex_state = 252}, - [3978] = {.lex_state = 278}, - [3979] = {.lex_state = 180}, - [3980] = {.lex_state = 278}, - [3981] = {.lex_state = 278}, - [3982] = {.lex_state = 278}, - [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 0}, - [3985] = {.lex_state = 230}, - [3986] = {.lex_state = 180}, - [3987] = {.lex_state = 278}, - [3988] = {.lex_state = 278}, + [3868] = {.lex_state = 130}, + [3869] = {.lex_state = 260}, + [3870] = {.lex_state = 108}, + [3871] = {.lex_state = 123}, + [3872] = {.lex_state = 249}, + [3873] = {.lex_state = 128}, + [3874] = {.lex_state = 47}, + [3875] = {.lex_state = 47}, + [3876] = {.lex_state = 574}, + [3877] = {.lex_state = 47}, + [3878] = {.lex_state = 47}, + [3879] = {.lex_state = 574}, + [3880] = {.lex_state = 277}, + [3881] = {.lex_state = 91}, + [3882] = {.lex_state = 33}, + [3883] = {.lex_state = 277}, + [3884] = {.lex_state = 47}, + [3885] = {.lex_state = 128}, + [3886] = {.lex_state = 277}, + [3887] = {.lex_state = 123}, + [3888] = {.lex_state = 574}, + [3889] = {.lex_state = 206}, + [3890] = {.lex_state = 277}, + [3891] = {.lex_state = 249}, + [3892] = {.lex_state = 123}, + [3893] = {.lex_state = 123}, + [3894] = {.lex_state = 130}, + [3895] = {.lex_state = 276}, + [3896] = {.lex_state = 123}, + [3897] = {.lex_state = 251}, + [3898] = {.lex_state = 33}, + [3899] = {.lex_state = 181}, + [3900] = {.lex_state = 2071}, + [3901] = {.lex_state = 2071}, + [3902] = {.lex_state = 249}, + [3903] = {.lex_state = 181}, + [3904] = {.lex_state = 257}, + [3905] = {.lex_state = 0}, + [3906] = {.lex_state = 276}, + [3907] = {.lex_state = 189}, + [3908] = {.lex_state = 33}, + [3909] = {.lex_state = 33}, + [3910] = {.lex_state = 128}, + [3911] = {.lex_state = 200}, + [3912] = {.lex_state = 123}, + [3913] = {.lex_state = 123}, + [3914] = {.lex_state = 128}, + [3915] = {.lex_state = 276}, + [3916] = {.lex_state = 91}, + [3917] = {.lex_state = 0}, + [3918] = {.lex_state = 0}, + [3919] = {.lex_state = 0}, + [3920] = {.lex_state = 2071}, + [3921] = {.lex_state = 2071}, + [3922] = {.lex_state = 574}, + [3923] = {.lex_state = 249}, + [3924] = {.lex_state = 123}, + [3925] = {.lex_state = 123}, + [3926] = {.lex_state = 181}, + [3927] = {.lex_state = 276}, + [3928] = {.lex_state = 181}, + [3929] = {.lex_state = 258}, + [3930] = {.lex_state = 123}, + [3931] = {.lex_state = 33}, + [3932] = {.lex_state = 123}, + [3933] = {.lex_state = 123}, + [3934] = {.lex_state = 123}, + [3935] = {.lex_state = 129}, + [3936] = {.lex_state = 129}, + [3937] = {.lex_state = 129}, + [3938] = {.lex_state = 118}, + [3939] = {.lex_state = 181}, + [3940] = {.lex_state = 2071}, + [3941] = {.lex_state = 2071}, + [3942] = {.lex_state = 181}, + [3943] = {.lex_state = 118}, + [3944] = {.lex_state = 128}, + [3945] = {.lex_state = 123}, + [3946] = {.lex_state = 128}, + [3947] = {.lex_state = 128}, + [3948] = {.lex_state = 0}, + [3949] = {.lex_state = 128}, + [3950] = {.lex_state = 128}, + [3951] = {.lex_state = 128}, + [3952] = {.lex_state = 123}, + [3953] = {.lex_state = 89}, + [3954] = {.lex_state = 129}, + [3955] = {.lex_state = 574}, + [3956] = {.lex_state = 89}, + [3957] = {.lex_state = 113}, + [3958] = {.lex_state = 130}, + [3959] = {.lex_state = 2175}, + [3960] = {.lex_state = 2175}, + [3961] = {.lex_state = 261}, + [3962] = {.lex_state = 276}, + [3963] = {.lex_state = 238}, + [3964] = {.lex_state = 33}, + [3965] = {.lex_state = 123}, + [3966] = {.lex_state = 130}, + [3967] = {.lex_state = 181}, + [3968] = {.lex_state = 2071}, + [3969] = {.lex_state = 2071}, + [3970] = {.lex_state = 123}, + [3971] = {.lex_state = 251}, + [3972] = {.lex_state = 123}, + [3973] = {.lex_state = 181}, + [3974] = {.lex_state = 189}, + [3975] = {.lex_state = 181}, + [3976] = {.lex_state = 2071}, + [3977] = {.lex_state = 2071}, + [3978] = {.lex_state = 181}, + [3979] = {.lex_state = 276}, + [3980] = {.lex_state = 227}, + [3981] = {.lex_state = 2071}, + [3982] = {.lex_state = 2071}, + [3983] = {.lex_state = 181}, + [3984] = {.lex_state = 635}, + [3985] = {.lex_state = 181}, + [3986] = {.lex_state = 33}, + [3987] = {.lex_state = 181}, + [3988] = {.lex_state = 635}, [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 252}, - [3991] = {.lex_state = 180}, - [3992] = {.lex_state = 278}, - [3993] = {.lex_state = 129}, - [3994] = {.lex_state = 278}, - [3995] = {.lex_state = 230}, - [3996] = {.lex_state = 180}, - [3997] = {.lex_state = 31}, - [3998] = {.lex_state = 180}, - [3999] = {.lex_state = 180}, - [4000] = {.lex_state = 180}, - [4001] = {.lex_state = 625}, - [4002] = {.lex_state = 227}, - [4003] = {.lex_state = 180}, - [4004] = {.lex_state = 180}, - [4005] = {.lex_state = 124}, - [4006] = {.lex_state = 180}, - [4007] = {.lex_state = 625}, - [4008] = {.lex_state = 180}, - [4009] = {.lex_state = 180}, - [4010] = {.lex_state = 180}, - [4011] = {.lex_state = 180}, - [4012] = {.lex_state = 88}, - [4013] = {.lex_state = 88}, - [4014] = {.lex_state = 622}, - [4015] = {.lex_state = 217}, - [4016] = {.lex_state = 120}, - [4017] = {.lex_state = 217}, - [4018] = {.lex_state = 217}, - [4019] = {.lex_state = 278}, - [4020] = {.lex_state = 88}, - [4021] = {.lex_state = 31}, - [4022] = {.lex_state = 217}, - [4023] = {.lex_state = 276}, - [4024] = {.lex_state = 252}, - [4025] = {.lex_state = 89}, - [4026] = {.lex_state = 88}, - [4027] = {.lex_state = 33}, - [4028] = {.lex_state = 577}, - [4029] = {.lex_state = 31}, - [4030] = {.lex_state = 88}, - [4031] = {.lex_state = 88}, - [4032] = {.lex_state = 263}, - [4033] = {.lex_state = 124}, - [4034] = {.lex_state = 2}, - [4035] = {.lex_state = 263}, - [4036] = {.lex_state = 180}, - [4037] = {.lex_state = 124}, - [4038] = {.lex_state = 37}, - [4039] = {.lex_state = 46}, - [4040] = {.lex_state = 2}, - [4041] = {.lex_state = 2}, - [4042] = {.lex_state = 652}, - [4043] = {.lex_state = 121}, - [4044] = {.lex_state = 121}, - [4045] = {.lex_state = 2}, - [4046] = {.lex_state = 2}, - [4047] = {.lex_state = 278}, - [4048] = {.lex_state = 124}, - [4049] = {.lex_state = 31}, - [4050] = {.lex_state = 245}, - [4051] = {.lex_state = 268}, - [4052] = {.lex_state = 31}, - [4053] = {.lex_state = 31}, - [4054] = {.lex_state = 31}, - [4055] = {.lex_state = 149}, - [4056] = {.lex_state = 238}, - [4057] = {.lex_state = 122}, - [4058] = {.lex_state = 190}, - [4059] = {.lex_state = 126}, - [4060] = {.lex_state = 93}, - [4061] = {.lex_state = 238}, - [4062] = {.lex_state = 238}, - [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 149}, - [4065] = {.lex_state = 126}, - [4066] = {.lex_state = 0}, - [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 31}, - [4069] = {.lex_state = 31}, - [4070] = {.lex_state = 31}, - [4071] = {.lex_state = 190}, - [4072] = {.lex_state = 149}, - [4073] = {.lex_state = 149}, - [4074] = {.lex_state = 190}, - [4075] = {.lex_state = 190}, - [4076] = {.lex_state = 0}, - [4077] = {.lex_state = 88}, - [4078] = {.lex_state = 31}, - [4079] = {.lex_state = 190}, - [4080] = {.lex_state = 0}, - [4081] = {.lex_state = 31}, - [4082] = {.lex_state = 31}, - [4083] = {.lex_state = 31}, - [4084] = {.lex_state = 31}, - [4085] = {.lex_state = 31}, - [4086] = {.lex_state = 31}, - [4087] = {.lex_state = 122}, - [4088] = {.lex_state = 264}, - [4089] = {.lex_state = 180}, - [4090] = {.lex_state = 31}, - [4091] = {.lex_state = 31}, - [4092] = {.lex_state = 31}, - [4093] = {.lex_state = 31}, - [4094] = {.lex_state = 31}, - [4095] = {.lex_state = 31}, - [4096] = {.lex_state = 190}, - [4097] = {.lex_state = 124}, - [4098] = {.lex_state = 31}, - [4099] = {.lex_state = 31}, - [4100] = {.lex_state = 149}, - [4101] = {.lex_state = 31}, - [4102] = {.lex_state = 149}, - [4103] = {.lex_state = 124}, - [4104] = {.lex_state = 231}, - [4105] = {.lex_state = 190}, - [4106] = {.lex_state = 190}, - [4107] = {.lex_state = 190}, - [4108] = {.lex_state = 129}, - [4109] = {.lex_state = 190}, - [4110] = {.lex_state = 31}, - [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 122}, - [4113] = {.lex_state = 190}, - [4114] = {.lex_state = 31}, - [4115] = {.lex_state = 190}, - [4116] = {.lex_state = 190}, - [4117] = {.lex_state = 190}, - [4118] = {.lex_state = 122}, - [4119] = {.lex_state = 190}, - [4120] = {.lex_state = 122}, - [4121] = {.lex_state = 190}, - [4122] = {.lex_state = 190}, - [4123] = {.lex_state = 190}, - [4124] = {.lex_state = 122}, - [4125] = {.lex_state = 122}, - [4126] = {.lex_state = 123}, - [4127] = {.lex_state = 122}, - [4128] = {.lex_state = 149}, - [4129] = {.lex_state = 31}, - [4130] = {.lex_state = 231}, - [4131] = {.lex_state = 123}, + [3990] = {.lex_state = 181}, + [3991] = {.lex_state = 257}, + [3992] = {.lex_state = 33}, + [3993] = {.lex_state = 33}, + [3994] = {.lex_state = 181}, + [3995] = {.lex_state = 0}, + [3996] = {.lex_state = 181}, + [3997] = {.lex_state = 0}, + [3998] = {.lex_state = 0}, + [3999] = {.lex_state = 181}, + [4000] = {.lex_state = 215}, + [4001] = {.lex_state = 215}, + [4002] = {.lex_state = 635}, + [4003] = {.lex_state = 635}, + [4004] = {.lex_state = 201}, + [4005] = {.lex_state = 635}, + [4006] = {.lex_state = 658}, + [4007] = {.lex_state = 635}, + [4008] = {.lex_state = 261}, + [4009] = {.lex_state = 181}, + [4010] = {.lex_state = 261}, + [4011] = {.lex_state = 261}, + [4012] = {.lex_state = 258}, + [4013] = {.lex_state = 276}, + [4014] = {.lex_state = 276}, + [4015] = {.lex_state = 276}, + [4016] = {.lex_state = 262}, + [4017] = {.lex_state = 109}, + [4018] = {.lex_state = 33}, + [4019] = {.lex_state = 91}, + [4020] = {.lex_state = 123}, + [4021] = {.lex_state = 123}, + [4022] = {.lex_state = 123}, + [4023] = {.lex_state = 123}, + [4024] = {.lex_state = 117}, + [4025] = {.lex_state = 276}, + [4026] = {.lex_state = 276}, + [4027] = {.lex_state = 276}, + [4028] = {.lex_state = 33}, + [4029] = {.lex_state = 33}, + [4030] = {.lex_state = 33}, + [4031] = {.lex_state = 91}, + [4032] = {.lex_state = 224}, + [4033] = {.lex_state = 276}, + [4034] = {.lex_state = 276}, + [4035] = {.lex_state = 276}, + [4036] = {.lex_state = 276}, + [4037] = {.lex_state = 276}, + [4038] = {.lex_state = 276}, + [4039] = {.lex_state = 276}, + [4040] = {.lex_state = 123}, + [4041] = {.lex_state = 123}, + [4042] = {.lex_state = 244}, + [4043] = {.lex_state = 0}, + [4044] = {.lex_state = 0}, + [4045] = {.lex_state = 0}, + [4046] = {.lex_state = 110}, + [4047] = {.lex_state = 181}, + [4048] = {.lex_state = 2}, + [4049] = {.lex_state = 90}, + [4050] = {.lex_state = 276}, + [4051] = {.lex_state = 200}, + [4052] = {.lex_state = 278}, + [4053] = {.lex_state = 620}, + [4054] = {.lex_state = 179}, + [4055] = {.lex_state = 278}, + [4056] = {.lex_state = 179}, + [4057] = {.lex_state = 620}, + [4058] = {.lex_state = 577}, + [4059] = {.lex_state = 0}, + [4060] = {.lex_state = 216}, + [4061] = {.lex_state = 0}, + [4062] = {.lex_state = 90}, + [4063] = {.lex_state = 125}, + [4064] = {.lex_state = 278}, + [4065] = {.lex_state = 125}, + [4066] = {.lex_state = 620}, + [4067] = {.lex_state = 91}, + [4068] = {.lex_state = 2}, + [4069] = {.lex_state = 179}, + [4070] = {.lex_state = 278}, + [4071] = {.lex_state = 252}, + [4072] = {.lex_state = 90}, + [4073] = {.lex_state = 90}, + [4074] = {.lex_state = 0}, + [4075] = {.lex_state = 123}, + [4076] = {.lex_state = 278}, + [4077] = {.lex_state = 123}, + [4078] = {.lex_state = 123}, + [4079] = {.lex_state = 0}, + [4080] = {.lex_state = 229}, + [4081] = {.lex_state = 179}, + [4082] = {.lex_state = 278}, + [4083] = {.lex_state = 123}, + [4084] = {.lex_state = 119}, + [4085] = {.lex_state = 119}, + [4086] = {.lex_state = 123}, + [4087] = {.lex_state = 276}, + [4088] = {.lex_state = 229}, + [4089] = {.lex_state = 278}, + [4090] = {.lex_state = 123}, + [4091] = {.lex_state = 33}, + [4092] = {.lex_state = 90}, + [4093] = {.lex_state = 179}, + [4094] = {.lex_state = 278}, + [4095] = {.lex_state = 90}, + [4096] = {.lex_state = 148}, + [4097] = {.lex_state = 38}, + [4098] = {.lex_state = 47}, + [4099] = {.lex_state = 278}, + [4100] = {.lex_state = 148}, + [4101] = {.lex_state = 216}, + [4102] = {.lex_state = 159}, + [4103] = {.lex_state = 179}, + [4104] = {.lex_state = 278}, + [4105] = {.lex_state = 123}, + [4106] = {.lex_state = 90}, + [4107] = {.lex_state = 179}, + [4108] = {.lex_state = 278}, + [4109] = {.lex_state = 278}, + [4110] = {.lex_state = 278}, + [4111] = {.lex_state = 216}, + [4112] = {.lex_state = 179}, + [4113] = {.lex_state = 278}, + [4114] = {.lex_state = 620}, + [4115] = {.lex_state = 278}, + [4116] = {.lex_state = 35}, + [4117] = {.lex_state = 278}, + [4118] = {.lex_state = 159}, + [4119] = {.lex_state = 179}, + [4120] = {.lex_state = 179}, + [4121] = {.lex_state = 91}, + [4122] = {.lex_state = 179}, + [4123] = {.lex_state = 179}, + [4124] = {.lex_state = 119}, + [4125] = {.lex_state = 179}, + [4126] = {.lex_state = 252}, + [4127] = {.lex_state = 216}, + [4128] = {.lex_state = 278}, + [4129] = {.lex_state = 179}, + [4130] = {.lex_state = 278}, + [4131] = {.lex_state = 179}, [4132] = {.lex_state = 123}, - [4133] = {.lex_state = 252}, - [4134] = {.lex_state = 217}, - [4135] = {.lex_state = 577}, - [4136] = {.lex_state = 31}, - [4137] = {.lex_state = 31}, - [4138] = {.lex_state = 31}, - [4139] = {.lex_state = 31}, - [4140] = {.lex_state = 126}, - [4141] = {.lex_state = 245}, - [4142] = {.lex_state = 31}, - [4143] = {.lex_state = 226}, - [4144] = {.lex_state = 31}, - [4145] = {.lex_state = 226}, - [4146] = {.lex_state = 122}, - [4147] = {.lex_state = 0}, - [4148] = {.lex_state = 253}, - [4149] = {.lex_state = 31}, - [4150] = {.lex_state = 126}, - [4151] = {.lex_state = 31}, - [4152] = {.lex_state = 0}, - [4153] = {.lex_state = 126}, - [4154] = {.lex_state = 31}, - [4155] = {.lex_state = 0}, - [4156] = {.lex_state = 31}, - [4157] = {.lex_state = 122}, - [4158] = {.lex_state = 122}, - [4159] = {.lex_state = 231}, - [4160] = {.lex_state = 126}, - [4161] = {.lex_state = 126}, - [4162] = {.lex_state = 126}, - [4163] = {.lex_state = 190}, - [4164] = {.lex_state = 31}, - [4165] = {.lex_state = 190}, - [4166] = {.lex_state = 124}, - [4167] = {.lex_state = 0}, - [4168] = {.lex_state = 0}, - [4169] = {.lex_state = 245}, - [4170] = {.lex_state = 31}, - [4171] = {.lex_state = 31}, - [4172] = {.lex_state = 31}, - [4173] = {.lex_state = 124}, - [4174] = {.lex_state = 231}, - [4175] = {.lex_state = 31}, - [4176] = {.lex_state = 149}, - [4177] = {.lex_state = 231}, - [4178] = {.lex_state = 577}, - [4179] = {.lex_state = 252}, - [4180] = {.lex_state = 245}, - [4181] = {.lex_state = 42}, - [4182] = {.lex_state = 31}, - [4183] = {.lex_state = 577}, - [4184] = {.lex_state = 124}, - [4185] = {.lex_state = 0}, - [4186] = {.lex_state = 577}, - [4187] = {.lex_state = 577}, - [4188] = {.lex_state = 31}, - [4189] = {.lex_state = 622}, - [4190] = {.lex_state = 190}, - [4191] = {.lex_state = 124}, - [4192] = {.lex_state = 124}, - [4193] = {.lex_state = 245}, - [4194] = {.lex_state = 190}, - [4195] = {.lex_state = 182}, - [4196] = {.lex_state = 124}, - [4197] = {.lex_state = 190}, - [4198] = {.lex_state = 624}, - [4199] = {.lex_state = 190}, - [4200] = {.lex_state = 231}, - [4201] = {.lex_state = 31}, - [4202] = {.lex_state = 31}, - [4203] = {.lex_state = 124}, - [4204] = {.lex_state = 245}, - [4205] = {.lex_state = 182}, - [4206] = {.lex_state = 149}, - [4207] = {.lex_state = 577}, - [4208] = {.lex_state = 231}, - [4209] = {.lex_state = 231}, - [4210] = {.lex_state = 149}, - [4211] = {.lex_state = 0}, - [4212] = {.lex_state = 31}, - [4213] = {.lex_state = 245}, - [4214] = {.lex_state = 149}, - [4215] = {.lex_state = 624}, - [4216] = {.lex_state = 124}, - [4217] = {.lex_state = 31}, - [4218] = {.lex_state = 231}, - [4219] = {.lex_state = 238}, - [4220] = {.lex_state = 31}, - [4221] = {.lex_state = 231}, - [4222] = {.lex_state = 231}, - [4223] = {.lex_state = 238}, - [4224] = {.lex_state = 245}, - [4225] = {.lex_state = 31}, - [4226] = {.lex_state = 31}, - [4227] = {.lex_state = 31}, - [4228] = {.lex_state = 31}, - [4229] = {.lex_state = 226}, - [4230] = {.lex_state = 245}, - [4231] = {.lex_state = 31}, - [4232] = {.lex_state = 577}, - [4233] = {.lex_state = 0}, - [4234] = {.lex_state = 190}, - [4235] = {.lex_state = 124}, - [4236] = {.lex_state = 124}, - [4237] = {.lex_state = 31}, - [4238] = {.lex_state = 124}, - [4239] = {.lex_state = 149}, - [4240] = {.lex_state = 31}, - [4241] = {.lex_state = 31}, - [4242] = {.lex_state = 245}, - [4243] = {.lex_state = 31}, - [4244] = {.lex_state = 31}, - [4245] = {.lex_state = 226}, - [4246] = {.lex_state = 0}, - [4247] = {.lex_state = 124}, - [4248] = {.lex_state = 0}, - [4249] = {.lex_state = 231}, - [4250] = {.lex_state = 31}, - [4251] = {.lex_state = 31}, - [4252] = {.lex_state = 31}, - [4253] = {.lex_state = 231}, - [4254] = {.lex_state = 245}, - [4255] = {.lex_state = 577}, - [4256] = {.lex_state = 124}, - [4257] = {.lex_state = 31}, - [4258] = {.lex_state = 180}, - [4259] = {.lex_state = 31}, - [4260] = {.lex_state = 124}, - [4261] = {.lex_state = 0}, - [4262] = {.lex_state = 226}, - [4263] = {.lex_state = 226}, - [4264] = {.lex_state = 217}, - [4265] = {.lex_state = 31}, - [4266] = {.lex_state = 129}, - [4267] = {.lex_state = 0}, - [4268] = {.lex_state = 89}, - [4269] = {.lex_state = 31}, - [4270] = {.lex_state = 31}, - [4271] = {.lex_state = 0}, - [4272] = {.lex_state = 0}, - [4273] = {.lex_state = 31}, - [4274] = {.lex_state = 129}, - [4275] = {.lex_state = 124}, - [4276] = {.lex_state = 0}, - [4277] = {.lex_state = 124}, - [4278] = {.lex_state = 624}, - [4279] = {.lex_state = 31}, - [4280] = {.lex_state = 0}, - [4281] = {.lex_state = 625}, - [4282] = {.lex_state = 31}, - [4283] = {.lex_state = 245}, - [4284] = {.lex_state = 190}, - [4285] = {.lex_state = 31}, - [4286] = {.lex_state = 226}, - [4287] = {.lex_state = 31}, - [4288] = {.lex_state = 31}, - [4289] = {.lex_state = 31}, - [4290] = {.lex_state = 190}, - [4291] = {.lex_state = 226}, - [4292] = {.lex_state = 182}, - [4293] = {.lex_state = 31}, - [4294] = {.lex_state = 31}, - [4295] = {.lex_state = 190}, - [4296] = {.lex_state = 190}, - [4297] = {.lex_state = 31}, - [4298] = {.lex_state = 124}, - [4299] = {.lex_state = 31}, - [4300] = {.lex_state = 124}, - [4301] = {.lex_state = 238}, - [4302] = {.lex_state = 31}, - [4303] = {.lex_state = 226}, - [4304] = {.lex_state = 31}, - [4305] = {.lex_state = 0}, - [4306] = {.lex_state = 149}, - [4307] = {.lex_state = 31}, - [4308] = {.lex_state = 42}, - [4309] = {.lex_state = 31}, - [4310] = {.lex_state = 264}, - [4311] = {.lex_state = 31}, - [4312] = {.lex_state = 0}, - [4313] = {.lex_state = 245}, - [4314] = {.lex_state = 264}, - [4315] = {.lex_state = 245}, - [4316] = {.lex_state = 31}, - [4317] = {.lex_state = 264}, - [4318] = {.lex_state = 131}, - [4319] = {.lex_state = 42}, - [4320] = {.lex_state = 31}, - [4321] = {.lex_state = 31}, - [4322] = {.lex_state = 31}, - [4323] = {.lex_state = 264}, - [4324] = {.lex_state = 31}, - [4325] = {.lex_state = 31}, - [4326] = {.lex_state = 31}, - [4327] = {.lex_state = 31}, - [4328] = {.lex_state = 31}, - [4329] = {.lex_state = 31}, - [4330] = {.lex_state = 31}, - [4331] = {.lex_state = 31}, - [4332] = {.lex_state = 0}, - [4333] = {.lex_state = 0}, - [4334] = {.lex_state = 31}, - [4335] = {.lex_state = 149}, - [4336] = {.lex_state = 31}, - [4337] = {.lex_state = 31}, - [4338] = {.lex_state = 31}, - [4339] = {.lex_state = 31}, - [4340] = {.lex_state = 31}, - [4341] = {.lex_state = 31}, - [4342] = {.lex_state = 122}, - [4343] = {.lex_state = 245}, - [4344] = {.lex_state = 31}, - [4345] = {.lex_state = 31}, - [4346] = {.lex_state = 31}, - [4347] = {.lex_state = 31}, - [4348] = {.lex_state = 31}, - [4349] = {.lex_state = 122}, - [4350] = {.lex_state = 226}, - [4351] = {.lex_state = 31}, - [4352] = {.lex_state = 0}, - [4353] = {.lex_state = 122}, - [4354] = {.lex_state = 226}, - [4355] = {.lex_state = 0}, - [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 226}, - [4358] = {.lex_state = 0}, - [4359] = {.lex_state = 124}, - [4360] = {.lex_state = 0}, - [4361] = {.lex_state = 0}, - [4362] = {.lex_state = 0}, - [4363] = {.lex_state = 0}, - [4364] = {.lex_state = 93}, - [4365] = {.lex_state = 190}, - [4366] = {.lex_state = 245}, - [4367] = {.lex_state = 124}, - [4368] = {.lex_state = 129}, - [4369] = {.lex_state = 31}, - [4370] = {.lex_state = 31}, - [4371] = {.lex_state = 31}, - [4372] = {.lex_state = 31}, - [4373] = {.lex_state = 577}, - [4374] = {.lex_state = 124}, - [4375] = {.lex_state = 126}, - [4376] = {.lex_state = 0}, - [4377] = {.lex_state = 124}, - [4378] = {.lex_state = 89}, - [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 124}, - [4381] = {.lex_state = 93}, - [4382] = {.lex_state = 46}, - [4383] = {.lex_state = 0}, - [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 0}, - [4386] = {.lex_state = 124}, - [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 124}, - [4389] = {.lex_state = 0}, - [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 624}, + [4133] = {.lex_state = 276}, + [4134] = {.lex_state = 179}, + [4135] = {.lex_state = 216}, + [4136] = {.lex_state = 216}, + [4137] = {.lex_state = 179}, + [4138] = {.lex_state = 216}, + [4139] = {.lex_state = 179}, + [4140] = {.lex_state = 179}, + [4141] = {.lex_state = 179}, + [4142] = {.lex_state = 128}, + [4143] = {.lex_state = 119}, + [4144] = {.lex_state = 216}, + [4145] = {.lex_state = 119}, + [4146] = {.lex_state = 216}, + [4147] = {.lex_state = 90}, + [4148] = {.lex_state = 189}, + [4149] = {.lex_state = 620}, + [4150] = {.lex_state = 577}, + [4151] = {.lex_state = 276}, + [4152] = {.lex_state = 119}, + [4153] = {.lex_state = 119}, + [4154] = {.lex_state = 123}, + [4155] = {.lex_state = 263}, + [4156] = {.lex_state = 252}, + [4157] = {.lex_state = 263}, + [4158] = {.lex_state = 91}, + [4159] = {.lex_state = 119}, + [4160] = {.lex_state = 90}, + [4161] = {.lex_state = 225}, + [4162] = {.lex_state = 216}, + [4163] = {.lex_state = 226}, + [4164] = {.lex_state = 122}, + [4165] = {.lex_state = 90}, + [4166] = {.lex_state = 2}, + [4167] = {.lex_state = 128}, + [4168] = {.lex_state = 216}, + [4169] = {.lex_state = 119}, + [4170] = {.lex_state = 573}, + [4171] = {.lex_state = 651}, + [4172] = {.lex_state = 120}, + [4173] = {.lex_state = 216}, + [4174] = {.lex_state = 125}, + [4175] = {.lex_state = 90}, + [4176] = {.lex_state = 252}, + [4177] = {.lex_state = 120}, + [4178] = {.lex_state = 2}, + [4179] = {.lex_state = 179}, + [4180] = {.lex_state = 33}, + [4181] = {.lex_state = 119}, + [4182] = {.lex_state = 90}, + [4183] = {.lex_state = 0}, + [4184] = {.lex_state = 0}, + [4185] = {.lex_state = 90}, + [4186] = {.lex_state = 620}, + [4187] = {.lex_state = 123}, + [4188] = {.lex_state = 130}, + [4189] = {.lex_state = 0}, + [4190] = {.lex_state = 33}, + [4191] = {.lex_state = 119}, + [4192] = {.lex_state = 130}, + [4193] = {.lex_state = 119}, + [4194] = {.lex_state = 2}, + [4195] = {.lex_state = 119}, + [4196] = {.lex_state = 123}, + [4197] = {.lex_state = 130}, + [4198] = {.lex_state = 35}, + [4199] = {.lex_state = 0}, + [4200] = {.lex_state = 226}, + [4201] = {.lex_state = 33}, + [4202] = {.lex_state = 252}, + [4203] = {.lex_state = 278}, + [4204] = {.lex_state = 2}, + [4205] = {.lex_state = 119}, + [4206] = {.lex_state = 216}, + [4207] = {.lex_state = 33}, + [4208] = {.lex_state = 33}, + [4209] = {.lex_state = 33}, + [4210] = {.lex_state = 189}, + [4211] = {.lex_state = 189}, + [4212] = {.lex_state = 123}, + [4213] = {.lex_state = 33}, + [4214] = {.lex_state = 189}, + [4215] = {.lex_state = 148}, + [4216] = {.lex_state = 0}, + [4217] = {.lex_state = 237}, + [4218] = {.lex_state = 225}, + [4219] = {.lex_state = 121}, + [4220] = {.lex_state = 123}, + [4221] = {.lex_state = 0}, + [4222] = {.lex_state = 245}, + [4223] = {.lex_state = 245}, + [4224] = {.lex_state = 33}, + [4225] = {.lex_state = 33}, + [4226] = {.lex_state = 189}, + [4227] = {.lex_state = 573}, + [4228] = {.lex_state = 148}, + [4229] = {.lex_state = 624}, + [4230] = {.lex_state = 90}, + [4231] = {.lex_state = 123}, + [4232] = {.lex_state = 189}, + [4233] = {.lex_state = 189}, + [4234] = {.lex_state = 33}, + [4235] = {.lex_state = 189}, + [4236] = {.lex_state = 33}, + [4237] = {.lex_state = 189}, + [4238] = {.lex_state = 624}, + [4239] = {.lex_state = 237}, + [4240] = {.lex_state = 121}, + [4241] = {.lex_state = 189}, + [4242] = {.lex_state = 620}, + [4243] = {.lex_state = 189}, + [4244] = {.lex_state = 189}, + [4245] = {.lex_state = 33}, + [4246] = {.lex_state = 237}, + [4247] = {.lex_state = 237}, + [4248] = {.lex_state = 130}, + [4249] = {.lex_state = 123}, + [4250] = {.lex_state = 189}, + [4251] = {.lex_state = 33}, + [4252] = {.lex_state = 189}, + [4253] = {.lex_state = 189}, + [4254] = {.lex_state = 189}, + [4255] = {.lex_state = 189}, + [4256] = {.lex_state = 189}, + [4257] = {.lex_state = 189}, + [4258] = {.lex_state = 189}, + [4259] = {.lex_state = 148}, + [4260] = {.lex_state = 148}, + [4261] = {.lex_state = 125}, + [4262] = {.lex_state = 33}, + [4263] = {.lex_state = 33}, + [4264] = {.lex_state = 148}, + [4265] = {.lex_state = 148}, + [4266] = {.lex_state = 148}, + [4267] = {.lex_state = 148}, + [4268] = {.lex_state = 33}, + [4269] = {.lex_state = 33}, + [4270] = {.lex_state = 33}, + [4271] = {.lex_state = 148}, + [4272] = {.lex_state = 128}, + [4273] = {.lex_state = 125}, + [4274] = {.lex_state = 0}, + [4275] = {.lex_state = 123}, + [4276] = {.lex_state = 43}, + [4277] = {.lex_state = 0}, + [4278] = {.lex_state = 123}, + [4279] = {.lex_state = 0}, + [4280] = {.lex_state = 121}, + [4281] = {.lex_state = 253}, + [4282] = {.lex_state = 33}, + [4283] = {.lex_state = 33}, + [4284] = {.lex_state = 121}, + [4285] = {.lex_state = 33}, + [4286] = {.lex_state = 121}, + [4287] = {.lex_state = 33}, + [4288] = {.lex_state = 33}, + [4289] = {.lex_state = 121}, + [4290] = {.lex_state = 33}, + [4291] = {.lex_state = 121}, + [4292] = {.lex_state = 148}, + [4293] = {.lex_state = 121}, + [4294] = {.lex_state = 148}, + [4295] = {.lex_state = 33}, + [4296] = {.lex_state = 33}, + [4297] = {.lex_state = 33}, + [4298] = {.lex_state = 33}, + [4299] = {.lex_state = 33}, + [4300] = {.lex_state = 189}, + [4301] = {.lex_state = 0}, + [4302] = {.lex_state = 0}, + [4303] = {.lex_state = 33}, + [4304] = {.lex_state = 33}, + [4305] = {.lex_state = 33}, + [4306] = {.lex_state = 125}, + [4307] = {.lex_state = 121}, + [4308] = {.lex_state = 125}, + [4309] = {.lex_state = 125}, + [4310] = {.lex_state = 33}, + [4311] = {.lex_state = 121}, + [4312] = {.lex_state = 121}, + [4313] = {.lex_state = 33}, + [4314] = {.lex_state = 148}, + [4315] = {.lex_state = 125}, + [4316] = {.lex_state = 125}, + [4317] = {.lex_state = 125}, + [4318] = {.lex_state = 225}, + [4319] = {.lex_state = 33}, + [4320] = {.lex_state = 225}, + [4321] = {.lex_state = 216}, + [4322] = {.lex_state = 91}, + [4323] = {.lex_state = 225}, + [4324] = {.lex_state = 0}, + [4325] = {.lex_state = 245}, + [4326] = {.lex_state = 0}, + [4327] = {.lex_state = 33}, + [4328] = {.lex_state = 33}, + [4329] = {.lex_state = 33}, + [4330] = {.lex_state = 33}, + [4331] = {.lex_state = 33}, + [4332] = {.lex_state = 33}, + [4333] = {.lex_state = 33}, + [4334] = {.lex_state = 33}, + [4335] = {.lex_state = 33}, + [4336] = {.lex_state = 0}, + [4337] = {.lex_state = 33}, + [4338] = {.lex_state = 189}, + [4339] = {.lex_state = 189}, + [4340] = {.lex_state = 189}, + [4341] = {.lex_state = 33}, + [4342] = {.lex_state = 33}, + [4343] = {.lex_state = 33}, + [4344] = {.lex_state = 43}, + [4345] = {.lex_state = 123}, + [4346] = {.lex_state = 245}, + [4347] = {.lex_state = 123}, + [4348] = {.lex_state = 128}, + [4349] = {.lex_state = 123}, + [4350] = {.lex_state = 33}, + [4351] = {.lex_state = 33}, + [4352] = {.lex_state = 128}, + [4353] = {.lex_state = 33}, + [4354] = {.lex_state = 33}, + [4355] = {.lex_state = 33}, + [4356] = {.lex_state = 123}, + [4357] = {.lex_state = 245}, + [4358] = {.lex_state = 230}, + [4359] = {.lex_state = 33}, + [4360] = {.lex_state = 33}, + [4361] = {.lex_state = 123}, + [4362] = {.lex_state = 33}, + [4363] = {.lex_state = 33}, + [4364] = {.lex_state = 33}, + [4365] = {.lex_state = 33}, + [4366] = {.lex_state = 230}, + [4367] = {.lex_state = 33}, + [4368] = {.lex_state = 230}, + [4369] = {.lex_state = 33}, + [4370] = {.lex_state = 33}, + [4371] = {.lex_state = 33}, + [4372] = {.lex_state = 33}, + [4373] = {.lex_state = 33}, + [4374] = {.lex_state = 33}, + [4375] = {.lex_state = 245}, + [4376] = {.lex_state = 33}, + [4377] = {.lex_state = 264}, + [4378] = {.lex_state = 33}, + [4379] = {.lex_state = 33}, + [4380] = {.lex_state = 33}, + [4381] = {.lex_state = 33}, + [4382] = {.lex_state = 33}, + [4383] = {.lex_state = 189}, + [4384] = {.lex_state = 181}, + [4385] = {.lex_state = 245}, + [4386] = {.lex_state = 189}, + [4387] = {.lex_state = 33}, + [4388] = {.lex_state = 245}, + [4389] = {.lex_state = 33}, + [4390] = {.lex_state = 33}, + [4391] = {.lex_state = 225}, [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 123}, - [4394] = {.lex_state = 0}, - [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 126}, - [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 46}, - [4401] = {.lex_state = 34}, - [4402] = {.lex_state = 34}, - [4403] = {.lex_state = 0}, - [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 31}, - [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 123}, - [4408] = {.lex_state = 34}, + [4393] = {.lex_state = 33}, + [4394] = {.lex_state = 245}, + [4395] = {.lex_state = 225}, + [4396] = {.lex_state = 225}, + [4397] = {.lex_state = 123}, + [4398] = {.lex_state = 33}, + [4399] = {.lex_state = 189}, + [4400] = {.lex_state = 245}, + [4401] = {.lex_state = 123}, + [4402] = {.lex_state = 245}, + [4403] = {.lex_state = 179}, + [4404] = {.lex_state = 245}, + [4405] = {.lex_state = 0}, + [4406] = {.lex_state = 33}, + [4407] = {.lex_state = 245}, + [4408] = {.lex_state = 33}, [4409] = {.lex_state = 0}, - [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 93}, - [4412] = {.lex_state = 0}, - [4413] = {.lex_state = 93}, - [4414] = {.lex_state = 190}, - [4415] = {.lex_state = 0}, - [4416] = {.lex_state = 0}, - [4417] = {.lex_state = 0}, - [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 0}, - [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 129}, - [4422] = {.lex_state = 0}, - [4423] = {.lex_state = 31}, - [4424] = {.lex_state = 124}, - [4425] = {.lex_state = 124}, - [4426] = {.lex_state = 124}, - [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 271}, - [4429] = {.lex_state = 0}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 34}, - [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, - [4434] = {.lex_state = 0}, - [4435] = {.lex_state = 0}, - [4436] = {.lex_state = 124}, + [4410] = {.lex_state = 245}, + [4411] = {.lex_state = 33}, + [4412] = {.lex_state = 33}, + [4413] = {.lex_state = 189}, + [4414] = {.lex_state = 181}, + [4415] = {.lex_state = 33}, + [4416] = {.lex_state = 33}, + [4417] = {.lex_state = 122}, + [4418] = {.lex_state = 179}, + [4419] = {.lex_state = 230}, + [4420] = {.lex_state = 33}, + [4421] = {.lex_state = 230}, + [4422] = {.lex_state = 573}, + [4423] = {.lex_state = 122}, + [4424] = {.lex_state = 181}, + [4425] = {.lex_state = 122}, + [4426] = {.lex_state = 252}, + [4427] = {.lex_state = 624}, + [4428] = {.lex_state = 230}, + [4429] = {.lex_state = 33}, + [4430] = {.lex_state = 252}, + [4431] = {.lex_state = 33}, + [4432] = {.lex_state = 189}, + [4433] = {.lex_state = 264}, + [4434] = {.lex_state = 33}, + [4435] = {.lex_state = 264}, + [4436] = {.lex_state = 264}, [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 233}, - [4439] = {.lex_state = 149}, - [4440] = {.lex_state = 0}, - [4441] = {.lex_state = 149}, - [4442] = {.lex_state = 0}, - [4443] = {.lex_state = 0}, - [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 149}, - [4446] = {.lex_state = 229}, - [4447] = {.lex_state = 123}, - [4448] = {.lex_state = 149}, - [4449] = {.lex_state = 190}, - [4450] = {.lex_state = 124}, - [4451] = {.lex_state = 124}, - [4452] = {.lex_state = 124}, - [4453] = {.lex_state = 124}, - [4454] = {.lex_state = 149}, - [4455] = {.lex_state = 0}, - [4456] = {.lex_state = 0}, - [4457] = {.lex_state = 0}, - [4458] = {.lex_state = 0}, - [4459] = {.lex_state = 0}, - [4460] = {.lex_state = 31}, - [4461] = {.lex_state = 129}, - [4462] = {.lex_state = 46}, - [4463] = {.lex_state = 46}, - [4464] = {.lex_state = 149}, - [4465] = {.lex_state = 89}, - [4466] = {.lex_state = 46}, - [4467] = {.lex_state = 93}, - [4468] = {.lex_state = 123}, - [4469] = {.lex_state = 611}, - [4470] = {.lex_state = 149}, - [4471] = {.lex_state = 93}, + [4438] = {.lex_state = 123}, + [4439] = {.lex_state = 0}, + [4440] = {.lex_state = 230}, + [4441] = {.lex_state = 574}, + [4442] = {.lex_state = 230}, + [4443] = {.lex_state = 33}, + [4444] = {.lex_state = 123}, + [4445] = {.lex_state = 33}, + [4446] = {.lex_state = 148}, + [4447] = {.lex_state = 230}, + [4448] = {.lex_state = 33}, + [4449] = {.lex_state = 230}, + [4450] = {.lex_state = 573}, + [4451] = {.lex_state = 121}, + [4452] = {.lex_state = 123}, + [4453] = {.lex_state = 268}, + [4454] = {.lex_state = 237}, + [4455] = {.lex_state = 230}, + [4456] = {.lex_state = 121}, + [4457] = {.lex_state = 121}, + [4458] = {.lex_state = 237}, + [4459] = {.lex_state = 245}, + [4460] = {.lex_state = 573}, + [4461] = {.lex_state = 33}, + [4462] = {.lex_state = 33}, + [4463] = {.lex_state = 245}, + [4464] = {.lex_state = 245}, + [4465] = {.lex_state = 123}, + [4466] = {.lex_state = 33}, + [4467] = {.lex_state = 189}, + [4468] = {.lex_state = 33}, + [4469] = {.lex_state = 33}, + [4470] = {.lex_state = 33}, + [4471] = {.lex_state = 33}, [4472] = {.lex_state = 123}, - [4473] = {.lex_state = 231}, - [4474] = {.lex_state = 93}, - [4475] = {.lex_state = 229}, - [4476] = {.lex_state = 190}, - [4477] = {.lex_state = 190}, - [4478] = {.lex_state = 190}, - [4479] = {.lex_state = 124}, - [4480] = {.lex_state = 124}, - [4481] = {.lex_state = 0}, - [4482] = {.lex_state = 149}, - [4483] = {.lex_state = 124}, - [4484] = {.lex_state = 149}, - [4485] = {.lex_state = 232}, - [4486] = {.lex_state = 0}, - [4487] = {.lex_state = 0}, - [4488] = {.lex_state = 0}, - [4489] = {.lex_state = 0}, - [4490] = {.lex_state = 93}, - [4491] = {.lex_state = 278}, - [4492] = {.lex_state = 0}, - [4493] = {.lex_state = 93}, + [4473] = {.lex_state = 123}, + [4474] = {.lex_state = 123}, + [4475] = {.lex_state = 33}, + [4476] = {.lex_state = 225}, + [4477] = {.lex_state = 0}, + [4478] = {.lex_state = 0}, + [4479] = {.lex_state = 33}, + [4480] = {.lex_state = 33}, + [4481] = {.lex_state = 33}, + [4482] = {.lex_state = 264}, + [4483] = {.lex_state = 33}, + [4484] = {.lex_state = 33}, + [4485] = {.lex_state = 230}, + [4486] = {.lex_state = 230}, + [4487] = {.lex_state = 245}, + [4488] = {.lex_state = 33}, + [4489] = {.lex_state = 33}, + [4490] = {.lex_state = 216}, + [4491] = {.lex_state = 33}, + [4492] = {.lex_state = 33}, + [4493] = {.lex_state = 0}, [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 0}, - [4496] = {.lex_state = 124}, - [4497] = {.lex_state = 93}, - [4498] = {.lex_state = 93}, - [4499] = {.lex_state = 229}, + [4495] = {.lex_state = 148}, + [4496] = {.lex_state = 225}, + [4497] = {.lex_state = 0}, + [4498] = {.lex_state = 0}, + [4499] = {.lex_state = 0}, [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 93}, - [4502] = {.lex_state = 180}, - [4503] = {.lex_state = 31}, - [4504] = {.lex_state = 0}, - [4505] = {.lex_state = 124}, - [4506] = {.lex_state = 124}, - [4507] = {.lex_state = 0}, - [4508] = {.lex_state = 0}, - [4509] = {.lex_state = 93}, - [4510] = {.lex_state = 190}, - [4511] = {.lex_state = 190}, - [4512] = {.lex_state = 93}, - [4513] = {.lex_state = 190}, - [4514] = {.lex_state = 124}, - [4515] = {.lex_state = 190}, - [4516] = {.lex_state = 190}, - [4517] = {.lex_state = 190}, - [4518] = {.lex_state = 0}, + [4501] = {.lex_state = 225}, + [4502] = {.lex_state = 0}, + [4503] = {.lex_state = 33}, + [4504] = {.lex_state = 225}, + [4505] = {.lex_state = 33}, + [4506] = {.lex_state = 225}, + [4507] = {.lex_state = 573}, + [4508] = {.lex_state = 573}, + [4509] = {.lex_state = 573}, + [4510] = {.lex_state = 0}, + [4511] = {.lex_state = 0}, + [4512] = {.lex_state = 0}, + [4513] = {.lex_state = 0}, + [4514] = {.lex_state = 43}, + [4515] = {.lex_state = 189}, + [4516] = {.lex_state = 123}, + [4517] = {.lex_state = 123}, + [4518] = {.lex_state = 33}, [4519] = {.lex_state = 0}, - [4520] = {.lex_state = 149}, - [4521] = {.lex_state = 0}, - [4522] = {.lex_state = 31}, - [4523] = {.lex_state = 0}, - [4524] = {.lex_state = 124}, - [4525] = {.lex_state = 0}, - [4526] = {.lex_state = 124}, - [4527] = {.lex_state = 0}, - [4528] = {.lex_state = 0}, + [4520] = {.lex_state = 47}, + [4521] = {.lex_state = 597}, + [4522] = {.lex_state = 47}, + [4523] = {.lex_state = 240}, + [4524] = {.lex_state = 123}, + [4525] = {.lex_state = 240}, + [4526] = {.lex_state = 123}, + [4527] = {.lex_state = 123}, + [4528] = {.lex_state = 33}, [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 278}, - [4531] = {.lex_state = 124}, - [4532] = {.lex_state = 31}, - [4533] = {.lex_state = 0}, - [4534] = {.lex_state = 0}, + [4530] = {.lex_state = 240}, + [4531] = {.lex_state = 122}, + [4532] = {.lex_state = 123}, + [4533] = {.lex_state = 148}, + [4534] = {.lex_state = 148}, [4535] = {.lex_state = 0}, - [4536] = {.lex_state = 124}, - [4537] = {.lex_state = 31}, - [4538] = {.lex_state = 0}, - [4539] = {.lex_state = 149}, - [4540] = {.lex_state = 629}, - [4541] = {.lex_state = 34}, - [4542] = {.lex_state = 124}, - [4543] = {.lex_state = 149}, - [4544] = {.lex_state = 278}, - [4545] = {.lex_state = 0}, - [4546] = {.lex_state = 0}, - [4547] = {.lex_state = 46}, - [4548] = {.lex_state = 0}, - [4549] = {.lex_state = 124}, - [4550] = {.lex_state = 0}, - [4551] = {.lex_state = 124}, - [4552] = {.lex_state = 34}, - [4553] = {.lex_state = 0}, - [4554] = {.lex_state = 124}, - [4555] = {.lex_state = 31}, - [4556] = {.lex_state = 124}, - [4557] = {.lex_state = 124}, - [4558] = {.lex_state = 124}, - [4559] = {.lex_state = 124}, - [4560] = {.lex_state = 0}, - [4561] = {.lex_state = 0}, + [4536] = {.lex_state = 0}, + [4537] = {.lex_state = 148}, + [4538] = {.lex_state = 123}, + [4539] = {.lex_state = 0}, + [4540] = {.lex_state = 123}, + [4541] = {.lex_state = 148}, + [4542] = {.lex_state = 240}, + [4543] = {.lex_state = 123}, + [4544] = {.lex_state = 148}, + [4545] = {.lex_state = 148}, + [4546] = {.lex_state = 148}, + [4547] = {.lex_state = 33}, + [4548] = {.lex_state = 123}, + [4549] = {.lex_state = 123}, + [4550] = {.lex_state = 189}, + [4551] = {.lex_state = 123}, + [4552] = {.lex_state = 33}, + [4553] = {.lex_state = 36}, + [4554] = {.lex_state = 123}, + [4555] = {.lex_state = 0}, + [4556] = {.lex_state = 148}, + [4557] = {.lex_state = 123}, + [4558] = {.lex_state = 148}, + [4559] = {.lex_state = 33}, + [4560] = {.lex_state = 271}, + [4561] = {.lex_state = 33}, [4562] = {.lex_state = 0}, [4563] = {.lex_state = 0}, - [4564] = {.lex_state = 0}, - [4565] = {.lex_state = 0}, - [4566] = {.lex_state = 124}, + [4564] = {.lex_state = 240}, + [4565] = {.lex_state = 189}, + [4566] = {.lex_state = 0}, [4567] = {.lex_state = 0}, - [4568] = {.lex_state = 124}, - [4569] = {.lex_state = 124}, - [4570] = {.lex_state = 124}, - [4571] = {.lex_state = 124}, - [4572] = {.lex_state = 149}, - [4573] = {.lex_state = 271}, - [4574] = {.lex_state = 149}, - [4575] = {.lex_state = 190}, - [4576] = {.lex_state = 190}, - [4577] = {.lex_state = 31}, - [4578] = {.lex_state = 124}, - [4579] = {.lex_state = 31}, - [4580] = {.lex_state = 124}, - [4581] = {.lex_state = 124}, - [4582] = {.lex_state = 0}, - [4583] = {.lex_state = 124}, - [4584] = {.lex_state = 226}, + [4568] = {.lex_state = 179}, + [4569] = {.lex_state = 0}, + [4570] = {.lex_state = 0}, + [4571] = {.lex_state = 33}, + [4572] = {.lex_state = 123}, + [4573] = {.lex_state = 0}, + [4574] = {.lex_state = 43}, + [4575] = {.lex_state = 0}, + [4576] = {.lex_state = 0}, + [4577] = {.lex_state = 0}, + [4578] = {.lex_state = 33}, + [4579] = {.lex_state = 0}, + [4580] = {.lex_state = 189}, + [4581] = {.lex_state = 189}, + [4582] = {.lex_state = 47}, + [4583] = {.lex_state = 0}, + [4584] = {.lex_state = 0}, [4585] = {.lex_state = 0}, - [4586] = {.lex_state = 124}, - [4587] = {.lex_state = 31}, - [4588] = {.lex_state = 124}, - [4589] = {.lex_state = 31}, - [4590] = {.lex_state = 124}, - [4591] = {.lex_state = 31}, - [4592] = {.lex_state = 31}, - [4593] = {.lex_state = 31}, - [4594] = {.lex_state = 254}, - [4595] = {.lex_state = 124}, - [4596] = {.lex_state = 190}, - [4597] = {.lex_state = 31}, - [4598] = {.lex_state = 269}, - [4599] = {.lex_state = 46}, - [4600] = {.lex_state = 93}, - [4601] = {.lex_state = 232}, - [4602] = {.lex_state = 31}, - [4603] = {.lex_state = 34}, + [4586] = {.lex_state = 278}, + [4587] = {.lex_state = 123}, + [4588] = {.lex_state = 0}, + [4589] = {.lex_state = 271}, + [4590] = {.lex_state = 278}, + [4591] = {.lex_state = 0}, + [4592] = {.lex_state = 123}, + [4593] = {.lex_state = 189}, + [4594] = {.lex_state = 33}, + [4595] = {.lex_state = 231}, + [4596] = {.lex_state = 33}, + [4597] = {.lex_state = 0}, + [4598] = {.lex_state = 240}, + [4599] = {.lex_state = 240}, + [4600] = {.lex_state = 122}, + [4601] = {.lex_state = 231}, + [4602] = {.lex_state = 33}, + [4603] = {.lex_state = 123}, [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 577}, - [4606] = {.lex_state = 190}, - [4607] = {.lex_state = 124}, - [4608] = {.lex_state = 124}, - [4609] = {.lex_state = 93}, - [4610] = {.lex_state = 229}, - [4611] = {.lex_state = 0}, - [4612] = {.lex_state = 42}, - [4613] = {.lex_state = 123}, - [4614] = {.lex_state = 629}, - [4615] = {.lex_state = 124}, - [4616] = {.lex_state = 31}, - [4617] = {.lex_state = 31}, - [4618] = {.lex_state = 149}, - [4619] = {.lex_state = 31}, - [4620] = {.lex_state = 149}, - [4621] = {.lex_state = 93}, - [4622] = {.lex_state = 0}, - [4623] = {.lex_state = 2182}, + [4605] = {.lex_state = 230}, + [4606] = {.lex_state = 36}, + [4607] = {.lex_state = 148}, + [4608] = {.lex_state = 0}, + [4609] = {.lex_state = 0}, + [4610] = {.lex_state = 0}, + [4611] = {.lex_state = 123}, + [4612] = {.lex_state = 33}, + [4613] = {.lex_state = 0}, + [4614] = {.lex_state = 33}, + [4615] = {.lex_state = 148}, + [4616] = {.lex_state = 240}, + [4617] = {.lex_state = 228}, + [4618] = {.lex_state = 0}, + [4619] = {.lex_state = 228}, + [4620] = {.lex_state = 122}, + [4621] = {.lex_state = 0}, + [4622] = {.lex_state = 36}, + [4623] = {.lex_state = 33}, [4624] = {.lex_state = 0}, - [4625] = {.lex_state = 2182}, - [4626] = {.lex_state = 2182}, - [4627] = {.lex_state = 2182}, - [4628] = {.lex_state = 2182}, + [4625] = {.lex_state = 0}, + [4626] = {.lex_state = 0}, + [4627] = {.lex_state = 123}, + [4628] = {.lex_state = 0}, [4629] = {.lex_state = 0}, - [4630] = {.lex_state = 2186}, - [4631] = {.lex_state = 2186}, - [4632] = {.lex_state = 2186}, - [4633] = {.lex_state = 2186}, + [4630] = {.lex_state = 628}, + [4631] = {.lex_state = 0}, + [4632] = {.lex_state = 0}, + [4633] = {.lex_state = 123}, [4634] = {.lex_state = 0}, - [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 124}, - [4637] = {.lex_state = 0}, + [4635] = {.lex_state = 123}, + [4636] = {.lex_state = 123}, + [4637] = {.lex_state = 33}, [4638] = {.lex_state = 0}, [4639] = {.lex_state = 0}, - [4640] = {.lex_state = 629}, - [4641] = {.lex_state = 126}, + [4640] = {.lex_state = 0}, + [4641] = {.lex_state = 0}, [4642] = {.lex_state = 0}, - [4643] = {.lex_state = 0}, + [4643] = {.lex_state = 33}, [4644] = {.lex_state = 0}, [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 2182}, + [4646] = {.lex_state = 123}, [4647] = {.lex_state = 0}, - [4648] = {.lex_state = 0}, - [4649] = {.lex_state = 2186}, - [4650] = {.lex_state = 2186}, - [4651] = {.lex_state = 0}, - [4652] = {.lex_state = 149}, - [4653] = {.lex_state = 229}, - [4654] = {.lex_state = 124}, - [4655] = {.lex_state = 2186}, - [4656] = {.lex_state = 124}, - [4657] = {.lex_state = 2182}, - [4658] = {.lex_state = 2182}, - [4659] = {.lex_state = 0}, - [4660] = {.lex_state = 229}, - [4661] = {.lex_state = 229}, - [4662] = {.lex_state = 0}, - [4663] = {.lex_state = 2182}, + [4648] = {.lex_state = 91}, + [4649] = {.lex_state = 0}, + [4650] = {.lex_state = 0}, + [4651] = {.lex_state = 125}, + [4652] = {.lex_state = 0}, + [4653] = {.lex_state = 0}, + [4654] = {.lex_state = 0}, + [4655] = {.lex_state = 128}, + [4656] = {.lex_state = 0}, + [4657] = {.lex_state = 269}, + [4658] = {.lex_state = 0}, + [4659] = {.lex_state = 123}, + [4660] = {.lex_state = 628}, + [4661] = {.lex_state = 33}, + [4662] = {.lex_state = 36}, + [4663] = {.lex_state = 0}, [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 2182}, - [4666] = {.lex_state = 0}, + [4665] = {.lex_state = 0}, + [4666] = {.lex_state = 573}, [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 0}, - [4669] = {.lex_state = 229}, - [4670] = {.lex_state = 0}, - [4671] = {.lex_state = 229}, + [4668] = {.lex_state = 33}, + [4669] = {.lex_state = 33}, + [4670] = {.lex_state = 189}, + [4671] = {.lex_state = 189}, [4672] = {.lex_state = 0}, - [4673] = {.lex_state = 229}, - [4674] = {.lex_state = 578}, - [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 124}, - [4677] = {.lex_state = 229}, - [4678] = {.lex_state = 124}, - [4679] = {.lex_state = 0}, - [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 124}, - [4682] = {.lex_state = 124}, - [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 124}, - [4685] = {.lex_state = 226}, - [4686] = {.lex_state = 0}, - [4687] = {.lex_state = 0}, - [4688] = {.lex_state = 0}, + [4673] = {.lex_state = 148}, + [4674] = {.lex_state = 240}, + [4675] = {.lex_state = 122}, + [4676] = {.lex_state = 123}, + [4677] = {.lex_state = 123}, + [4678] = {.lex_state = 123}, + [4679] = {.lex_state = 123}, + [4680] = {.lex_state = 123}, + [4681] = {.lex_state = 148}, + [4682] = {.lex_state = 123}, + [4683] = {.lex_state = 123}, + [4684] = {.lex_state = 240}, + [4685] = {.lex_state = 228}, + [4686] = {.lex_state = 36}, + [4687] = {.lex_state = 123}, + [4688] = {.lex_state = 36}, [4689] = {.lex_state = 0}, - [4690] = {.lex_state = 0}, + [4690] = {.lex_state = 36}, [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 0}, - [4693] = {.lex_state = 0}, - [4694] = {.lex_state = 0}, - [4695] = {.lex_state = 229}, + [4692] = {.lex_state = 123}, + [4693] = {.lex_state = 232}, + [4694] = {.lex_state = 123}, + [4695] = {.lex_state = 123}, [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 229}, - [4698] = {.lex_state = 229}, + [4697] = {.lex_state = 91}, + [4698] = {.lex_state = 0}, [4699] = {.lex_state = 0}, - [4700] = {.lex_state = 123}, - [4701] = {.lex_state = 124}, - [4702] = {.lex_state = 0}, + [4700] = {.lex_state = 0}, + [4701] = {.lex_state = 123}, + [4702] = {.lex_state = 189}, [4703] = {.lex_state = 0}, [4704] = {.lex_state = 0}, [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 577}, - [4707] = {.lex_state = 0}, - [4708] = {.lex_state = 2184}, - [4709] = {.lex_state = 149}, - [4710] = {.lex_state = 124}, - [4711] = {.lex_state = 124}, - [4712] = {.lex_state = 34}, - [4713] = {.lex_state = 229}, - [4714] = {.lex_state = 2186}, - [4715] = {.lex_state = 31}, - [4716] = {.lex_state = 124}, - [4717] = {.lex_state = 124}, - [4718] = {.lex_state = 0}, + [4706] = {.lex_state = 123}, + [4707] = {.lex_state = 36}, + [4708] = {.lex_state = 240}, + [4709] = {.lex_state = 0}, + [4710] = {.lex_state = 123}, + [4711] = {.lex_state = 47}, + [4712] = {.lex_state = 47}, + [4713] = {.lex_state = 0}, + [4714] = {.lex_state = 0}, + [4715] = {.lex_state = 0}, + [4716] = {.lex_state = 47}, + [4717] = {.lex_state = 240}, + [4718] = {.lex_state = 189}, [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 124}, - [4721] = {.lex_state = 124}, - [4722] = {.lex_state = 0}, - [4723] = {.lex_state = 229}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 2182}, + [4720] = {.lex_state = 189}, + [4721] = {.lex_state = 189}, + [4722] = {.lex_state = 240}, + [4723] = {.lex_state = 122}, + [4724] = {.lex_state = 33}, + [4725] = {.lex_state = 0}, [4726] = {.lex_state = 0}, - [4727] = {.lex_state = 124}, - [4728] = {.lex_state = 2184}, - [4729] = {.lex_state = 124}, - [4730] = {.lex_state = 124}, - [4731] = {.lex_state = 124}, - [4732] = {.lex_state = 124}, - [4733] = {.lex_state = 126}, - [4734] = {.lex_state = 0}, - [4735] = {.lex_state = 2184}, - [4736] = {.lex_state = 124}, - [4737] = {.lex_state = 0}, - [4738] = {.lex_state = 0}, - [4739] = {.lex_state = 2182}, - [4740] = {.lex_state = 0}, - [4741] = {.lex_state = 123}, - [4742] = {.lex_state = 124}, - [4743] = {.lex_state = 126}, - [4744] = {.lex_state = 124}, - [4745] = {.lex_state = 624}, - [4746] = {.lex_state = 2182}, - [4747] = {.lex_state = 0}, - [4748] = {.lex_state = 124}, - [4749] = {.lex_state = 124}, - [4750] = {.lex_state = 124}, - [4751] = {.lex_state = 2184}, - [4752] = {.lex_state = 577}, - [4753] = {.lex_state = 124}, - [4754] = {.lex_state = 124}, - [4755] = {.lex_state = 2182}, - [4756] = {.lex_state = 0}, - [4757] = {.lex_state = 2182}, - [4758] = {.lex_state = 124}, - [4759] = {.lex_state = 624}, - [4760] = {.lex_state = 149}, - [4761] = {.lex_state = 124}, - [4762] = {.lex_state = 149}, + [4727] = {.lex_state = 123}, + [4728] = {.lex_state = 0}, + [4729] = {.lex_state = 123}, + [4730] = {.lex_state = 624}, + [4731] = {.lex_state = 123}, + [4732] = {.lex_state = 33}, + [4733] = {.lex_state = 33}, + [4734] = {.lex_state = 573}, + [4735] = {.lex_state = 123}, + [4736] = {.lex_state = 189}, + [4737] = {.lex_state = 189}, + [4738] = {.lex_state = 122}, + [4739] = {.lex_state = 0}, + [4740] = {.lex_state = 123}, + [4741] = {.lex_state = 128}, + [4742] = {.lex_state = 189}, + [4743] = {.lex_state = 189}, + [4744] = {.lex_state = 228}, + [4745] = {.lex_state = 0}, + [4746] = {.lex_state = 0}, + [4747] = {.lex_state = 47}, + [4748] = {.lex_state = 33}, + [4749] = {.lex_state = 123}, + [4750] = {.lex_state = 33}, + [4751] = {.lex_state = 33}, + [4752] = {.lex_state = 148}, + [4753] = {.lex_state = 123}, + [4754] = {.lex_state = 240}, + [4755] = {.lex_state = 125}, + [4756] = {.lex_state = 148}, + [4757] = {.lex_state = 33}, + [4758] = {.lex_state = 123}, + [4759] = {.lex_state = 254}, + [4760] = {.lex_state = 225}, + [4761] = {.lex_state = 0}, + [4762] = {.lex_state = 240}, [4763] = {.lex_state = 0}, - [4764] = {.lex_state = 2184}, - [4765] = {.lex_state = 124}, - [4766] = {.lex_state = 93}, - [4767] = {.lex_state = 124}, - [4768] = {.lex_state = 124}, - [4769] = {.lex_state = 273}, - [4770] = {.lex_state = 124}, - [4771] = {.lex_state = 0}, - [4772] = {.lex_state = 1714}, - [4773] = {.lex_state = 273}, - [4774] = {.lex_state = 124}, - [4775] = {.lex_state = 2182}, - [4776] = {.lex_state = 0}, - [4777] = {.lex_state = 2182}, - [4778] = {.lex_state = 124}, - [4779] = {.lex_state = 0}, - [4780] = {.lex_state = 124}, - [4781] = {.lex_state = 0}, - [4782] = {.lex_state = 0}, - [4783] = {.lex_state = 2}, - [4784] = {.lex_state = 31}, - [4785] = {.lex_state = 124}, - [4786] = {.lex_state = 229}, - [4787] = {.lex_state = 229}, - [4788] = {.lex_state = 0}, - [4789] = {.lex_state = 2186}, - [4790] = {.lex_state = 124}, - [4791] = {.lex_state = 123}, - [4792] = {.lex_state = 0}, - [4793] = {.lex_state = 577}, - [4794] = {.lex_state = 577}, - [4795] = {.lex_state = 31}, + [4764] = {.lex_state = 33}, + [4765] = {.lex_state = 123}, + [4766] = {.lex_state = 240}, + [4767] = {.lex_state = 278}, + [4768] = {.lex_state = 0}, + [4769] = {.lex_state = 33}, + [4770] = {.lex_state = 123}, + [4771] = {.lex_state = 128}, + [4772] = {.lex_state = 0}, + [4773] = {.lex_state = 148}, + [4774] = {.lex_state = 0}, + [4775] = {.lex_state = 123}, + [4776] = {.lex_state = 33}, + [4777] = {.lex_state = 123}, + [4778] = {.lex_state = 0}, + [4779] = {.lex_state = 228}, + [4780] = {.lex_state = 123}, + [4781] = {.lex_state = 1713}, + [4782] = {.lex_state = 123}, + [4783] = {.lex_state = 123}, + [4784] = {.lex_state = 123}, + [4785] = {.lex_state = 123}, + [4786] = {.lex_state = 624}, + [4787] = {.lex_state = 624}, + [4788] = {.lex_state = 123}, + [4789] = {.lex_state = 123}, + [4790] = {.lex_state = 228}, + [4791] = {.lex_state = 0}, + [4792] = {.lex_state = 574}, + [4793] = {.lex_state = 123}, + [4794] = {.lex_state = 228}, + [4795] = {.lex_state = 0}, [4796] = {.lex_state = 0}, - [4797] = {.lex_state = 0}, - [4798] = {.lex_state = 31}, - [4799] = {.lex_state = 31}, - [4800] = {.lex_state = 0}, - [4801] = {.lex_state = 0, .external_lex_state = 3}, - [4802] = {.lex_state = 1189}, - [4803] = {.lex_state = 0}, - [4804] = {.lex_state = 31}, - [4805] = {.lex_state = 0, .external_lex_state = 3}, - [4806] = {.lex_state = 0}, - [4807] = {.lex_state = 31}, - [4808] = {.lex_state = 31}, - [4809] = {.lex_state = 0}, - [4810] = {.lex_state = 0}, - [4811] = {.lex_state = 0}, - [4812] = {.lex_state = 0}, - [4813] = {.lex_state = 577}, - [4814] = {.lex_state = 577}, + [4797] = {.lex_state = 240}, + [4798] = {.lex_state = 0}, + [4799] = {.lex_state = 0}, + [4800] = {.lex_state = 123}, + [4801] = {.lex_state = 2181}, + [4802] = {.lex_state = 2181}, + [4803] = {.lex_state = 2183}, + [4804] = {.lex_state = 148}, + [4805] = {.lex_state = 148}, + [4806] = {.lex_state = 2181}, + [4807] = {.lex_state = 2181}, + [4808] = {.lex_state = 2181}, + [4809] = {.lex_state = 123}, + [4810] = {.lex_state = 123}, + [4811] = {.lex_state = 2181}, + [4812] = {.lex_state = 125}, + [4813] = {.lex_state = 0}, + [4814] = {.lex_state = 0}, [4815] = {.lex_state = 0}, - [4816] = {.lex_state = 0}, - [4817] = {.lex_state = 31}, - [4818] = {.lex_state = 1189}, - [4819] = {.lex_state = 0}, - [4820] = {.lex_state = 0}, - [4821] = {.lex_state = 46}, - [4822] = {.lex_state = 0, .external_lex_state = 3}, - [4823] = {.lex_state = 1189}, - [4824] = {.lex_state = 0}, - [4825] = {.lex_state = 123}, - [4826] = {.lex_state = 0}, - [4827] = {.lex_state = 31}, - [4828] = {.lex_state = 0}, - [4829] = {.lex_state = 0}, - [4830] = {.lex_state = 577}, - [4831] = {.lex_state = 577}, - [4832] = {.lex_state = 31}, - [4833] = {.lex_state = 1714}, - [4834] = {.lex_state = 577}, - [4835] = {.lex_state = 31}, - [4836] = {.lex_state = 622}, - [4837] = {.lex_state = 0, .external_lex_state = 3}, - [4838] = {.lex_state = 29}, - [4839] = {.lex_state = 31}, + [4816] = {.lex_state = 228}, + [4817] = {.lex_state = 0}, + [4818] = {.lex_state = 0}, + [4819] = {.lex_state = 2185}, + [4820] = {.lex_state = 228}, + [4821] = {.lex_state = 0}, + [4822] = {.lex_state = 123}, + [4823] = {.lex_state = 123}, + [4824] = {.lex_state = 123}, + [4825] = {.lex_state = 0}, + [4826] = {.lex_state = 148}, + [4827] = {.lex_state = 125}, + [4828] = {.lex_state = 123}, + [4829] = {.lex_state = 125}, + [4830] = {.lex_state = 123}, + [4831] = {.lex_state = 0}, + [4832] = {.lex_state = 228}, + [4833] = {.lex_state = 122}, + [4834] = {.lex_state = 0}, + [4835] = {.lex_state = 123}, + [4836] = {.lex_state = 0}, + [4837] = {.lex_state = 0}, + [4838] = {.lex_state = 2181}, + [4839] = {.lex_state = 2181}, [4840] = {.lex_state = 0}, - [4841] = {.lex_state = 2184}, + [4841] = {.lex_state = 0}, [4842] = {.lex_state = 0}, [4843] = {.lex_state = 0}, - [4844] = {.lex_state = 577}, - [4845] = {.lex_state = 577}, - [4846] = {.lex_state = 31}, - [4847] = {.lex_state = 0, .external_lex_state = 3}, - [4848] = {.lex_state = 2}, - [4849] = {.lex_state = 46}, - [4850] = {.lex_state = 0, .external_lex_state = 3}, - [4851] = {.lex_state = 229}, - [4852] = {.lex_state = 0}, - [4853] = {.lex_state = 233}, - [4854] = {.lex_state = 0}, - [4855] = {.lex_state = 0}, - [4856] = {.lex_state = 577}, - [4857] = {.lex_state = 577}, + [4844] = {.lex_state = 0}, + [4845] = {.lex_state = 0}, + [4846] = {.lex_state = 123}, + [4847] = {.lex_state = 0}, + [4848] = {.lex_state = 0}, + [4849] = {.lex_state = 0}, + [4850] = {.lex_state = 0}, + [4851] = {.lex_state = 123}, + [4852] = {.lex_state = 123}, + [4853] = {.lex_state = 123}, + [4854] = {.lex_state = 2185}, + [4855] = {.lex_state = 2185}, + [4856] = {.lex_state = 2181}, + [4857] = {.lex_state = 2181}, [4858] = {.lex_state = 0}, - [4859] = {.lex_state = 0}, - [4860] = {.lex_state = 0, .external_lex_state = 3}, - [4861] = {.lex_state = 232}, - [4862] = {.lex_state = 2}, + [4859] = {.lex_state = 123}, + [4860] = {.lex_state = 228}, + [4861] = {.lex_state = 123}, + [4862] = {.lex_state = 0}, [4863] = {.lex_state = 0}, [4864] = {.lex_state = 0}, - [4865] = {.lex_state = 577}, - [4866] = {.lex_state = 577}, - [4867] = {.lex_state = 229}, - [4868] = {.lex_state = 31}, - [4869] = {.lex_state = 0, .external_lex_state = 3}, - [4870] = {.lex_state = 0}, - [4871] = {.lex_state = 31}, - [4872] = {.lex_state = 229}, + [4865] = {.lex_state = 0}, + [4866] = {.lex_state = 0}, + [4867] = {.lex_state = 2183}, + [4868] = {.lex_state = 0}, + [4869] = {.lex_state = 36}, + [4870] = {.lex_state = 123}, + [4871] = {.lex_state = 2185}, + [4872] = {.lex_state = 0}, [4873] = {.lex_state = 0}, - [4874] = {.lex_state = 577}, - [4875] = {.lex_state = 577}, - [4876] = {.lex_state = 31}, - [4877] = {.lex_state = 2186}, - [4878] = {.lex_state = 0, .external_lex_state = 3}, - [4879] = {.lex_state = 0}, - [4880] = {.lex_state = 0}, - [4881] = {.lex_state = 577}, - [4882] = {.lex_state = 577}, - [4883] = {.lex_state = 0, .external_lex_state = 3}, - [4884] = {.lex_state = 229}, - [4885] = {.lex_state = 0, .external_lex_state = 3}, + [4874] = {.lex_state = 0}, + [4875] = {.lex_state = 0}, + [4876] = {.lex_state = 573}, + [4877] = {.lex_state = 0}, + [4878] = {.lex_state = 123}, + [4879] = {.lex_state = 123}, + [4880] = {.lex_state = 228}, + [4881] = {.lex_state = 2181}, + [4882] = {.lex_state = 123}, + [4883] = {.lex_state = 123}, + [4884] = {.lex_state = 2181}, + [4885] = {.lex_state = 0}, [4886] = {.lex_state = 0}, [4887] = {.lex_state = 0}, - [4888] = {.lex_state = 577}, - [4889] = {.lex_state = 577}, - [4890] = {.lex_state = 577}, - [4891] = {.lex_state = 31}, - [4892] = {.lex_state = 0, .external_lex_state = 3}, - [4893] = {.lex_state = 31}, + [4888] = {.lex_state = 273}, + [4889] = {.lex_state = 123}, + [4890] = {.lex_state = 628}, + [4891] = {.lex_state = 273}, + [4892] = {.lex_state = 123}, + [4893] = {.lex_state = 2181}, [4894] = {.lex_state = 0}, - [4895] = {.lex_state = 577}, - [4896] = {.lex_state = 577}, - [4897] = {.lex_state = 31}, + [4895] = {.lex_state = 0}, + [4896] = {.lex_state = 33}, + [4897] = {.lex_state = 123}, [4898] = {.lex_state = 0}, - [4899] = {.lex_state = 0, .external_lex_state = 3}, - [4900] = {.lex_state = 0}, - [4901] = {.lex_state = 0}, - [4902] = {.lex_state = 577}, - [4903] = {.lex_state = 577}, - [4904] = {.lex_state = 0}, - [4905] = {.lex_state = 2184}, - [4906] = {.lex_state = 0, .external_lex_state = 3}, + [4899] = {.lex_state = 228}, + [4900] = {.lex_state = 2185}, + [4901] = {.lex_state = 225}, + [4902] = {.lex_state = 123}, + [4903] = {.lex_state = 2185}, + [4904] = {.lex_state = 2}, + [4905] = {.lex_state = 0}, + [4906] = {.lex_state = 2185}, [4907] = {.lex_state = 0}, - [4908] = {.lex_state = 0}, - [4909] = {.lex_state = 577}, - [4910] = {.lex_state = 577}, - [4911] = {.lex_state = 0}, - [4912] = {.lex_state = 0, .external_lex_state = 3}, + [4908] = {.lex_state = 228}, + [4909] = {.lex_state = 0}, + [4910] = {.lex_state = 0}, + [4911] = {.lex_state = 123}, + [4912] = {.lex_state = 123}, [4913] = {.lex_state = 0}, - [4914] = {.lex_state = 577}, - [4915] = {.lex_state = 577}, - [4916] = {.lex_state = 0, .external_lex_state = 4}, - [4917] = {.lex_state = 31}, - [4918] = {.lex_state = 229}, + [4914] = {.lex_state = 0}, + [4915] = {.lex_state = 123}, + [4916] = {.lex_state = 2183}, + [4917] = {.lex_state = 0}, + [4918] = {.lex_state = 123}, [4919] = {.lex_state = 0}, - [4920] = {.lex_state = 0}, - [4921] = {.lex_state = 1689}, - [4922] = {.lex_state = 1693}, - [4923] = {.lex_state = 664}, - [4924] = {.lex_state = 577}, - [4925] = {.lex_state = 31}, - [4926] = {.lex_state = 0}, - [4927] = {.lex_state = 232}, - [4928] = {.lex_state = 232}, - [4929] = {.lex_state = 0}, - [4930] = {.lex_state = 0}, + [4920] = {.lex_state = 2183}, + [4921] = {.lex_state = 0}, + [4922] = {.lex_state = 148}, + [4923] = {.lex_state = 0}, + [4924] = {.lex_state = 228}, + [4925] = {.lex_state = 2185}, + [4926] = {.lex_state = 2185}, + [4927] = {.lex_state = 33}, + [4928] = {.lex_state = 0}, + [4929] = {.lex_state = 2181}, + [4930] = {.lex_state = 2181}, [4931] = {.lex_state = 0}, - [4932] = {.lex_state = 0}, - [4933] = {.lex_state = 31}, - [4934] = {.lex_state = 0}, - [4935] = {.lex_state = 29}, - [4936] = {.lex_state = 2186}, - [4937] = {.lex_state = 29}, - [4938] = {.lex_state = 31}, - [4939] = {.lex_state = 0}, - [4940] = {.lex_state = 577}, - [4941] = {.lex_state = 0}, - [4942] = {.lex_state = 0}, - [4943] = {.lex_state = 624}, + [4932] = {.lex_state = 573}, + [4933] = {.lex_state = 2181}, + [4934] = {.lex_state = 2181}, + [4935] = {.lex_state = 2183}, + [4936] = {.lex_state = 228}, + [4937] = {.lex_state = 0}, + [4938] = {.lex_state = 0}, + [4939] = {.lex_state = 123}, + [4940] = {.lex_state = 122}, + [4941] = {.lex_state = 123}, + [4942] = {.lex_state = 228}, + [4943] = {.lex_state = 123}, [4944] = {.lex_state = 0}, - [4945] = {.lex_state = 577}, - [4946] = {.lex_state = 229}, + [4945] = {.lex_state = 0}, + [4946] = {.lex_state = 228}, [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 2182}, - [4949] = {.lex_state = 0}, - [4950] = {.lex_state = 622}, - [4951] = {.lex_state = 148}, - [4952] = {.lex_state = 1189}, - [4953] = {.lex_state = 31}, - [4954] = {.lex_state = 274}, + [4948] = {.lex_state = 33}, + [4949] = {.lex_state = 1188}, + [4950] = {.lex_state = 0}, + [4951] = {.lex_state = 0}, + [4952] = {.lex_state = 33}, + [4953] = {.lex_state = 620}, + [4954] = {.lex_state = 33}, [4955] = {.lex_state = 0}, - [4956] = {.lex_state = 577}, - [4957] = {.lex_state = 148}, - [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 622}, - [4960] = {.lex_state = 622}, + [4956] = {.lex_state = 1188}, + [4957] = {.lex_state = 0, .external_lex_state = 3}, + [4958] = {.lex_state = 231}, + [4959] = {.lex_state = 228}, + [4960] = {.lex_state = 0}, [4961] = {.lex_state = 0}, - [4962] = {.lex_state = 1189}, - [4963] = {.lex_state = 148}, + [4962] = {.lex_state = 0}, + [4963] = {.lex_state = 0}, [4964] = {.lex_state = 0}, - [4965] = {.lex_state = 0}, - [4966] = {.lex_state = 2184}, - [4967] = {.lex_state = 622}, - [4968] = {.lex_state = 31}, - [4969] = {.lex_state = 29}, - [4970] = {.lex_state = 1189}, - [4971] = {.lex_state = 29}, + [4965] = {.lex_state = 573}, + [4966] = {.lex_state = 573}, + [4967] = {.lex_state = 33}, + [4968] = {.lex_state = 0}, + [4969] = {.lex_state = 147}, + [4970] = {.lex_state = 0}, + [4971] = {.lex_state = 0, .external_lex_state = 3}, [4972] = {.lex_state = 0}, - [4973] = {.lex_state = 1689}, - [4974] = {.lex_state = 0}, + [4973] = {.lex_state = 573}, + [4974] = {.lex_state = 33}, [4975] = {.lex_state = 0}, - [4976] = {.lex_state = 0}, - [4977] = {.lex_state = 2197}, - [4978] = {.lex_state = 123}, - [4979] = {.lex_state = 1189}, - [4980] = {.lex_state = 0}, - [4981] = {.lex_state = 1693}, - [4982] = {.lex_state = 31}, - [4983] = {.lex_state = 31}, - [4984] = {.lex_state = 0}, - [4985] = {.lex_state = 0}, - [4986] = {.lex_state = 0}, - [4987] = {.lex_state = 29}, - [4988] = {.lex_state = 0, .external_lex_state = 3}, - [4989] = {.lex_state = 229}, - [4990] = {.lex_state = 0, .external_lex_state = 3}, - [4991] = {.lex_state = 664}, - [4992] = {.lex_state = 229}, - [4993] = {.lex_state = 0}, - [4994] = {.lex_state = 0}, - [4995] = {.lex_state = 0}, - [4996] = {.lex_state = 229}, - [4997] = {.lex_state = 232}, - [4998] = {.lex_state = 0, .external_lex_state = 4}, - [4999] = {.lex_state = 29}, - [5000] = {.lex_state = 2}, - [5001] = {.lex_state = 123}, - [5002] = {.lex_state = 622}, + [4976] = {.lex_state = 573}, + [4977] = {.lex_state = 0}, + [4978] = {.lex_state = 0}, + [4979] = {.lex_state = 0}, + [4980] = {.lex_state = 573}, + [4981] = {.lex_state = 573}, + [4982] = {.lex_state = 33}, + [4983] = {.lex_state = 33}, + [4984] = {.lex_state = 33}, + [4985] = {.lex_state = 228}, + [4986] = {.lex_state = 0, .external_lex_state = 3}, + [4987] = {.lex_state = 0, .external_lex_state = 3}, + [4988] = {.lex_state = 573}, + [4989] = {.lex_state = 573}, + [4990] = {.lex_state = 0}, + [4991] = {.lex_state = 228}, + [4992] = {.lex_state = 0}, + [4993] = {.lex_state = 573}, + [4994] = {.lex_state = 573}, + [4995] = {.lex_state = 1188}, + [4996] = {.lex_state = 33}, + [4997] = {.lex_state = 0, .external_lex_state = 3}, + [4998] = {.lex_state = 0}, + [4999] = {.lex_state = 122}, + [5000] = {.lex_state = 147}, + [5001] = {.lex_state = 0}, + [5002] = {.lex_state = 0}, [5003] = {.lex_state = 0}, - [5004] = {.lex_state = 31}, - [5005] = {.lex_state = 2}, - [5006] = {.lex_state = 31}, + [5004] = {.lex_state = 573}, + [5005] = {.lex_state = 573}, + [5006] = {.lex_state = 0}, [5007] = {.lex_state = 0}, - [5008] = {.lex_state = 0}, - [5009] = {.lex_state = 123}, - [5010] = {.lex_state = 0}, - [5011] = {.lex_state = 0}, - [5012] = {.lex_state = 0}, + [5008] = {.lex_state = 0, .external_lex_state = 3}, + [5009] = {.lex_state = 0}, + [5010] = {.lex_state = 231}, + [5011] = {.lex_state = 620}, + [5012] = {.lex_state = 231}, [5013] = {.lex_state = 0}, - [5014] = {.lex_state = 0}, - [5015] = {.lex_state = 0}, - [5016] = {.lex_state = 0}, + [5014] = {.lex_state = 573}, + [5015] = {.lex_state = 573}, + [5016] = {.lex_state = 2181}, [5017] = {.lex_state = 0}, - [5018] = {.lex_state = 0}, - [5019] = {.lex_state = 31}, - [5020] = {.lex_state = 0, .external_lex_state = 3}, - [5021] = {.lex_state = 229}, - [5022] = {.lex_state = 0}, - [5023] = {.lex_state = 622}, - [5024] = {.lex_state = 2182}, - [5025] = {.lex_state = 31}, - [5026] = {.lex_state = 29}, - [5027] = {.lex_state = 31}, - [5028] = {.lex_state = 577}, - [5029] = {.lex_state = 0, .external_lex_state = 3}, - [5030] = {.lex_state = 31}, - [5031] = {.lex_state = 577}, - [5032] = {.lex_state = 229}, - [5033] = {.lex_state = 622}, - [5034] = {.lex_state = 31}, - [5035] = {.lex_state = 0}, - [5036] = {.lex_state = 622}, - [5037] = {.lex_state = 577}, - [5038] = {.lex_state = 229}, - [5039] = {.lex_state = 2}, + [5018] = {.lex_state = 0, .external_lex_state = 3}, + [5019] = {.lex_state = 2196}, + [5020] = {.lex_state = 0}, + [5021] = {.lex_state = 573}, + [5022] = {.lex_state = 573}, + [5023] = {.lex_state = 0}, + [5024] = {.lex_state = 33}, + [5025] = {.lex_state = 0, .external_lex_state = 3}, + [5026] = {.lex_state = 2}, + [5027] = {.lex_state = 0}, + [5028] = {.lex_state = 573}, + [5029] = {.lex_state = 573}, + [5030] = {.lex_state = 1188}, + [5031] = {.lex_state = 0}, + [5032] = {.lex_state = 0, .external_lex_state = 3}, + [5033] = {.lex_state = 231}, + [5034] = {.lex_state = 0}, + [5035] = {.lex_state = 573}, + [5036] = {.lex_state = 573}, + [5037] = {.lex_state = 0}, + [5038] = {.lex_state = 33}, + [5039] = {.lex_state = 0, .external_lex_state = 3}, [5040] = {.lex_state = 0}, [5041] = {.lex_state = 0}, - [5042] = {.lex_state = 1189}, - [5043] = {.lex_state = 0}, + [5042] = {.lex_state = 573}, + [5043] = {.lex_state = 573}, [5044] = {.lex_state = 0}, - [5045] = {.lex_state = 148}, - [5046] = {.lex_state = 31}, - [5047] = {.lex_state = 0}, - [5048] = {.lex_state = 2182}, - [5049] = {.lex_state = 31}, - [5050] = {.lex_state = 229}, + [5045] = {.lex_state = 33}, + [5046] = {.lex_state = 0, .external_lex_state = 3}, + [5047] = {.lex_state = 122}, + [5048] = {.lex_state = 0}, + [5049] = {.lex_state = 573}, + [5050] = {.lex_state = 573}, [5051] = {.lex_state = 0}, - [5052] = {.lex_state = 31}, + [5052] = {.lex_state = 0, .external_lex_state = 3}, [5053] = {.lex_state = 0}, [5054] = {.lex_state = 0}, - [5055] = {.lex_state = 0}, - [5056] = {.lex_state = 0}, - [5057] = {.lex_state = 0, .external_lex_state = 4}, - [5058] = {.lex_state = 0}, - [5059] = {.lex_state = 1689}, - [5060] = {.lex_state = 1693}, - [5061] = {.lex_state = 0}, - [5062] = {.lex_state = 232}, - [5063] = {.lex_state = 622}, - [5064] = {.lex_state = 624}, - [5065] = {.lex_state = 0}, - [5066] = {.lex_state = 0}, - [5067] = {.lex_state = 31}, - [5068] = {.lex_state = 229}, - [5069] = {.lex_state = 232}, - [5070] = {.lex_state = 577}, - [5071] = {.lex_state = 1189}, - [5072] = {.lex_state = 577}, - [5073] = {.lex_state = 232}, + [5055] = {.lex_state = 573}, + [5056] = {.lex_state = 573}, + [5057] = {.lex_state = 0}, + [5058] = {.lex_state = 0, .external_lex_state = 3}, + [5059] = {.lex_state = 33}, + [5060] = {.lex_state = 0}, + [5061] = {.lex_state = 573}, + [5062] = {.lex_state = 573}, + [5063] = {.lex_state = 0}, + [5064] = {.lex_state = 0, .external_lex_state = 4}, + [5065] = {.lex_state = 33}, + [5066] = {.lex_state = 47}, + [5067] = {.lex_state = 33}, + [5068] = {.lex_state = 0}, + [5069] = {.lex_state = 1688}, + [5070] = {.lex_state = 1692}, + [5071] = {.lex_state = 228}, + [5072] = {.lex_state = 1188}, + [5073] = {.lex_state = 0}, [5074] = {.lex_state = 0}, - [5075] = {.lex_state = 232}, + [5075] = {.lex_state = 0}, [5076] = {.lex_state = 0}, - [5077] = {.lex_state = 232}, - [5078] = {.lex_state = 577}, - [5079] = {.lex_state = 577}, + [5077] = {.lex_state = 0, .external_lex_state = 3}, + [5078] = {.lex_state = 0}, + [5079] = {.lex_state = 0}, [5080] = {.lex_state = 0}, [5081] = {.lex_state = 0}, - [5082] = {.lex_state = 1189}, - [5083] = {.lex_state = 622}, - [5084] = {.lex_state = 123}, - [5085] = {.lex_state = 0}, - [5086] = {.lex_state = 232}, - [5087] = {.lex_state = 0}, - [5088] = {.lex_state = 622}, - [5089] = {.lex_state = 624}, - [5090] = {.lex_state = 31}, + [5082] = {.lex_state = 0}, + [5083] = {.lex_state = 1188}, + [5084] = {.lex_state = 0}, + [5085] = {.lex_state = 33}, + [5086] = {.lex_state = 33}, + [5087] = {.lex_state = 147}, + [5088] = {.lex_state = 0}, + [5089] = {.lex_state = 33}, + [5090] = {.lex_state = 624}, [5091] = {.lex_state = 0}, - [5092] = {.lex_state = 622}, - [5093] = {.lex_state = 622}, - [5094] = {.lex_state = 0, .external_lex_state = 4}, + [5092] = {.lex_state = 228}, + [5093] = {.lex_state = 33}, + [5094] = {.lex_state = 0}, [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 1689}, - [5097] = {.lex_state = 1693}, + [5096] = {.lex_state = 0}, + [5097] = {.lex_state = 33}, [5098] = {.lex_state = 0}, - [5099] = {.lex_state = 624}, - [5100] = {.lex_state = 123}, - [5101] = {.lex_state = 31}, - [5102] = {.lex_state = 0}, - [5103] = {.lex_state = 2}, - [5104] = {.lex_state = 31}, - [5105] = {.lex_state = 31}, - [5106] = {.lex_state = 0, .external_lex_state = 4}, - [5107] = {.lex_state = 0}, - [5108] = {.lex_state = 1689}, - [5109] = {.lex_state = 1693}, - [5110] = {.lex_state = 0, .external_lex_state = 4}, - [5111] = {.lex_state = 0}, - [5112] = {.lex_state = 1689}, - [5113] = {.lex_state = 1693}, - [5114] = {.lex_state = 0, .external_lex_state = 4}, - [5115] = {.lex_state = 0}, - [5116] = {.lex_state = 1689}, - [5117] = {.lex_state = 1693}, - [5118] = {.lex_state = 0, .external_lex_state = 4}, - [5119] = {.lex_state = 1689}, - [5120] = {.lex_state = 1693}, - [5121] = {.lex_state = 0, .external_lex_state = 4}, - [5122] = {.lex_state = 1689}, - [5123] = {.lex_state = 1693}, - [5124] = {.lex_state = 0, .external_lex_state = 4}, - [5125] = {.lex_state = 1689}, - [5126] = {.lex_state = 1693}, - [5127] = {.lex_state = 0, .external_lex_state = 4}, - [5128] = {.lex_state = 1689}, - [5129] = {.lex_state = 1693}, - [5130] = {.lex_state = 0, .external_lex_state = 4}, - [5131] = {.lex_state = 1689}, - [5132] = {.lex_state = 1693}, - [5133] = {.lex_state = 0, .external_lex_state = 4}, - [5134] = {.lex_state = 1689}, - [5135] = {.lex_state = 1693}, - [5136] = {.lex_state = 0, .external_lex_state = 4}, - [5137] = {.lex_state = 1689}, - [5138] = {.lex_state = 1693}, - [5139] = {.lex_state = 0, .external_lex_state = 4}, - [5140] = {.lex_state = 1689}, - [5141] = {.lex_state = 1693}, - [5142] = {.lex_state = 0, .external_lex_state = 4}, - [5143] = {.lex_state = 1689}, - [5144] = {.lex_state = 1693}, - [5145] = {.lex_state = 0, .external_lex_state = 4}, - [5146] = {.lex_state = 1689}, - [5147] = {.lex_state = 1693}, - [5148] = {.lex_state = 0, .external_lex_state = 4}, - [5149] = {.lex_state = 1689}, - [5150] = {.lex_state = 1693}, - [5151] = {.lex_state = 0, .external_lex_state = 4}, - [5152] = {.lex_state = 1689}, - [5153] = {.lex_state = 1693}, - [5154] = {.lex_state = 0, .external_lex_state = 4}, - [5155] = {.lex_state = 1689}, - [5156] = {.lex_state = 1693}, - [5157] = {.lex_state = 1189}, - [5158] = {.lex_state = 0, .external_lex_state = 3}, - [5159] = {.lex_state = 0}, + [5099] = {.lex_state = 0}, + [5100] = {.lex_state = 620}, + [5101] = {.lex_state = 228}, + [5102] = {.lex_state = 33}, + [5103] = {.lex_state = 33}, + [5104] = {.lex_state = 0}, + [5105] = {.lex_state = 0, .external_lex_state = 3}, + [5106] = {.lex_state = 0}, + [5107] = {.lex_state = 33}, + [5108] = {.lex_state = 0}, + [5109] = {.lex_state = 47}, + [5110] = {.lex_state = 0}, + [5111] = {.lex_state = 620}, + [5112] = {.lex_state = 228}, + [5113] = {.lex_state = 620}, + [5114] = {.lex_state = 0}, + [5115] = {.lex_state = 33}, + [5116] = {.lex_state = 0}, + [5117] = {.lex_state = 2}, + [5118] = {.lex_state = 0}, + [5119] = {.lex_state = 573}, + [5120] = {.lex_state = 0, .external_lex_state = 4}, + [5121] = {.lex_state = 0}, + [5122] = {.lex_state = 0}, + [5123] = {.lex_state = 2183}, + [5124] = {.lex_state = 0}, + [5125] = {.lex_state = 228}, + [5126] = {.lex_state = 31}, + [5127] = {.lex_state = 33}, + [5128] = {.lex_state = 0}, + [5129] = {.lex_state = 122}, + [5130] = {.lex_state = 620}, + [5131] = {.lex_state = 0}, + [5132] = {.lex_state = 1188}, + [5133] = {.lex_state = 0}, + [5134] = {.lex_state = 573}, + [5135] = {.lex_state = 573}, + [5136] = {.lex_state = 620}, + [5137] = {.lex_state = 0}, + [5138] = {.lex_state = 0}, + [5139] = {.lex_state = 0}, + [5140] = {.lex_state = 232}, + [5141] = {.lex_state = 31}, + [5142] = {.lex_state = 33}, + [5143] = {.lex_state = 0}, + [5144] = {.lex_state = 122}, + [5145] = {.lex_state = 1188}, + [5146] = {.lex_state = 147}, + [5147] = {.lex_state = 0}, + [5148] = {.lex_state = 0}, + [5149] = {.lex_state = 0}, + [5150] = {.lex_state = 0}, + [5151] = {.lex_state = 663}, + [5152] = {.lex_state = 0}, + [5153] = {.lex_state = 231}, + [5154] = {.lex_state = 0}, + [5155] = {.lex_state = 0}, + [5156] = {.lex_state = 231}, + [5157] = {.lex_state = 231}, + [5158] = {.lex_state = 573}, + [5159] = {.lex_state = 231}, [5160] = {.lex_state = 0}, - [5161] = {.lex_state = 29}, - [5162] = {.lex_state = 0}, - [5163] = {.lex_state = 0}, - [5164] = {.lex_state = 577}, - [5165] = {.lex_state = 0}, - [5166] = {.lex_state = 239}, - [5167] = {.lex_state = 0}, - [5168] = {.lex_state = 0}, - [5169] = {.lex_state = 0}, - [5170] = {.lex_state = 2186}, - [5171] = {.lex_state = 275}, - [5172] = {.lex_state = 0}, - [5173] = {.lex_state = 31}, - [5174] = {.lex_state = 0}, - [5175] = {.lex_state = 31}, - [5176] = {.lex_state = 0}, - [5177] = {.lex_state = 0}, - [5178] = {.lex_state = 0}, - [5179] = {.lex_state = 31}, - [5180] = {.lex_state = 0}, - [5181] = {.lex_state = 0}, - [5182] = {.lex_state = 1189}, + [5161] = {.lex_state = 0}, + [5162] = {.lex_state = 33}, + [5163] = {.lex_state = 573}, + [5164] = {.lex_state = 1188}, + [5165] = {.lex_state = 31}, + [5166] = {.lex_state = 0}, + [5167] = {.lex_state = 0, .external_lex_state = 3}, + [5168] = {.lex_state = 33}, + [5169] = {.lex_state = 231}, + [5170] = {.lex_state = 231}, + [5171] = {.lex_state = 2181}, + [5172] = {.lex_state = 620}, + [5173] = {.lex_state = 0}, + [5174] = {.lex_state = 2185}, + [5175] = {.lex_state = 122}, + [5176] = {.lex_state = 228}, + [5177] = {.lex_state = 228}, + [5178] = {.lex_state = 2185}, + [5179] = {.lex_state = 573}, + [5180] = {.lex_state = 2}, + [5181] = {.lex_state = 1688}, + [5182] = {.lex_state = 33}, [5183] = {.lex_state = 0}, - [5184] = {.lex_state = 31}, - [5185] = {.lex_state = 0}, - [5186] = {.lex_state = 0}, - [5187] = {.lex_state = 577}, - [5188] = {.lex_state = 577}, - [5189] = {.lex_state = 31}, - [5190] = {.lex_state = 0}, + [5184] = {.lex_state = 0}, + [5185] = {.lex_state = 1188}, + [5186] = {.lex_state = 620}, + [5187] = {.lex_state = 0}, + [5188] = {.lex_state = 31}, + [5189] = {.lex_state = 2}, + [5190] = {.lex_state = 275}, [5191] = {.lex_state = 0}, - [5192] = {.lex_state = 232}, - [5193] = {.lex_state = 1189}, - [5194] = {.lex_state = 622}, - [5195] = {.lex_state = 622}, - [5196] = {.lex_state = 1189}, - [5197] = {.lex_state = 622}, - [5198] = {.lex_state = 31}, - [5199] = {.lex_state = 232}, - [5200] = {.lex_state = 622}, - [5201] = {.lex_state = 29}, + [5192] = {.lex_state = 0, .external_lex_state = 3}, + [5193] = {.lex_state = 33}, + [5194] = {.lex_state = 33}, + [5195] = {.lex_state = 274}, + [5196] = {.lex_state = 33}, + [5197] = {.lex_state = 0}, + [5198] = {.lex_state = 122}, + [5199] = {.lex_state = 231}, + [5200] = {.lex_state = 0}, + [5201] = {.lex_state = 0}, [5202] = {.lex_state = 0}, - [5203] = {(TSStateId)(-1),}, + [5203] = {.lex_state = 0}, + [5204] = {.lex_state = 0}, + [5205] = {.lex_state = 2}, + [5206] = {.lex_state = 0}, + [5207] = {.lex_state = 33}, + [5208] = {.lex_state = 2183}, + [5209] = {.lex_state = 2183}, + [5210] = {.lex_state = 33}, + [5211] = {.lex_state = 0, .external_lex_state = 4}, + [5212] = {.lex_state = 0}, + [5213] = {.lex_state = 1688}, + [5214] = {.lex_state = 1692}, + [5215] = {.lex_state = 228}, + [5216] = {.lex_state = 0}, + [5217] = {.lex_state = 624}, + [5218] = {.lex_state = 0, .external_lex_state = 3}, + [5219] = {.lex_state = 33}, + [5220] = {.lex_state = 0}, + [5221] = {.lex_state = 0, .external_lex_state = 3}, + [5222] = {.lex_state = 620}, + [5223] = {.lex_state = 620}, + [5224] = {.lex_state = 0}, + [5225] = {.lex_state = 573}, + [5226] = {.lex_state = 573}, + [5227] = {.lex_state = 228}, + [5228] = {.lex_state = 0}, + [5229] = {.lex_state = 620}, + [5230] = {.lex_state = 573}, + [5231] = {.lex_state = 1188}, + [5232] = {.lex_state = 620}, + [5233] = {.lex_state = 0}, + [5234] = {.lex_state = 0}, + [5235] = {.lex_state = 573}, + [5236] = {.lex_state = 33}, + [5237] = {.lex_state = 620}, + [5238] = {.lex_state = 0}, + [5239] = {.lex_state = 1692}, + [5240] = {.lex_state = 33}, + [5241] = {.lex_state = 0}, + [5242] = {.lex_state = 0}, + [5243] = {.lex_state = 231}, + [5244] = {.lex_state = 33}, + [5245] = {.lex_state = 0}, + [5246] = {.lex_state = 573}, + [5247] = {.lex_state = 573}, + [5248] = {.lex_state = 0}, + [5249] = {.lex_state = 0}, + [5250] = {.lex_state = 1188}, + [5251] = {.lex_state = 620}, + [5252] = {.lex_state = 0}, + [5253] = {.lex_state = 0, .external_lex_state = 4}, + [5254] = {.lex_state = 0}, + [5255] = {.lex_state = 1688}, + [5256] = {.lex_state = 1692}, + [5257] = {.lex_state = 1188}, + [5258] = {.lex_state = 624}, + [5259] = {.lex_state = 620}, + [5260] = {.lex_state = 31}, + [5261] = {.lex_state = 573}, + [5262] = {.lex_state = 0, .external_lex_state = 4}, + [5263] = {.lex_state = 0}, + [5264] = {.lex_state = 1688}, + [5265] = {.lex_state = 1692}, + [5266] = {.lex_state = 0, .external_lex_state = 4}, + [5267] = {.lex_state = 0}, + [5268] = {.lex_state = 1688}, + [5269] = {.lex_state = 1692}, + [5270] = {.lex_state = 0, .external_lex_state = 4}, + [5271] = {.lex_state = 0}, + [5272] = {.lex_state = 1688}, + [5273] = {.lex_state = 1692}, + [5274] = {.lex_state = 0, .external_lex_state = 4}, + [5275] = {.lex_state = 1688}, + [5276] = {.lex_state = 1692}, + [5277] = {.lex_state = 0, .external_lex_state = 4}, + [5278] = {.lex_state = 1688}, + [5279] = {.lex_state = 1692}, + [5280] = {.lex_state = 0, .external_lex_state = 4}, + [5281] = {.lex_state = 1688}, + [5282] = {.lex_state = 1692}, + [5283] = {.lex_state = 0, .external_lex_state = 4}, + [5284] = {.lex_state = 1688}, + [5285] = {.lex_state = 1692}, + [5286] = {.lex_state = 0, .external_lex_state = 4}, + [5287] = {.lex_state = 1688}, + [5288] = {.lex_state = 1692}, + [5289] = {.lex_state = 0, .external_lex_state = 4}, + [5290] = {.lex_state = 1688}, + [5291] = {.lex_state = 1692}, + [5292] = {.lex_state = 0, .external_lex_state = 4}, + [5293] = {.lex_state = 1688}, + [5294] = {.lex_state = 1692}, + [5295] = {.lex_state = 0, .external_lex_state = 4}, + [5296] = {.lex_state = 1688}, + [5297] = {.lex_state = 1692}, + [5298] = {.lex_state = 0, .external_lex_state = 4}, + [5299] = {.lex_state = 1688}, + [5300] = {.lex_state = 1692}, + [5301] = {.lex_state = 0, .external_lex_state = 4}, + [5302] = {.lex_state = 1688}, + [5303] = {.lex_state = 1692}, + [5304] = {.lex_state = 0, .external_lex_state = 4}, + [5305] = {.lex_state = 1688}, + [5306] = {.lex_state = 1692}, + [5307] = {.lex_state = 0, .external_lex_state = 4}, + [5308] = {.lex_state = 1688}, + [5309] = {.lex_state = 1692}, + [5310] = {.lex_state = 0, .external_lex_state = 4}, + [5311] = {.lex_state = 1688}, + [5312] = {.lex_state = 1692}, + [5313] = {.lex_state = 0, .external_lex_state = 4}, + [5314] = {.lex_state = 1688}, + [5315] = {.lex_state = 1692}, + [5316] = {.lex_state = 228}, + [5317] = {.lex_state = 620}, + [5318] = {.lex_state = 0}, + [5319] = {.lex_state = 0}, + [5320] = {.lex_state = 0}, + [5321] = {.lex_state = 31}, + [5322] = {.lex_state = 573}, + [5323] = {.lex_state = 0}, + [5324] = {.lex_state = 0}, + [5325] = {.lex_state = 33}, + [5326] = {.lex_state = 0}, + [5327] = {.lex_state = 33}, + [5328] = {.lex_state = 31}, + [5329] = {.lex_state = 1188}, + [5330] = {.lex_state = 2}, + [5331] = {.lex_state = 1188}, + [5332] = {.lex_state = 0}, + [5333] = {.lex_state = 0}, + [5334] = {.lex_state = 0}, + [5335] = {.lex_state = 2185}, + [5336] = {.lex_state = 1713}, + [5337] = {.lex_state = 33}, + [5338] = {.lex_state = 33}, + [5339] = {.lex_state = 31}, + [5340] = {.lex_state = 0}, + [5341] = {.lex_state = 31}, + [5342] = {.lex_state = 0}, + [5343] = {.lex_state = 33}, + [5344] = {.lex_state = 624}, + [5345] = {.lex_state = 620}, + [5346] = {.lex_state = 0, .external_lex_state = 3}, + [5347] = {.lex_state = 33}, + [5348] = {.lex_state = 663}, + [5349] = {.lex_state = 33}, + [5350] = {.lex_state = 122}, + [5351] = {.lex_state = 33}, + [5352] = {.lex_state = 0}, + [5353] = {.lex_state = 0}, + [5354] = {.lex_state = 0}, + [5355] = {.lex_state = 122}, + [5356] = {.lex_state = 0}, + [5357] = {.lex_state = 238}, + [5358] = {.lex_state = 0}, + [5359] = {.lex_state = 0}, + [5360] = {.lex_state = 33}, + [5361] = {.lex_state = 33}, + [5362] = {.lex_state = 0}, + [5363] = {.lex_state = 33}, + [5364] = {.lex_state = 33}, + [5365] = {.lex_state = 0}, + [5366] = {.lex_state = 33}, + [5367] = {.lex_state = 0}, + [5368] = {.lex_state = 33}, + [5369] = {.lex_state = 0, .external_lex_state = 3}, + [5370] = {.lex_state = 0}, + [5371] = {.lex_state = 1188}, + [5372] = {.lex_state = 31}, + [5373] = {.lex_state = 228}, + [5374] = {.lex_state = 0}, + [5375] = {.lex_state = 0}, + [5376] = {.lex_state = 573}, + [5377] = {.lex_state = 573}, + [5378] = {.lex_state = 2181}, + [5379] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -38322,76 +38813,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [STATE(1)] = { - [sym_nu_script] = STATE(5165), - [sym_shebang] = STATE(71), - [sym__block_body_statement] = STATE(4167), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym__block_body] = STATE(5186), - [sym_cmd_identifier] = STATE(2895), - [aux_sym__repeat_newline] = STATE(4614), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), + [sym_nu_script] = STATE(5124), + [sym_shebang] = STATE(52), + [sym__block_body_statement] = STATE(4274), + [sym__declaration] = STATE(4535), + [sym_decl_alias] = STATE(4536), + [sym_stmt_let] = STATE(4555), + [sym_stmt_mut] = STATE(4555), + [sym_stmt_const] = STATE(4555), + [sym_assignment] = STATE(4555), + [sym__mutable_assignment_pattern] = STATE(4579), + [sym__statement] = STATE(4535), + [sym_pipeline] = STATE(4555), + [sym__block_body] = STATE(5040), + [sym_cmd_identifier] = STATE(2947), + [aux_sym__repeat_newline] = STATE(4630), + [sym_attribute_list] = STATE(4666), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4536), + [sym_decl_export] = STATE(4536), + [sym_decl_extern] = STATE(4536), + [sym_decl_module] = STATE(4536), + [sym_decl_use] = STATE(4536), + [sym__ctrl_statement] = STATE(4555), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_for] = STATE(4772), + [sym_ctrl_loop] = STATE(4772), + [sym_ctrl_while] = STATE(4772), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(447), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipeline_repeat1] = STATE(189), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(291), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -38454,85 +38946,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(2)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5055), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym__match_pattern_record_body] = STATE(5085), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(397), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4542), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5201), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(16), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(47), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym__match_pattern_record_body] = STATE(5370), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(391), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5216), + [sym_record_entry] = STATE(4740), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(2), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(501), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(511), + [aux_sym__match_pattern_record_body_repeat1] = STATE(793), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38599,83 +39092,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(3)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4919), - [sym_cmd_identifier] = STATE(2590), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5057), + [sym_cmd_identifier] = STATE(2679), [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(50), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4947), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5183), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(3), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38742,83 +39236,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(4)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5011), - [sym_cmd_identifier] = STATE(2590), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5076), + [sym_cmd_identifier] = STATE(2679), [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(64), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(47), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5053), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5216), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(4), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38885,83 +39380,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(5)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4810), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5201), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(16), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(47), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4995), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5216), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(5), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39028,83 +39524,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(6)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5178), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5128), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(50), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5183), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(6), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39171,83 +39668,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(7)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5055), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5206), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(21), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(4998), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(7), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39314,83 +39812,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(8)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4811), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5249), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(21), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4995), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(4998), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(8), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39457,83 +39956,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(9)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5160), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(53), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5238), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5176), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5241), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(9), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39600,83 +40100,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(10)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4994), - [sym_cmd_identifier] = STATE(2590), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(4970), + [sym_cmd_identifier] = STATE(2679), [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(57), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(58), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5012), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5106), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(10), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39743,83 +40244,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(11)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4900), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(23), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(61), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(4950), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(25), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(62), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4929), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(4968), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(11), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39886,83 +40388,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(12)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5011), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(64), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5104), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(65), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5015), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5116), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(12), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40029,83 +40532,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(13)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4898), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5104), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(65), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4947), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5220), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(13), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40172,83 +40676,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(14)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4898), - [sym_cmd_identifier] = STATE(2590), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5057), + [sym_cmd_identifier] = STATE(2679), [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(50), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4941), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5088), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(14), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40315,83 +40820,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(15)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4810), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5206), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(21), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(794), + [sym__spread_parenthesized] = STATE(4883), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym__spread_variable] = STATE(4892), [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5043), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(1144), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(1144), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(1144), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5202), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(15), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40458,74 +40964,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(16)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5061), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(66), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5358), + [sym_cmd_identifier] = STATE(2812), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(49), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(16), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -40589,74 +41096,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(17)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5008), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(69), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5333), + [sym_cmd_identifier] = STATE(2812), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(36), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(17), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -40720,74 +41228,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(18)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4852), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(55), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5206), + [sym_cmd_identifier] = STATE(2812), + [aux_sym__repeat_newline] = STATE(21), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(18), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -40851,74 +41360,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(19)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4819), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(44), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5057), + [sym_cmd_identifier] = STATE(2812), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(50), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(19), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -40982,74 +41492,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(20)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5185), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(59), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5031), + [sym_cmd_identifier] = STATE(2812), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(60), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(20), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -41113,74 +41624,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(21)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4811), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5082), + [sym_cmd_identifier] = STATE(2812), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(44), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -41244,74 +41756,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(22)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4810), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5320), + [sym_cmd_identifier] = STATE(2812), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(56), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -41375,74 +41888,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(23)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4961), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(63), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5128), + [sym_cmd_identifier] = STATE(2812), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(50), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -41506,74 +42020,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(24)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4898), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5249), + [sym_cmd_identifier] = STATE(2812), + [aux_sym__repeat_newline] = STATE(21), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -41637,74 +42152,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(25)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5172), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(73), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5009), + [sym_cmd_identifier] = STATE(2812), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(64), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -41768,74 +42284,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(26)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4919), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5154), + [sym_cmd_identifier] = STATE(2812), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(67), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -41899,73 +42416,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(27)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4983), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5102), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(27), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42028,73 +42546,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(28)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5184), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5193), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(28), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42157,73 +42676,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(29)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5006), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5127), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(29), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42286,73 +42806,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(30)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5101), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5210), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(30), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42415,73 +42936,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(31)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4827), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5236), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(31), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42544,73 +43066,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(32)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5046), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5085), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(32), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42673,73 +43196,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(33)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5049), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5207), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(33), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42780,7 +43304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(363), + [anon_sym_RPAREN2] = ACTIONS(347), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42802,73 +43326,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(34)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4938), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5045), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(34), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42909,7 +43434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(359), + [anon_sym_RPAREN2] = ACTIONS(363), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42931,73 +43456,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(35)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4832), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5103), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(35), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43059,78 +43585,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(36)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5034), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(4955), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(36), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(292), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43140,9 +43667,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -43157,19 +43684,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(371), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(371), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43182,83 +43709,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(37)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5163), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5196), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(37), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43268,9 +43796,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -43285,19 +43813,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(373), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(373), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43310,78 +43838,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(38)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5198), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5045), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(38), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43443,78 +43972,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(39)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4827), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5007), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(39), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(292), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43524,9 +44054,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -43541,19 +44071,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(377), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43566,83 +44096,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(40)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4828), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5059), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(40), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43652,9 +44183,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -43669,19 +44200,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(379), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43694,83 +44225,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(41)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4868), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5002), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(41), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(292), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43780,9 +44312,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -43797,19 +44329,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(381), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(381), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43822,77 +44354,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(42)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4976), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5149), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -43955,73 +44488,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(43)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5105), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5182), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(43), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44083,72 +44617,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(44)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5081), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5121), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -44211,329 +44746,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(45)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4859), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5127), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(46)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4839), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(46), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(47)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4983), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(47), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44565,7 +44845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44594,74 +44874,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(48)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5090), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(46)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5240), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(46), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44693,7 +44974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44722,73 +45003,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(49)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5174), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [STATE(47)] = { + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5362), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(47), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -44824,7 +45106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(393), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -44850,74 +45132,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(50)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5175), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(48)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5363), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(48), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44949,7 +45232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(395), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44978,74 +45261,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(49)] = { + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5044), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(49), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(292), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(50)] = { + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5187), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(50), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(292), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, [STATE(51)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5046), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5207), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45107,73 +45649,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(52)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5049), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4274), + [sym__declaration] = STATE(4535), + [sym_decl_alias] = STATE(4536), + [sym_stmt_let] = STATE(4555), + [sym_stmt_mut] = STATE(4555), + [sym_stmt_const] = STATE(4555), + [sym_assignment] = STATE(4555), + [sym__mutable_assignment_pattern] = STATE(4579), + [sym__statement] = STATE(4535), + [sym_pipeline] = STATE(4555), + [sym__block_body] = STATE(5108), + [sym_cmd_identifier] = STATE(2947), + [sym_attribute_list] = STATE(4666), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4536), + [sym_decl_export] = STATE(4536), + [sym_decl_extern] = STATE(4536), + [sym_decl_module] = STATE(4536), + [sym_decl_use] = STATE(4536), + [sym__ctrl_statement] = STATE(4555), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_for] = STATE(4772), + [sym_ctrl_loop] = STATE(4772), + [sym_ctrl_while] = STATE(4772), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(447), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(403), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [sym__newline] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(53)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5193), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(53), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45205,7 +45877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(405), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45234,73 +45906,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(53)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5016), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(53), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [STATE(54)] = { + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5324), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(54), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -45336,7 +46009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(407), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45362,74 +46035,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(54)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4799), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(55)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5325), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(55), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45461,7 +46135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(407), + [anon_sym_RPAREN] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45490,73 +46164,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(55)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5013), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(55), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [STATE(56)] = { + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5334), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(56), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -45592,7 +46267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(411), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45618,74 +46293,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(56)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4893), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(57)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5361), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(57), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45717,7 +46393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(411), + [anon_sym_RPAREN] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45746,73 +46422,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(57)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4803), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(57), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [STATE(58)] = { + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5051), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(58), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -45848,7 +46525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45874,74 +46551,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(58)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4804), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(58), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(59)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5065), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(59), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45973,7 +46651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(415), + [anon_sym_RPAREN] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46002,73 +46680,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(59)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4820), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(59), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [STATE(60)] = { + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5095), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(60), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -46104,7 +46783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(419), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46130,74 +46809,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(60)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5006), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(60), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(61)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5102), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(61), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46229,7 +46909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(421), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46258,73 +46938,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(61)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4964), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(61), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [STATE(62)] = { + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5017), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(62), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -46360,7 +47041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(423), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46386,74 +47067,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(62)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4968), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(63)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5024), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(63), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46485,7 +47167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(423), + [anon_sym_RPAREN] = ACTIONS(425), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46514,73 +47196,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(63)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4974), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(63), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [STATE(64)] = { + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5037), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(64), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -46616,7 +47299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(427), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46642,73 +47325,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(64)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5065), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(64), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [STATE(65)] = { + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5160), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(65), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -46744,7 +47428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46770,74 +47454,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(65)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5067), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(66)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5162), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(66), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46869,7 +47554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(431), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46898,73 +47583,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(66)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5074), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(66), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [STATE(67)] = { + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5166), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(67), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -47000,7 +47686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(433), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -47026,74 +47712,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(67)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4798), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(67), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(68)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5327), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(68), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47125,7 +47812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(433), + [anon_sym_RPAREN] = ACTIONS(435), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47154,74 +47841,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(68)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4817), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(69)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(4952), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47253,7 +47941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(435), + [anon_sym_RPAREN] = ACTIONS(437), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47282,79 +47970,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(69)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4858), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(70)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(4967), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(69), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(70), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -47364,9 +48053,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -47381,19 +48070,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(437), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47406,78 +48095,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(70)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4846), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [STATE(71)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(4982), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47509,7 +48199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(441), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47538,202 +48228,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(71)] = { - [sym__block_body_statement] = STATE(4167), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym__block_body] = STATE(5017), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(71), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(441), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [sym__newline] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, [STATE(72)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4938), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5085), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47795,78 +48358,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(73)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4958), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(4996), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(73), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -47876,9 +48440,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -47893,19 +48457,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(445), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(445), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47918,82 +48482,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(74)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(4018), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(74), - [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(82), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48003,9 +48568,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48020,12 +48585,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(447), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48045,83 +48610,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(75)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4891), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4091), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(454), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(75), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(1357), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(278), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48131,7 +48696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -48148,6 +48713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(461), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48177,77 +48743,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(76)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5038), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(454), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(76), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(86), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(278), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48257,7 +48825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -48277,16 +48845,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(459), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48304,72 +48871,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(77)] = { - [sym__block_body_statement_parenthesized] = STATE(3767), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5219), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48401,7 +48970,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(461), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48431,78 +48999,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(78)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5052), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5364), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(454), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(78), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(278), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48512,7 +49081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -48558,73 +49127,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(79)] = { - [sym__block_body_statement] = STATE(4066), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), + [sym__block_body_statement] = STATE(4392), + [sym__declaration] = STATE(4535), + [sym_decl_alias] = STATE(4536), + [sym_stmt_let] = STATE(4555), + [sym_stmt_mut] = STATE(4555), + [sym_stmt_const] = STATE(4555), + [sym_assignment] = STATE(4555), + [sym__mutable_assignment_pattern] = STATE(4579), + [sym__statement] = STATE(4535), + [sym_pipeline] = STATE(4555), + [sym_cmd_identifier] = STATE(2947), + [sym_attribute_list] = STATE(4666), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4536), + [sym_decl_export] = STATE(4536), + [sym_decl_extern] = STATE(4536), + [sym_decl_module] = STATE(4536), + [sym_decl_use] = STATE(4536), + [sym__ctrl_statement] = STATE(4555), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_for] = STATE(4772), + [sym_ctrl_loop] = STATE(4772), + [sym_ctrl_while] = STATE(4772), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(447), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), [sym_comment] = STATE(79), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(1370), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(459), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(1374), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(461), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -48685,78 +49255,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(80)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4835), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4091), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(1357), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(292), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48766,9 +49336,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48786,15 +49356,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(461), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48807,78 +49378,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(81)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4876), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5244), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48939,194 +49511,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(82)] = { - [sym__block_body_statement] = STATE(4066), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym__block_body_statement_parenthesized] = STATE(3931), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(82), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(83)] = { - [sym__block_body_statement_parenthesized] = STATE(3767), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -49184,77 +49634,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(84)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(84), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(83)] = { + [sym__block_body_statement] = STATE(4091), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(454), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(83), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(278), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49264,7 +49715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -49287,10 +49738,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -49307,77 +49758,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(84)] = { + [sym__block_body_statement] = STATE(4392), + [sym__declaration] = STATE(4535), + [sym_decl_alias] = STATE(4536), + [sym_stmt_let] = STATE(4555), + [sym_stmt_mut] = STATE(4555), + [sym_stmt_const] = STATE(4555), + [sym_assignment] = STATE(4555), + [sym__mutable_assignment_pattern] = STATE(4579), + [sym__statement] = STATE(4535), + [sym_pipeline] = STATE(4555), + [sym_cmd_identifier] = STATE(2947), + [sym_attribute_list] = STATE(4666), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4536), + [sym_decl_export] = STATE(4536), + [sym_decl_extern] = STATE(4536), + [sym_decl_module] = STATE(4536), + [sym_decl_use] = STATE(4536), + [sym__ctrl_statement] = STATE(4555), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_for] = STATE(4772), + [sym_ctrl_loop] = STATE(4772), + [sym_ctrl_while] = STATE(4772), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(447), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), + [sym_comment] = STATE(84), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(291), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, [STATE(85)] = { - [sym__block_body_statement] = STATE(3918), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(4018), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(85), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(86), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49387,9 +49963,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -49406,7 +49982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -49426,75 +50002,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(86)] = { - [sym__block_body_statement] = STATE(3918), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(4502), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(478), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(86), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), + [aux_sym__parenthesized_body_repeat2] = STATE(86), + [anon_sym_export] = ACTIONS(463), + [anon_sym_alias] = ACTIONS(466), + [anon_sym_let] = ACTIONS(469), + [anon_sym_mut] = ACTIONS(472), + [anon_sym_const] = ACTIONS(475), + [aux_sym_cmd_identifier_token1] = ACTIONS(478), + [anon_sym_def] = ACTIONS(481), + [anon_sym_use] = ACTIONS(484), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(490), + [anon_sym_module] = ACTIONS(493), + [anon_sym_for] = ACTIONS(496), + [anon_sym_loop] = ACTIONS(499), + [anon_sym_while] = ACTIONS(502), + [anon_sym_if] = ACTIONS(505), + [anon_sym_else] = ACTIONS(508), + [anon_sym_try] = ACTIONS(511), + [anon_sym_catch] = ACTIONS(508), + [anon_sym_match] = ACTIONS(514), + [anon_sym_in] = ACTIONS(517), + [anon_sym_true] = ACTIONS(520), + [anon_sym_false] = ACTIONS(520), + [anon_sym_null] = ACTIONS(523), + [aux_sym_cmd_identifier_token3] = ACTIONS(526), + [aux_sym_cmd_identifier_token4] = ACTIONS(526), + [aux_sym_cmd_identifier_token5] = ACTIONS(526), + [anon_sym_AT] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_DOLLAR] = ACTIONS(538), + [anon_sym_DASH2] = ACTIONS(541), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(547), + [anon_sym_where] = ACTIONS(550), + [aux_sym_expr_unary_token1] = ACTIONS(553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_DOT_DOT_LT] = ACTIONS(556), + [aux_sym__val_number_decimal_token1] = ACTIONS(559), + [aux_sym__val_number_decimal_token2] = ACTIONS(562), + [aux_sym__val_number_decimal_token3] = ACTIONS(565), + [aux_sym__val_number_decimal_token4] = ACTIONS(565), + [aux_sym__val_number_token1] = ACTIONS(568), + [aux_sym__val_number_token2] = ACTIONS(568), + [aux_sym__val_number_token3] = ACTIONS(568), + [anon_sym_0b] = ACTIONS(571), + [anon_sym_0o] = ACTIONS(574), + [anon_sym_0x] = ACTIONS(574), + [sym_val_date] = ACTIONS(577), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(583), + [anon_sym_BQUOTE] = ACTIONS(586), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(589), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(598), + }, + [STATE(87)] = { + [sym__block_body_statement] = STATE(4091), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(87), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3955), [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), @@ -49553,318 +50254,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(87)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(87), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, [STATE(88)] = { - [sym__block_body_statement] = STATE(4396), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(474), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(88), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(463), - [anon_sym_alias] = ACTIONS(466), - [anon_sym_let] = ACTIONS(469), - [anon_sym_mut] = ACTIONS(472), - [anon_sym_const] = ACTIONS(475), - [aux_sym_cmd_identifier_token1] = ACTIONS(478), - [anon_sym_def] = ACTIONS(481), - [anon_sym_use] = ACTIONS(484), - [anon_sym_export_DASHenv] = ACTIONS(487), - [anon_sym_extern] = ACTIONS(490), - [anon_sym_module] = ACTIONS(493), - [anon_sym_for] = ACTIONS(496), - [anon_sym_loop] = ACTIONS(499), - [anon_sym_while] = ACTIONS(502), - [anon_sym_if] = ACTIONS(505), - [anon_sym_else] = ACTIONS(508), - [anon_sym_try] = ACTIONS(511), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_match] = ACTIONS(514), - [anon_sym_in] = ACTIONS(517), - [anon_sym_true] = ACTIONS(520), - [anon_sym_false] = ACTIONS(520), - [anon_sym_null] = ACTIONS(523), - [aux_sym_cmd_identifier_token3] = ACTIONS(526), - [aux_sym_cmd_identifier_token4] = ACTIONS(526), - [aux_sym_cmd_identifier_token5] = ACTIONS(526), - [anon_sym_AT] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(538), - [anon_sym_DASH2] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_DOT_DOT] = ACTIONS(547), - [anon_sym_where] = ACTIONS(550), - [aux_sym_expr_unary_token1] = ACTIONS(553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(556), - [anon_sym_DOT_DOT_LT] = ACTIONS(556), - [aux_sym__val_number_decimal_token1] = ACTIONS(559), - [aux_sym__val_number_decimal_token2] = ACTIONS(562), - [aux_sym__val_number_decimal_token3] = ACTIONS(565), - [aux_sym__val_number_decimal_token4] = ACTIONS(565), - [aux_sym__val_number_token1] = ACTIONS(568), - [aux_sym__val_number_token2] = ACTIONS(568), - [aux_sym__val_number_token3] = ACTIONS(568), - [anon_sym_0b] = ACTIONS(571), - [anon_sym_0o] = ACTIONS(574), - [anon_sym_0x] = ACTIONS(574), - [sym_val_date] = ACTIONS(577), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(586), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(598), - }, - [STATE(89)] = { - [sym__block_body_statement] = STATE(4152), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), + [sym__block_body_statement] = STATE(4324), + [sym__declaration] = STATE(4535), + [sym_decl_alias] = STATE(4536), + [sym_stmt_let] = STATE(4555), + [sym_stmt_mut] = STATE(4555), + [sym_stmt_const] = STATE(4555), + [sym_assignment] = STATE(4555), + [sym__mutable_assignment_pattern] = STATE(4579), + [sym__statement] = STATE(4535), + [sym_pipeline] = STATE(4555), + [sym_cmd_identifier] = STATE(2947), + [sym_attribute_list] = STATE(4666), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4536), + [sym_decl_export] = STATE(4536), + [sym_decl_extern] = STATE(4536), + [sym_decl_module] = STATE(4536), + [sym_decl_use] = STATE(4536), + [sym__ctrl_statement] = STATE(4555), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_for] = STATE(4772), + [sym_ctrl_loop] = STATE(4772), + [sym_ctrl_while] = STATE(4772), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(447), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(89), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), + [sym_comment] = STATE(88), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(291), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -49922,77 +50378,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, + [STATE(89)] = { + [sym__block_body_statement] = STATE(4180), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(89), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(292), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, [STATE(90)] = { - [sym__block_body_statement_parenthesized] = STATE(3820), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4180), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(454), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(91), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(278), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -50002,9 +50583,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -50021,7 +50602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -50041,76 +50622,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(91)] = { - [sym__block_body_statement_parenthesized] = STATE(4147), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(471), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4656), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(481), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(601), [anon_sym_alias] = ACTIONS(604), [anon_sym_let] = ACTIONS(607), @@ -50252,9 +50834,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(743), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(743), [aux_sym__immediate_decimal_token5] = ACTIONS(745), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), @@ -50361,9 +50943,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(751), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(751), [aux_sym__immediate_decimal_token5] = ACTIONS(753), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), @@ -50388,7 +50970,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(94)] = { [sym_comment] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(753), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_COLON2] = ACTIONS(747), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(747), + [anon_sym_out_GT_GT] = ACTIONS(747), + [anon_sym_e_GT_GT] = ACTIONS(747), + [anon_sym_o_GT_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(95)] = { + [sym_comment] = STATE(95), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -50438,6 +51127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -50470,9 +51160,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(755), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(755), [aux_sym__immediate_decimal_token5] = ACTIONS(757), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), @@ -50494,114 +51184,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(95)] = { - [sym_comment] = STATE(95), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(96)] = { [sym_comment] = STATE(96), [anon_sym_in] = ACTIONS(747), @@ -50651,9 +51233,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -50686,10 +51268,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(759), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(763), - [aux_sym__immediate_decimal_token5] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(761), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -50794,10 +51376,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(763), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(767), - [aux_sym__immediate_decimal_token5] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(765), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -50820,6 +51402,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(98)] = { [sym_comment] = STATE(98), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(767), + [aux_sym__immediate_decimal_token5] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(99)] = { + [sym_comment] = STATE(99), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -50926,224 +51616,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(99)] = { - [sym_comment] = STATE(99), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(745), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_COLON2] = ACTIONS(739), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(100)] = { [sym_comment] = STATE(100), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(779), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(101)] = { - [sym_comment] = STATE(101), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51191,9 +51665,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -51226,10 +51700,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(777), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(781), - [aux_sym__immediate_decimal_token5] = ACTIONS(783), + [aux_sym__immediate_decimal_token5] = ACTIONS(779), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -51250,8 +51724,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(102)] = { - [sym_comment] = STATE(102), + [STATE(101)] = { + [sym_comment] = STATE(101), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -51301,7 +51776,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -51336,7 +51810,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(779), + [aux_sym__immediate_decimal_token1] = ACTIONS(781), + [aux_sym__immediate_decimal_token5] = ACTIONS(783), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -51357,436 +51832,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(103)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), - [sym_comment] = STATE(103), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), - }, - [STATE(104)] = { - [sym_comment] = STATE(104), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(845), - [aux_sym__immediate_decimal_token5] = ACTIONS(847), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(105)] = { - [sym_comment] = STATE(105), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_COLON2] = ACTIONS(771), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(106)] = { - [sym_comment] = STATE(106), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_COLON2] = ACTIONS(849), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(107)] = { - [sym_comment] = STATE(107), + [STATE(102)] = { + [sym_comment] = STATE(102), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -51871,7 +51918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(853), + [aux_sym__immediate_decimal_token5] = ACTIONS(785), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -51892,8 +51939,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(108)] = { - [sym_comment] = STATE(108), + [STATE(103)] = { + [sym_comment] = STATE(103), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51943,7 +51990,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -51976,11 +52022,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(787), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(789), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), - [anon_sym_COLON2] = ACTIONS(747), [anon_sym_err_GT] = ACTIONS(747), [anon_sym_out_GT] = ACTIONS(747), [anon_sym_e_GT] = ACTIONS(747), @@ -51999,115 +52046,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(109)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), - [sym_comment] = STATE(109), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(855), - [sym__space] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_COLON2] = ACTIONS(858), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), - }, - [STATE(110)] = { - [sym_comment] = STATE(110), + [STATE(104)] = { + [sym_comment] = STATE(104), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52189,10 +52129,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(860), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(862), + [aux_sym__immediate_decimal_token1] = ACTIONS(791), + [aux_sym__immediate_decimal_token5] = ACTIONS(793), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -52213,115 +52153,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(111)] = { - [sym_comment] = STATE(111), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(757), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [STATE(105)] = { + [sym_expr_parenthesized] = STATE(2680), + [sym__spread_parenthesized] = STATE(3130), + [sym_val_range] = STATE(3137), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(3137), + [sym_val_nothing] = STATE(3023), + [sym_val_bool] = STATE(2794), + [sym__spread_variable] = STATE(3138), + [sym_val_variable] = STATE(2654), + [sym_val_cellpath] = STATE(3023), + [sym_val_number] = STATE(3023), + [sym__val_number_decimal] = STATE(2409), + [sym__val_number] = STATE(3192), + [sym_val_duration] = STATE(3023), + [sym_val_filesize] = STATE(3023), + [sym_val_binary] = STATE(3023), + [sym_val_string] = STATE(3023), + [sym__raw_str] = STATE(2483), + [sym__str_double_quotes] = STATE(2483), + [sym__str_single_quotes] = STATE(2483), + [sym__str_back_ticks] = STATE(2483), + [sym_val_interpolated] = STATE(3023), + [sym__inter_single_quotes] = STATE(3094), + [sym__inter_double_quotes] = STATE(3095), + [sym_val_list] = STATE(3023), + [sym__spread_list] = STATE(3130), + [sym_val_record] = STATE(3023), + [sym_val_table] = STATE(3023), + [sym_val_closure] = STATE(3023), + [sym__cmd_arg] = STATE(3139), + [sym_redirection] = STATE(3140), + [sym__flag] = STATE(3141), + [sym_short_flag] = STATE(3142), + [sym_long_flag] = STATE(3142), + [sym_unquoted] = STATE(2867), + [sym__unquoted_with_expr] = STATE(3143), + [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_comment] = STATE(105), + [anon_sym_true] = ACTIONS(795), + [anon_sym_false] = ACTIONS(795), + [anon_sym_null] = ACTIONS(797), + [aux_sym_cmd_identifier_token3] = ACTIONS(799), + [aux_sym_cmd_identifier_token4] = ACTIONS(799), + [aux_sym_cmd_identifier_token5] = ACTIONS(799), + [sym__newline] = ACTIONS(801), + [sym__space] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_err_GT_PIPE] = ACTIONS(804), + [anon_sym_out_GT_PIPE] = ACTIONS(804), + [anon_sym_e_GT_PIPE] = ACTIONS(804), + [anon_sym_o_GT_PIPE] = ACTIONS(804), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(804), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(804), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(804), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(804), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(810), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DASH2] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(824), + [aux_sym__val_number_decimal_token1] = ACTIONS(826), + [aux_sym__val_number_decimal_token2] = ACTIONS(826), + [aux_sym__val_number_decimal_token3] = ACTIONS(828), + [aux_sym__val_number_decimal_token4] = ACTIONS(828), + [aux_sym__val_number_token1] = ACTIONS(830), + [aux_sym__val_number_token2] = ACTIONS(830), + [aux_sym__val_number_token3] = ACTIONS(830), + [anon_sym_0b] = ACTIONS(832), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(848), + [anon_sym_COLON2] = ACTIONS(850), + [anon_sym_err_GT] = ACTIONS(852), + [anon_sym_out_GT] = ACTIONS(852), + [anon_sym_e_GT] = ACTIONS(852), + [anon_sym_o_GT] = ACTIONS(852), + [anon_sym_err_PLUSout_GT] = ACTIONS(852), + [anon_sym_out_PLUSerr_GT] = ACTIONS(852), + [anon_sym_o_PLUSe_GT] = ACTIONS(852), + [anon_sym_e_PLUSo_GT] = ACTIONS(852), + [anon_sym_err_GT_GT] = ACTIONS(852), + [anon_sym_out_GT_GT] = ACTIONS(852), + [anon_sym_e_GT_GT] = ACTIONS(852), + [anon_sym_o_GT_GT] = ACTIONS(852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(852), + [aux_sym_unquoted_token1] = ACTIONS(854), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(856), }, - [STATE(112)] = { - [sym_comment] = STATE(112), + [STATE(106)] = { + [sym_comment] = STATE(106), + [ts_builtin_sym_end] = ACTIONS(773), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -52371,7 +52312,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -52406,7 +52346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(864), + [aux_sym__immediate_decimal_token5] = ACTIONS(858), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -52427,8 +52367,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(113)] = { - [sym_comment] = STATE(113), + [STATE(107)] = { + [sym_comment] = STATE(107), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52476,9 +52416,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -52513,9 +52453,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(761), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), + [anon_sym_COLON2] = ACTIONS(739), [anon_sym_err_GT] = ACTIONS(739), [anon_sym_out_GT] = ACTIONS(739), [anon_sym_e_GT] = ACTIONS(739), @@ -52534,9 +52474,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(114)] = { - [sym_comment] = STATE(114), - [ts_builtin_sym_end] = ACTIONS(773), + [STATE(108)] = { + [sym_comment] = STATE(108), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -52586,6 +52525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -52620,9 +52560,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(866), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), + [anon_sym_COLON2] = ACTIONS(771), [anon_sym_err_GT] = ACTIONS(771), [anon_sym_out_GT] = ACTIONS(771), [anon_sym_e_GT] = ACTIONS(771), @@ -52641,857 +52581,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(115)] = { - [sym_comment] = STATE(115), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(870), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_mod] = ACTIONS(870), - [anon_sym_SLASH_SLASH] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(872), - [anon_sym_DASH] = ACTIONS(870), - [anon_sym_bit_DASHshl] = ACTIONS(870), - [anon_sym_bit_DASHshr] = ACTIONS(870), - [anon_sym_EQ_TILDE] = ACTIONS(870), - [anon_sym_BANG_TILDE] = ACTIONS(870), - [anon_sym_like] = ACTIONS(870), - [anon_sym_not_DASHlike] = ACTIONS(870), - [anon_sym_bit_DASHand] = ACTIONS(870), - [anon_sym_bit_DASHxor] = ACTIONS(870), - [anon_sym_bit_DASHor] = ACTIONS(870), - [anon_sym_and] = ACTIONS(870), - [anon_sym_xor] = ACTIONS(870), - [anon_sym_or] = ACTIONS(870), - [anon_sym_in2] = ACTIONS(870), - [anon_sym_not_DASHin] = ACTIONS(870), - [anon_sym_has] = ACTIONS(870), - [anon_sym_not_DASHhas] = ACTIONS(870), - [anon_sym_starts_DASHwith] = ACTIONS(870), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(870), - [anon_sym_ends_DASHwith] = ACTIONS(870), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(870), - [anon_sym_EQ_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ] = ACTIONS(870), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(870), - [anon_sym_GT] = ACTIONS(872), - [anon_sym_GT_EQ] = ACTIONS(870), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(880), - [sym_duration_unit] = ACTIONS(882), - [anon_sym_COLON2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [STATE(109)] = { + [sym_comment] = STATE(109), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(860), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), + [anon_sym_COLON2] = ACTIONS(860), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(116)] = { - [sym_comment] = STATE(116), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(890), - [sym_duration_unit] = ACTIONS(892), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [STATE(110)] = { + [sym_comment] = STATE(110), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(747), + [anon_sym_out_GT_GT] = ACTIONS(747), + [anon_sym_e_GT_GT] = ACTIONS(747), + [anon_sym_o_GT_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(117)] = { - [sym_comment] = STATE(117), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(118)] = { - [sym_comment] = STATE(118), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(119)] = { - [sym_comment] = STATE(119), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(120)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(3208), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), - [sym_comment] = STATE(120), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(894), - [sym__space] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(894), - [anon_sym_err_GT_PIPE] = ACTIONS(894), - [anon_sym_out_GT_PIPE] = ACTIONS(894), - [anon_sym_e_GT_PIPE] = ACTIONS(894), - [anon_sym_o_GT_PIPE] = ACTIONS(894), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_RPAREN] = ACTIONS(894), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), - }, - [STATE(121)] = { - [sym_comment] = STATE(121), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(898), - [sym_duration_unit] = ACTIONS(900), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(122)] = { - [sym_comment] = STATE(122), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(902), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(123)] = { - [sym_comment] = STATE(123), + [STATE(111)] = { + [sym_comment] = STATE(111), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -53539,9 +52844,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -53576,6 +52881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(779), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -53596,8 +52902,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(124)] = { - [sym_comment] = STATE(124), + [STATE(112)] = { + [sym_comment] = STATE(112), [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), @@ -53682,6 +52988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(765), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -53702,8 +53009,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(125)] = { - [sym_comment] = STATE(125), + [STATE(113)] = { + [sym_comment] = STATE(113), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -53788,6 +53095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(864), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -53808,114 +53116,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(126)] = { - [sym_comment] = STATE(126), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [STATE(114)] = { + [sym_comment] = STATE(114), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(870), + [anon_sym_SLASH] = ACTIONS(870), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(870), + [anon_sym_DASH] = ACTIONS(868), + [anon_sym_bit_DASHshl] = ACTIONS(868), + [anon_sym_bit_DASHshr] = ACTIONS(868), + [anon_sym_EQ_TILDE] = ACTIONS(868), + [anon_sym_BANG_TILDE] = ACTIONS(868), + [anon_sym_like] = ACTIONS(868), + [anon_sym_not_DASHlike] = ACTIONS(868), + [anon_sym_bit_DASHand] = ACTIONS(868), + [anon_sym_bit_DASHxor] = ACTIONS(868), + [anon_sym_bit_DASHor] = ACTIONS(868), + [anon_sym_and] = ACTIONS(868), + [anon_sym_xor] = ACTIONS(868), + [anon_sym_or] = ACTIONS(868), + [anon_sym_in2] = ACTIONS(868), + [anon_sym_not_DASHin] = ACTIONS(868), + [anon_sym_has] = ACTIONS(868), + [anon_sym_not_DASHhas] = ACTIONS(868), + [anon_sym_starts_DASHwith] = ACTIONS(868), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(868), + [anon_sym_ends_DASHwith] = ACTIONS(868), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(868), + [anon_sym_EQ_EQ] = ACTIONS(868), + [anon_sym_BANG_EQ] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(870), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(870), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(872), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), + [anon_sym_COLON2] = ACTIONS(866), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(127)] = { - [sym_comment] = STATE(127), + [STATE(115)] = { + [sym_expr_parenthesized] = STATE(2680), + [sym__spread_parenthesized] = STATE(3130), + [sym_val_range] = STATE(3137), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(3137), + [sym_val_nothing] = STATE(3023), + [sym_val_bool] = STATE(2794), + [sym__spread_variable] = STATE(3138), + [sym_val_variable] = STATE(2654), + [sym_val_cellpath] = STATE(3023), + [sym_val_number] = STATE(3023), + [sym__val_number_decimal] = STATE(2409), + [sym__val_number] = STATE(3192), + [sym_val_duration] = STATE(3023), + [sym_val_filesize] = STATE(3023), + [sym_val_binary] = STATE(3023), + [sym_val_string] = STATE(3023), + [sym__raw_str] = STATE(2483), + [sym__str_double_quotes] = STATE(2483), + [sym__str_single_quotes] = STATE(2483), + [sym__str_back_ticks] = STATE(2483), + [sym_val_interpolated] = STATE(3023), + [sym__inter_single_quotes] = STATE(3094), + [sym__inter_double_quotes] = STATE(3095), + [sym_val_list] = STATE(3023), + [sym__spread_list] = STATE(3130), + [sym_val_record] = STATE(3023), + [sym_val_table] = STATE(3023), + [sym_val_closure] = STATE(3023), + [sym__cmd_arg] = STATE(3139), + [sym_redirection] = STATE(3140), + [sym__flag] = STATE(3141), + [sym_short_flag] = STATE(3142), + [sym_long_flag] = STATE(3142), + [sym_unquoted] = STATE(2867), + [sym__unquoted_with_expr] = STATE(3143), + [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_comment] = STATE(115), + [anon_sym_true] = ACTIONS(795), + [anon_sym_false] = ACTIONS(795), + [anon_sym_null] = ACTIONS(797), + [aux_sym_cmd_identifier_token3] = ACTIONS(799), + [aux_sym_cmd_identifier_token4] = ACTIONS(799), + [aux_sym_cmd_identifier_token5] = ACTIONS(799), + [sym__newline] = ACTIONS(804), + [sym__space] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_err_GT_PIPE] = ACTIONS(804), + [anon_sym_out_GT_PIPE] = ACTIONS(804), + [anon_sym_e_GT_PIPE] = ACTIONS(804), + [anon_sym_o_GT_PIPE] = ACTIONS(804), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(804), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(804), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(804), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(804), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_RPAREN] = ACTIONS(804), + [anon_sym_DOLLAR] = ACTIONS(810), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DASH2] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(824), + [aux_sym__val_number_decimal_token1] = ACTIONS(826), + [aux_sym__val_number_decimal_token2] = ACTIONS(826), + [aux_sym__val_number_decimal_token3] = ACTIONS(828), + [aux_sym__val_number_decimal_token4] = ACTIONS(828), + [aux_sym__val_number_token1] = ACTIONS(830), + [aux_sym__val_number_token2] = ACTIONS(830), + [aux_sym__val_number_token3] = ACTIONS(830), + [anon_sym_0b] = ACTIONS(832), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(848), + [anon_sym_err_GT] = ACTIONS(852), + [anon_sym_out_GT] = ACTIONS(852), + [anon_sym_e_GT] = ACTIONS(852), + [anon_sym_o_GT] = ACTIONS(852), + [anon_sym_err_PLUSout_GT] = ACTIONS(852), + [anon_sym_out_PLUSerr_GT] = ACTIONS(852), + [anon_sym_o_PLUSe_GT] = ACTIONS(852), + [anon_sym_e_PLUSo_GT] = ACTIONS(852), + [anon_sym_err_GT_GT] = ACTIONS(852), + [anon_sym_out_GT_GT] = ACTIONS(852), + [anon_sym_e_GT_GT] = ACTIONS(852), + [anon_sym_o_GT_GT] = ACTIONS(852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(852), + [aux_sym_unquoted_token1] = ACTIONS(854), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(856), + }, + [STATE(116)] = { + [sym_comment] = STATE(116), + [ts_builtin_sym_end] = ACTIONS(862), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(860), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(117)] = { + [sym_comment] = STATE(117), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -53963,7 +53485,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), @@ -54000,6 +53521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(789), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -54020,115 +53542,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(128)] = { - [sym_expr_parenthesized] = STATE(2728), - [sym__spread_parenthesized] = STATE(3085), - [sym_val_range] = STATE(3166), - [sym__val_range] = STATE(4446), - [sym__value] = STATE(3166), - [sym_val_nothing] = STATE(3180), - [sym_val_bool] = STATE(2876), - [sym__spread_variable] = STATE(3170), - [sym_val_variable] = STATE(2645), - [sym_val_cellpath] = STATE(3180), - [sym_val_number] = STATE(3180), - [sym__val_number_decimal] = STATE(2397), - [sym__val_number] = STATE(3203), - [sym_val_duration] = STATE(3180), - [sym_val_filesize] = STATE(3180), - [sym_val_binary] = STATE(3180), - [sym_val_string] = STATE(3180), - [sym__raw_str] = STATE(2472), - [sym__str_double_quotes] = STATE(2472), - [sym__str_single_quotes] = STATE(2472), - [sym__str_back_ticks] = STATE(2472), - [sym_val_interpolated] = STATE(3180), - [sym__inter_single_quotes] = STATE(3091), - [sym__inter_double_quotes] = STATE(3098), - [sym_val_list] = STATE(3180), - [sym__spread_list] = STATE(3085), - [sym_val_record] = STATE(3180), - [sym_val_table] = STATE(3180), - [sym_val_closure] = STATE(3180), - [sym__cmd_arg] = STATE(3176), - [sym_redirection] = STATE(3181), - [sym__flag] = STATE(3196), - [sym_short_flag] = STATE(3210), - [sym_long_flag] = STATE(3210), - [sym_unquoted] = STATE(2832), - [sym__unquoted_with_expr] = STATE(3150), - [sym__unquoted_anonymous_prefix] = STATE(4446), - [sym_comment] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_true] = ACTIONS(904), - [anon_sym_false] = ACTIONS(904), - [anon_sym_null] = ACTIONS(906), - [aux_sym_cmd_identifier_token3] = ACTIONS(908), - [aux_sym_cmd_identifier_token4] = ACTIONS(908), - [aux_sym_cmd_identifier_token5] = ACTIONS(908), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(910), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_DASH2] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(926), - [anon_sym_DOT_DOT_LT] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(928), - [aux_sym__val_number_decimal_token1] = ACTIONS(930), - [aux_sym__val_number_decimal_token2] = ACTIONS(930), - [aux_sym__val_number_decimal_token3] = ACTIONS(932), - [aux_sym__val_number_decimal_token4] = ACTIONS(932), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(938), - [anon_sym_0x] = ACTIONS(938), - [sym_val_date] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_BQUOTE] = ACTIONS(946), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(952), - [anon_sym_err_GT] = ACTIONS(954), - [anon_sym_out_GT] = ACTIONS(954), - [anon_sym_e_GT] = ACTIONS(954), - [anon_sym_o_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT] = ACTIONS(954), - [anon_sym_err_GT_GT] = ACTIONS(954), - [anon_sym_out_GT_GT] = ACTIONS(954), - [anon_sym_e_GT_GT] = ACTIONS(954), - [anon_sym_o_GT_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), - [aux_sym_unquoted_token1] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(958), - }, - [STATE(129)] = { - [sym_comment] = STATE(129), - [ts_builtin_sym_end] = ACTIONS(773), + [STATE(118)] = { + [sym_comment] = STATE(118), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -54176,6 +53591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), @@ -54232,8 +53648,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(130)] = { - [sym_comment] = STATE(130), + [STATE(119)] = { + [sym_comment] = STATE(119), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -54271,6 +53687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(741), [aux_sym_cmd_identifier_token6] = ACTIONS(739), [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), [anon_sym_PIPE] = ACTIONS(739), [anon_sym_err_GT_PIPE] = ACTIONS(739), [anon_sym_out_GT_PIPE] = ACTIONS(739), @@ -54280,6 +53697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), @@ -54314,10 +53732,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(960), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(962), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -54338,8 +53754,856 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(131)] = { - [sym_comment] = STATE(131), + [STATE(120)] = { + [sym_comment] = STATE(120), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(121)] = { + [sym_comment] = STATE(121), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(884), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(122)] = { + [sym_comment] = STATE(122), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(123)] = { + [sym_comment] = STATE(123), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(888), + [anon_sym_PLUS_PLUS] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(890), + [anon_sym_SLASH] = ACTIONS(890), + [anon_sym_mod] = ACTIONS(888), + [anon_sym_SLASH_SLASH] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(888), + [anon_sym_bit_DASHshl] = ACTIONS(888), + [anon_sym_bit_DASHshr] = ACTIONS(888), + [anon_sym_EQ_TILDE] = ACTIONS(888), + [anon_sym_BANG_TILDE] = ACTIONS(888), + [anon_sym_like] = ACTIONS(888), + [anon_sym_not_DASHlike] = ACTIONS(888), + [anon_sym_bit_DASHand] = ACTIONS(888), + [anon_sym_bit_DASHxor] = ACTIONS(888), + [anon_sym_bit_DASHor] = ACTIONS(888), + [anon_sym_and] = ACTIONS(888), + [anon_sym_xor] = ACTIONS(888), + [anon_sym_or] = ACTIONS(888), + [anon_sym_in2] = ACTIONS(888), + [anon_sym_not_DASHin] = ACTIONS(888), + [anon_sym_has] = ACTIONS(888), + [anon_sym_not_DASHhas] = ACTIONS(888), + [anon_sym_starts_DASHwith] = ACTIONS(888), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(888), + [anon_sym_ends_DASHwith] = ACTIONS(888), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(888), + [anon_sym_EQ_EQ] = ACTIONS(888), + [anon_sym_BANG_EQ] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_LT_EQ] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_GT_EQ] = ACTIONS(888), + [aux_sym_cmd_identifier_token6] = ACTIONS(892), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(898), + [sym_duration_unit] = ACTIONS(900), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(124)] = { + [sym_comment] = STATE(124), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_SLASH_SLASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_bit_DASHshl] = ACTIONS(902), + [anon_sym_bit_DASHshr] = ACTIONS(902), + [anon_sym_EQ_TILDE] = ACTIONS(902), + [anon_sym_BANG_TILDE] = ACTIONS(902), + [anon_sym_like] = ACTIONS(902), + [anon_sym_not_DASHlike] = ACTIONS(902), + [anon_sym_bit_DASHand] = ACTIONS(902), + [anon_sym_bit_DASHxor] = ACTIONS(902), + [anon_sym_bit_DASHor] = ACTIONS(902), + [anon_sym_and] = ACTIONS(902), + [anon_sym_xor] = ACTIONS(902), + [anon_sym_or] = ACTIONS(902), + [anon_sym_in2] = ACTIONS(902), + [anon_sym_not_DASHin] = ACTIONS(902), + [anon_sym_has] = ACTIONS(902), + [anon_sym_not_DASHhas] = ACTIONS(902), + [anon_sym_starts_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), + [anon_sym_ends_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(902), + [aux_sym_cmd_identifier_token6] = ACTIONS(906), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(908), + [sym_duration_unit] = ACTIONS(910), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(125)] = { + [sym_comment] = STATE(125), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(126)] = { + [sym_comment] = STATE(126), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(127)] = { + [sym_comment] = STATE(127), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(860), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(128)] = { + [sym_comment] = STATE(128), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -54420,10 +54684,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(912), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(964), - [aux_sym__immediate_decimal_token5] = ACTIONS(966), + [aux_sym__immediate_decimal_token5] = ACTIONS(914), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -54444,220 +54708,748 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(129)] = { + [sym_expr_parenthesized] = STATE(2680), + [sym__spread_parenthesized] = STATE(3130), + [sym_val_range] = STATE(3137), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(3137), + [sym_val_nothing] = STATE(3023), + [sym_val_bool] = STATE(2794), + [sym__spread_variable] = STATE(3138), + [sym_val_variable] = STATE(2654), + [sym_val_cellpath] = STATE(3023), + [sym_val_number] = STATE(3023), + [sym__val_number_decimal] = STATE(2409), + [sym__val_number] = STATE(3192), + [sym_val_duration] = STATE(3023), + [sym_val_filesize] = STATE(3023), + [sym_val_binary] = STATE(3023), + [sym_val_string] = STATE(3023), + [sym__raw_str] = STATE(2483), + [sym__str_double_quotes] = STATE(2483), + [sym__str_single_quotes] = STATE(2483), + [sym__str_back_ticks] = STATE(2483), + [sym_val_interpolated] = STATE(3023), + [sym__inter_single_quotes] = STATE(3094), + [sym__inter_double_quotes] = STATE(3095), + [sym_val_list] = STATE(3023), + [sym__spread_list] = STATE(3130), + [sym_val_record] = STATE(3023), + [sym_val_table] = STATE(3023), + [sym_val_closure] = STATE(3023), + [sym__cmd_arg] = STATE(3302), + [sym_redirection] = STATE(3140), + [sym__flag] = STATE(3141), + [sym_short_flag] = STATE(3142), + [sym_long_flag] = STATE(3142), + [sym_unquoted] = STATE(2867), + [sym__unquoted_with_expr] = STATE(3143), + [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_comment] = STATE(129), + [anon_sym_true] = ACTIONS(795), + [anon_sym_false] = ACTIONS(795), + [anon_sym_null] = ACTIONS(797), + [aux_sym_cmd_identifier_token3] = ACTIONS(799), + [aux_sym_cmd_identifier_token4] = ACTIONS(799), + [aux_sym_cmd_identifier_token5] = ACTIONS(799), + [sym__newline] = ACTIONS(916), + [sym__space] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_PIPE] = ACTIONS(916), + [anon_sym_err_GT_PIPE] = ACTIONS(916), + [anon_sym_out_GT_PIPE] = ACTIONS(916), + [anon_sym_e_GT_PIPE] = ACTIONS(916), + [anon_sym_o_GT_PIPE] = ACTIONS(916), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(916), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(916), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(916), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(916), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_RPAREN] = ACTIONS(916), + [anon_sym_DOLLAR] = ACTIONS(810), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DASH2] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_DOT_DOT] = ACTIONS(818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(824), + [aux_sym__val_number_decimal_token1] = ACTIONS(826), + [aux_sym__val_number_decimal_token2] = ACTIONS(826), + [aux_sym__val_number_decimal_token3] = ACTIONS(828), + [aux_sym__val_number_decimal_token4] = ACTIONS(828), + [aux_sym__val_number_token1] = ACTIONS(830), + [aux_sym__val_number_token2] = ACTIONS(830), + [aux_sym__val_number_token3] = ACTIONS(830), + [anon_sym_0b] = ACTIONS(832), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(848), + [anon_sym_err_GT] = ACTIONS(852), + [anon_sym_out_GT] = ACTIONS(852), + [anon_sym_e_GT] = ACTIONS(852), + [anon_sym_o_GT] = ACTIONS(852), + [anon_sym_err_PLUSout_GT] = ACTIONS(852), + [anon_sym_out_PLUSerr_GT] = ACTIONS(852), + [anon_sym_o_PLUSe_GT] = ACTIONS(852), + [anon_sym_e_PLUSo_GT] = ACTIONS(852), + [anon_sym_err_GT_GT] = ACTIONS(852), + [anon_sym_out_GT_GT] = ACTIONS(852), + [anon_sym_e_GT_GT] = ACTIONS(852), + [anon_sym_o_GT_GT] = ACTIONS(852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(852), + [aux_sym_unquoted_token1] = ACTIONS(854), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(856), + }, + [STATE(130)] = { + [sym_expr_parenthesized] = STATE(2868), + [sym__spread_parenthesized] = STATE(3258), + [sym_val_range] = STATE(3264), + [sym__val_range] = STATE(4617), + [sym__value] = STATE(3264), + [sym_val_nothing] = STATE(3355), + [sym_val_bool] = STATE(2950), + [sym__spread_variable] = STATE(3265), + [sym_val_variable] = STATE(2784), + [sym_val_cellpath] = STATE(3355), + [sym_val_number] = STATE(3355), + [sym__val_number_decimal] = STATE(2461), + [sym__val_number] = STATE(3362), + [sym_val_duration] = STATE(3355), + [sym_val_filesize] = STATE(3355), + [sym_val_binary] = STATE(3355), + [sym_val_string] = STATE(3355), + [sym__raw_str] = STATE(2554), + [sym__str_double_quotes] = STATE(2554), + [sym__str_single_quotes] = STATE(2554), + [sym__str_back_ticks] = STATE(2554), + [sym_val_interpolated] = STATE(3355), + [sym__inter_single_quotes] = STATE(3340), + [sym__inter_double_quotes] = STATE(3342), + [sym_val_list] = STATE(3355), + [sym__spread_list] = STATE(3258), + [sym_val_record] = STATE(3355), + [sym_val_table] = STATE(3355), + [sym_val_closure] = STATE(3355), + [sym__cmd_arg] = STATE(3267), + [sym_redirection] = STATE(3280), + [sym__flag] = STATE(3281), + [sym_short_flag] = STATE(3282), + [sym_long_flag] = STATE(3282), + [sym_unquoted] = STATE(3010), + [sym__unquoted_with_expr] = STATE(3241), + [sym__unquoted_anonymous_prefix] = STATE(4617), + [sym_comment] = STATE(130), + [ts_builtin_sym_end] = ACTIONS(882), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [anon_sym_null] = ACTIONS(922), + [aux_sym_cmd_identifier_token3] = ACTIONS(924), + [aux_sym_cmd_identifier_token4] = ACTIONS(924), + [aux_sym_cmd_identifier_token5] = ACTIONS(924), + [sym__newline] = ACTIONS(804), + [sym__space] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_err_GT_PIPE] = ACTIONS(804), + [anon_sym_out_GT_PIPE] = ACTIONS(804), + [anon_sym_e_GT_PIPE] = ACTIONS(804), + [anon_sym_o_GT_PIPE] = ACTIONS(804), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(804), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(804), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(804), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(804), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_DASH2] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(942), + [anon_sym_DOT_DOT_LT] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(944), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(946), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [anon_sym_0b] = ACTIONS(952), + [anon_sym_0o] = ACTIONS(954), + [anon_sym_0x] = ACTIONS(954), + [sym_val_date] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(960), + [anon_sym_BQUOTE] = ACTIONS(962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(970), + [anon_sym_out_GT_GT] = ACTIONS(970), + [anon_sym_e_GT_GT] = ACTIONS(970), + [anon_sym_o_GT_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), + [aux_sym_unquoted_token1] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(974), + }, + [STATE(131)] = { + [sym_comment] = STATE(131), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(976), + [aux_sym__immediate_decimal_token5] = ACTIONS(978), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(132)] = { [sym_comment] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(970), - [anon_sym_SLASH_SLASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_bit_DASHshl] = ACTIONS(970), - [anon_sym_bit_DASHshr] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [anon_sym_BANG_TILDE] = ACTIONS(970), - [anon_sym_like] = ACTIONS(970), - [anon_sym_not_DASHlike] = ACTIONS(970), - [anon_sym_bit_DASHand] = ACTIONS(970), - [anon_sym_bit_DASHxor] = ACTIONS(970), - [anon_sym_bit_DASHor] = ACTIONS(970), - [anon_sym_and] = ACTIONS(970), - [anon_sym_xor] = ACTIONS(970), - [anon_sym_or] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_not_DASHin] = ACTIONS(970), - [anon_sym_has] = ACTIONS(970), - [anon_sym_not_DASHhas] = ACTIONS(970), - [anon_sym_starts_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(970), - [anon_sym_ends_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [sym_filesize_unit] = ACTIONS(980), - [sym_duration_unit] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(860), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_RPAREN] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), [anon_sym_POUND] = ACTIONS(103), }, [STATE(133)] = { [sym_comment] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_SLASH_SLASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_bit_DASHshl] = ACTIONS(902), + [anon_sym_bit_DASHshr] = ACTIONS(902), + [anon_sym_EQ_TILDE] = ACTIONS(902), + [anon_sym_BANG_TILDE] = ACTIONS(902), + [anon_sym_like] = ACTIONS(902), + [anon_sym_not_DASHlike] = ACTIONS(902), + [anon_sym_bit_DASHand] = ACTIONS(902), + [anon_sym_bit_DASHxor] = ACTIONS(902), + [anon_sym_bit_DASHor] = ACTIONS(902), + [anon_sym_and] = ACTIONS(902), + [anon_sym_xor] = ACTIONS(902), + [anon_sym_or] = ACTIONS(902), + [anon_sym_in2] = ACTIONS(902), + [anon_sym_not_DASHin] = ACTIONS(902), + [anon_sym_has] = ACTIONS(902), + [anon_sym_not_DASHhas] = ACTIONS(902), + [anon_sym_starts_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), + [anon_sym_ends_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(902), + [aux_sym_cmd_identifier_token6] = ACTIONS(906), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(980), + [sym_duration_unit] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), [anon_sym_POUND] = ACTIONS(103), }, [STATE(134)] = { [sym_comment] = STATE(134), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(135)] = { + [sym_comment] = STATE(135), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_SLASH_SLASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_bit_DASHshl] = ACTIONS(902), + [anon_sym_bit_DASHshr] = ACTIONS(902), + [anon_sym_EQ_TILDE] = ACTIONS(902), + [anon_sym_BANG_TILDE] = ACTIONS(902), + [anon_sym_like] = ACTIONS(902), + [anon_sym_not_DASHlike] = ACTIONS(902), + [anon_sym_bit_DASHand] = ACTIONS(902), + [anon_sym_bit_DASHxor] = ACTIONS(902), + [anon_sym_bit_DASHor] = ACTIONS(902), + [anon_sym_and] = ACTIONS(902), + [anon_sym_xor] = ACTIONS(902), + [anon_sym_or] = ACTIONS(902), + [anon_sym_in2] = ACTIONS(902), + [anon_sym_not_DASHin] = ACTIONS(902), + [anon_sym_has] = ACTIONS(902), + [anon_sym_not_DASHhas] = ACTIONS(902), + [anon_sym_starts_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), + [anon_sym_ends_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(902), + [aux_sym_cmd_identifier_token6] = ACTIONS(906), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(984), + [sym_duration_unit] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(136)] = { + [sym_comment] = STATE(136), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -54695,7 +55487,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(749), [aux_sym_cmd_identifier_token6] = ACTIONS(747), [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), [anon_sym_PIPE] = ACTIONS(747), [anon_sym_err_GT_PIPE] = ACTIONS(747), [anon_sym_out_GT_PIPE] = ACTIONS(747), @@ -54741,6 +55532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(914), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -54761,8 +55553,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(135)] = { - [sym_comment] = STATE(135), + [STATE(137)] = { + [sym_comment] = STATE(137), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -54800,6 +55592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(773), [aux_sym_cmd_identifier_token6] = ACTIONS(771), [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), [anon_sym_PIPE] = ACTIONS(771), [anon_sym_err_GT_PIPE] = ACTIONS(771), [anon_sym_out_GT_PIPE] = ACTIONS(771), @@ -54845,7 +55638,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(984), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -54866,113 +55658,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(136)] = { - [sym_comment] = STATE(136), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(986), - [sym_duration_unit] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(137)] = { - [sym_comment] = STATE(137), + [STATE(138)] = { + [sym_comment] = STATE(138), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -55010,7 +55697,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(773), [aux_sym_cmd_identifier_token6] = ACTIONS(771), [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), [anon_sym_PIPE] = ACTIONS(771), [anon_sym_err_GT_PIPE] = ACTIONS(771), [anon_sym_out_GT_PIPE] = ACTIONS(771), @@ -55056,6 +55742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(988), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -55076,113 +55763,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(138)] = { - [sym_comment] = STATE(138), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(139)] = { [sym_comment] = STATE(139), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(860), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(140)] = { + [sym_comment] = STATE(140), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -55265,7 +55952,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(962), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -55286,8 +55972,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(140)] = { - [sym_comment] = STATE(140), + [STATE(141)] = { + [sym_comment] = STATE(141), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_SLASH_SLASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_bit_DASHshl] = ACTIONS(902), + [anon_sym_bit_DASHshr] = ACTIONS(902), + [anon_sym_EQ_TILDE] = ACTIONS(902), + [anon_sym_BANG_TILDE] = ACTIONS(902), + [anon_sym_like] = ACTIONS(902), + [anon_sym_not_DASHlike] = ACTIONS(902), + [anon_sym_bit_DASHand] = ACTIONS(902), + [anon_sym_bit_DASHxor] = ACTIONS(902), + [anon_sym_bit_DASHor] = ACTIONS(902), + [anon_sym_and] = ACTIONS(902), + [anon_sym_xor] = ACTIONS(902), + [anon_sym_or] = ACTIONS(902), + [anon_sym_in2] = ACTIONS(902), + [anon_sym_not_DASHin] = ACTIONS(902), + [anon_sym_has] = ACTIONS(902), + [anon_sym_not_DASHhas] = ACTIONS(902), + [anon_sym_starts_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), + [anon_sym_ends_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(902), + [aux_sym_cmd_identifier_token6] = ACTIONS(906), + [sym__newline] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(990), + [sym_duration_unit] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(142)] = { + [sym_comment] = STATE(142), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -55390,1173 +56180,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(141)] = { - [sym_comment] = STATE(141), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(990), - [sym_duration_unit] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(142)] = { - [sym_comment] = STATE(142), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(143)] = { [sym_comment] = STATE(143), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(860), + [sym__newline] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), [anon_sym_POUND] = ACTIONS(103), }, [STATE(144)] = { [sym_comment] = STATE(144), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(145)] = { + [sym_pipeline_parenthesized] = STATE(4751), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(145), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1004), - [anon_sym_SLASH_SLASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_bit_DASHshl] = ACTIONS(1004), - [anon_sym_bit_DASHshr] = ACTIONS(1004), - [anon_sym_EQ_TILDE] = ACTIONS(1004), - [anon_sym_BANG_TILDE] = ACTIONS(1004), - [anon_sym_like] = ACTIONS(1004), - [anon_sym_not_DASHlike] = ACTIONS(1004), - [anon_sym_bit_DASHand] = ACTIONS(1004), - [anon_sym_bit_DASHxor] = ACTIONS(1004), - [anon_sym_bit_DASHor] = ACTIONS(1004), - [anon_sym_and] = ACTIONS(1004), - [anon_sym_xor] = ACTIONS(1004), - [anon_sym_or] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_not_DASHin] = ACTIONS(1004), - [anon_sym_has] = ACTIONS(1004), - [anon_sym_not_DASHhas] = ACTIONS(1004), - [anon_sym_starts_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), - [anon_sym_ends_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1004), - [anon_sym_BANG_EQ] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(333), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(146)] = { + [sym_pipeline] = STATE(4608), + [sym_cmd_identifier] = STATE(2947), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), [sym_comment] = STATE(146), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(147)] = { - [sym_comment] = STATE(147), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(148)] = { - [sym_comment] = STATE(148), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(149)] = { - [sym_comment] = STATE(149), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(150)] = { - [sym_comment] = STATE(150), - [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(151)] = { - [sym_comment] = STATE(151), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1004), - [anon_sym_SLASH_SLASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_bit_DASHshl] = ACTIONS(1004), - [anon_sym_bit_DASHshr] = ACTIONS(1004), - [anon_sym_EQ_TILDE] = ACTIONS(1004), - [anon_sym_BANG_TILDE] = ACTIONS(1004), - [anon_sym_like] = ACTIONS(1004), - [anon_sym_not_DASHlike] = ACTIONS(1004), - [anon_sym_bit_DASHand] = ACTIONS(1004), - [anon_sym_bit_DASHxor] = ACTIONS(1004), - [anon_sym_bit_DASHor] = ACTIONS(1004), - [anon_sym_and] = ACTIONS(1004), - [anon_sym_xor] = ACTIONS(1004), - [anon_sym_or] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_not_DASHin] = ACTIONS(1004), - [anon_sym_has] = ACTIONS(1004), - [anon_sym_not_DASHhas] = ACTIONS(1004), - [anon_sym_starts_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), - [anon_sym_ends_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1004), - [anon_sym_BANG_EQ] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(152)] = { - [sym_pipeline] = STATE(4430), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(152), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(291), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1006), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -56582,7 +56559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -56610,153 +56587,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(153)] = { - [sym_pipeline] = STATE(4585), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), + [STATE(147)] = { + [sym_pipeline_parenthesized] = STATE(4750), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(147), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(333), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(154)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(148)] = { + [sym_pipeline_parenthesized] = STATE(4751), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(148), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56768,9 +56747,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -56782,18 +56761,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56806,57 +56785,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(155)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(155), + [STATE(149)] = { + [sym_pipeline] = STATE(4443), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(149), [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56868,7 +56848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1018), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -56882,7 +56862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -56890,10 +56870,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56910,53 +56890,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(156)] = { - [sym_pipeline] = STATE(4304), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(156), + [STATE(150)] = { + [sym_pipeline] = STATE(4469), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(150), [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56968,7 +56949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1018), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -56982,7 +56963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -56990,10 +56971,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57010,53 +56991,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(157)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(157), + [STATE(151)] = { + [sym_pipeline] = STATE(4470), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(151), [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57068,7 +57050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1018), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57082,7 +57064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57090,10 +57072,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57110,53 +57092,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(158)] = { - [sym_pipeline] = STATE(4331), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(158), + [STATE(152)] = { + [sym_pipeline] = STATE(4406), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(152), [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57168,7 +57151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1018), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57182,7 +57165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57190,10 +57173,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57210,53 +57193,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(159)] = { - [sym_pipeline_parenthesized] = STATE(4460), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(159), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [STATE(153)] = { + [sym_pipeline] = STATE(4434), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(153), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57268,9 +57252,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1018), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57282,18 +57266,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57306,57 +57290,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(160)] = { - [sym_pipeline] = STATE(4518), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), + [STATE(154)] = { + [sym_pipeline] = STATE(4569), + [sym_cmd_identifier] = STATE(2947), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), + [sym_comment] = STATE(154), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(291), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1006), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -57382,7 +57367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -57410,53 +57395,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(161)] = { - [sym_pipeline_parenthesized] = STATE(4589), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(161), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [STATE(155)] = { + [sym_pipeline_parenthesized] = STATE(4732), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(155), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57468,7 +57454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -57482,7 +57468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57490,10 +57476,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57510,53 +57496,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(162)] = { - [sym_pipeline_parenthesized] = STATE(4592), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(162), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [STATE(156)] = { + [sym_pipeline] = STATE(4443), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(156), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57568,9 +57555,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57582,18 +57569,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57606,57 +57593,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(163)] = { - [sym_pipeline_parenthesized] = STATE(4616), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(163), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [STATE(157)] = { + [sym_pipeline] = STATE(4443), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(157), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57668,9 +57656,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57682,18 +57670,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57706,157 +57694,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(164)] = { - [sym_pipeline_parenthesized] = STATE(4617), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(164), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(158)] = { + [sym_comment] = STATE(158), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(165)] = { - [sym_pipeline] = STATE(4409), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), + [STATE(159)] = { + [sym_pipeline] = STATE(4539), + [sym_cmd_identifier] = STATE(2947), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(165), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), + [sym_comment] = STATE(159), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(291), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1006), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -57882,7 +57872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -57910,53 +57900,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(166)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(160)] = { + [sym_comment] = STATE(160), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(161)] = { + [sym_comment] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_like] = ACTIONS(1024), + [anon_sym_not_DASHlike] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_in2] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_has] = ACTIONS(1024), + [anon_sym_not_DASHhas] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1024), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(162)] = { + [sym_pipeline] = STATE(4469), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(162), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57968,7 +58161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57982,7 +58175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58010,53 +58203,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(167)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(163)] = { + [sym_pipeline] = STATE(4469), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58068,7 +58262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58082,7 +58276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58090,10 +58284,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58110,53 +58304,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(168)] = { - [sym_pipeline] = STATE(4304), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(164)] = { + [sym_pipeline] = STATE(4470), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(164), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58168,7 +58363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58182,7 +58377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58190,10 +58385,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58210,53 +58405,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(169)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(165)] = { + [sym_comment] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(1030), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_like] = ACTIONS(1024), + [anon_sym_not_DASHlike] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_in2] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_has] = ACTIONS(1024), + [anon_sym_not_DASHhas] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1024), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(166)] = { + [sym_pipeline] = STATE(4406), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(166), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58268,7 +58565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58282,7 +58579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58290,10 +58587,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58310,53 +58607,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(170)] = { - [sym_pipeline] = STATE(4331), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(170), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(167)] = { + [sym_pipeline] = STATE(4470), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(167), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58368,7 +58666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58382,7 +58680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58410,53 +58708,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(171)] = { - [sym_pipeline_parenthesized] = STATE(4589), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(171), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(168)] = { + [sym_pipeline] = STATE(4434), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(168), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58468,9 +58767,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58482,18 +58781,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58506,257 +58805,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(172)] = { - [sym_comment] = STATE(172), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(173)] = { - [sym_comment] = STATE(173), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(174)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [STATE(169)] = { + [sym_pipeline] = STATE(4406), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(169), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58768,7 +58868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58782,7 +58882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58790,10 +58890,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58810,53 +58910,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(175)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [STATE(170)] = { + [sym_pipeline] = STATE(4434), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(170), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58868,7 +58969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58882,7 +58983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58890,10 +58991,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58910,53 +59011,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(176)] = { - [sym_pipeline] = STATE(4304), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [STATE(171)] = { + [sym_comment] = STATE(171), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(172)] = { + [sym_pipeline] = STATE(4763), + [sym_cmd_identifier] = STATE(2947), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), + [sym_comment] = STATE(172), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(291), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(173)] = { + [sym_comment] = STATE(173), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_SLASH] = ACTIONS(1034), + [anon_sym_mod] = ACTIONS(1032), + [anon_sym_SLASH_SLASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_bit_DASHshl] = ACTIONS(1032), + [anon_sym_bit_DASHshr] = ACTIONS(1032), + [anon_sym_EQ_TILDE] = ACTIONS(1032), + [anon_sym_BANG_TILDE] = ACTIONS(1032), + [anon_sym_like] = ACTIONS(1032), + [anon_sym_not_DASHlike] = ACTIONS(1032), + [anon_sym_bit_DASHand] = ACTIONS(1032), + [anon_sym_bit_DASHxor] = ACTIONS(1032), + [anon_sym_bit_DASHor] = ACTIONS(1032), + [anon_sym_and] = ACTIONS(1032), + [anon_sym_xor] = ACTIONS(1032), + [anon_sym_or] = ACTIONS(1032), + [anon_sym_in2] = ACTIONS(1032), + [anon_sym_not_DASHin] = ACTIONS(1032), + [anon_sym_has] = ACTIONS(1032), + [anon_sym_not_DASHhas] = ACTIONS(1032), + [anon_sym_starts_DASHwith] = ACTIONS(1032), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1032), + [anon_sym_ends_DASHwith] = ACTIONS(1032), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1032), + [anon_sym_BANG_EQ] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1034), + [anon_sym_LT_EQ] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1032), + [aux_sym_cmd_identifier_token6] = ACTIONS(1036), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(174)] = { + [sym_comment] = STATE(174), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_SLASH] = ACTIONS(1034), + [anon_sym_mod] = ACTIONS(1032), + [anon_sym_SLASH_SLASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_bit_DASHshl] = ACTIONS(1032), + [anon_sym_bit_DASHshr] = ACTIONS(1032), + [anon_sym_EQ_TILDE] = ACTIONS(1032), + [anon_sym_BANG_TILDE] = ACTIONS(1032), + [anon_sym_like] = ACTIONS(1032), + [anon_sym_not_DASHlike] = ACTIONS(1032), + [anon_sym_bit_DASHand] = ACTIONS(1032), + [anon_sym_bit_DASHxor] = ACTIONS(1032), + [anon_sym_bit_DASHor] = ACTIONS(1032), + [anon_sym_and] = ACTIONS(1032), + [anon_sym_xor] = ACTIONS(1032), + [anon_sym_or] = ACTIONS(1032), + [anon_sym_in2] = ACTIONS(1032), + [anon_sym_not_DASHin] = ACTIONS(1032), + [anon_sym_has] = ACTIONS(1032), + [anon_sym_not_DASHhas] = ACTIONS(1032), + [anon_sym_starts_DASHwith] = ACTIONS(1032), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1032), + [anon_sym_ends_DASHwith] = ACTIONS(1032), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1032), + [anon_sym_BANG_EQ] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1034), + [anon_sym_LT_EQ] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1032), + [aux_sym_cmd_identifier_token6] = ACTIONS(1036), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(175)] = { + [sym_pipeline_parenthesized] = STATE(4669), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(175), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58968,9 +59474,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58982,18 +59488,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59006,57 +59512,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(176)] = { + [sym_pipeline] = STATE(4768), + [sym_cmd_identifier] = STATE(2947), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), + [sym_comment] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(291), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, [STATE(177)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline_parenthesized] = STATE(4733), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59068,9 +59676,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59082,18 +59690,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59106,57 +59714,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(178)] = { - [sym_pipeline] = STATE(4331), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline_parenthesized] = STATE(4732), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59168,9 +59777,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59182,18 +59791,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59206,57 +59815,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(179)] = { - [sym_pipeline_parenthesized] = STATE(4592), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_pipeline_parenthesized] = STATE(4669), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59282,7 +59892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59311,52 +59921,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(180)] = { - [sym_pipeline_parenthesized] = STATE(4460), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_pipeline_parenthesized] = STATE(4733), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(180), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59368,7 +59979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -59382,7 +59993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59390,10 +60001,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59411,52 +60022,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(181)] = { - [sym_pipeline_parenthesized] = STATE(4616), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_pipeline_parenthesized] = STATE(4750), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(181), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59482,7 +60094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59511,52 +60123,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(182)] = { - [sym_pipeline_parenthesized] = STATE(4617), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2919), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59568,9 +60180,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59582,11 +60194,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -59606,156 +60218,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(183)] = { - [sym_pipeline] = STATE(4412), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3505), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [aux_sym_cmd_identifier_token1] = ACTIONS(1047), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1053), + [anon_sym_catch] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1056), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [anon_sym_null] = ACTIONS(1062), + [aux_sym_cmd_identifier_token3] = ACTIONS(1065), + [aux_sym_cmd_identifier_token4] = ACTIONS(1065), + [aux_sym_cmd_identifier_token5] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_DASH2] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1086), + [aux_sym_expr_unary_token1] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1092), + [anon_sym_DOT_DOT_LT] = ACTIONS(1092), + [aux_sym__val_number_decimal_token1] = ACTIONS(1095), + [aux_sym__val_number_decimal_token2] = ACTIONS(1098), + [aux_sym__val_number_decimal_token3] = ACTIONS(1101), + [aux_sym__val_number_decimal_token4] = ACTIONS(1101), + [aux_sym__val_number_token1] = ACTIONS(1104), + [aux_sym__val_number_token2] = ACTIONS(1104), + [aux_sym__val_number_token3] = ACTIONS(1104), + [anon_sym_0b] = ACTIONS(1107), + [anon_sym_0o] = ACTIONS(1110), + [anon_sym_0x] = ACTIONS(1110), + [sym_val_date] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_BQUOTE] = ACTIONS(1122), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1125), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1128), + [anon_sym_CARET] = ACTIONS(1131), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1134), }, [STATE(184)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2919), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(184), [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59767,7 +60380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59781,7 +60394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59789,10 +60402,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59810,51 +60423,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(185)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2919), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(185), [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59866,7 +60480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1018), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59880,7 +60494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59888,10 +60502,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59909,249 +60523,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(186)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(3228), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(3428), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(186), [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_mut] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [aux_sym_cmd_identifier_token1] = ACTIONS(1040), - [anon_sym_def] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_export_DASHenv] = ACTIONS(1037), - [anon_sym_extern] = ACTIONS(1037), - [anon_sym_module] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_else] = ACTIONS(1037), - [anon_sym_try] = ACTIONS(1046), - [anon_sym_catch] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_in] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1052), - [anon_sym_false] = ACTIONS(1052), - [anon_sym_null] = ACTIONS(1055), - [aux_sym_cmd_identifier_token3] = ACTIONS(1058), - [aux_sym_cmd_identifier_token4] = ACTIONS(1058), - [aux_sym_cmd_identifier_token5] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_DOLLAR] = ACTIONS(1067), - [anon_sym_DASH2] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1076), - [anon_sym_where] = ACTIONS(1079), - [aux_sym_expr_unary_token1] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1085), - [aux_sym__val_number_decimal_token1] = ACTIONS(1088), - [aux_sym__val_number_decimal_token2] = ACTIONS(1091), - [aux_sym__val_number_decimal_token3] = ACTIONS(1094), - [aux_sym__val_number_decimal_token4] = ACTIONS(1094), - [aux_sym__val_number_token1] = ACTIONS(1097), - [aux_sym__val_number_token2] = ACTIONS(1097), - [aux_sym__val_number_token3] = ACTIONS(1097), - [anon_sym_0b] = ACTIONS(1100), - [anon_sym_0o] = ACTIONS(1103), - [anon_sym_0x] = ACTIONS(1103), - [sym_val_date] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1109), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_BQUOTE] = ACTIONS(1115), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1118), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1121), - [anon_sym_CARET] = ACTIONS(1124), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1127), + [aux_sym_pipe_element_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(1137), + [anon_sym_alias] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1143), + [anon_sym_mut] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1140), + [aux_sym_cmd_identifier_token1] = ACTIONS(1146), + [anon_sym_def] = ACTIONS(1140), + [anon_sym_use] = ACTIONS(1140), + [anon_sym_export_DASHenv] = ACTIONS(1140), + [anon_sym_extern] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1140), + [anon_sym_loop] = ACTIONS(1140), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_if] = ACTIONS(1149), + [anon_sym_else] = ACTIONS(1140), + [anon_sym_try] = ACTIONS(1152), + [anon_sym_catch] = ACTIONS(1140), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1137), + [anon_sym_true] = ACTIONS(1158), + [anon_sym_false] = ACTIONS(1158), + [anon_sym_null] = ACTIONS(1161), + [aux_sym_cmd_identifier_token3] = ACTIONS(1164), + [aux_sym_cmd_identifier_token4] = ACTIONS(1164), + [aux_sym_cmd_identifier_token5] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1167), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_DASH2] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1182), + [anon_sym_where] = ACTIONS(1185), + [aux_sym_expr_unary_token1] = ACTIONS(1188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1191), + [anon_sym_DOT_DOT_LT] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1194), + [aux_sym__val_number_decimal_token2] = ACTIONS(1197), + [aux_sym__val_number_decimal_token3] = ACTIONS(1200), + [aux_sym__val_number_decimal_token4] = ACTIONS(1200), + [aux_sym__val_number_token1] = ACTIONS(1203), + [aux_sym__val_number_token2] = ACTIONS(1203), + [aux_sym__val_number_token3] = ACTIONS(1203), + [anon_sym_0b] = ACTIONS(1206), + [anon_sym_0o] = ACTIONS(1209), + [anon_sym_0x] = ACTIONS(1209), + [sym_val_date] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1215), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_BQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1224), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1230), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1233), }, [STATE(187)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2976), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), [sym_comment] = STATE(187), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(188)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3075), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(188), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(290), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60163,9 +60780,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -60177,11 +60794,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -60201,254 +60818,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(189)] = { - [sym_comment] = STATE(189), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(190)] = { - [sym_comment] = STATE(190), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(191)] = { - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2938), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), + [sym_cmd_identifier] = STATE(2947), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3062), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(191), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), + [sym_comment] = STATE(189), [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipe_element_repeat2] = STATE(291), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1006), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -60474,7 +60894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -60502,52 +60922,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(192)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2976), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(192), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(190)] = { + [sym_comment] = STATE(190), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(191)] = { + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3075), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(191), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60559,7 +61080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -60573,7 +61094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60581,10 +61102,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60601,237 +61122,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(192)] = { + [sym_comment] = STATE(192), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(193)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(3227), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), [sym_comment] = STATE(193), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [anon_sym_export] = ACTIONS(1130), - [anon_sym_alias] = ACTIONS(1133), - [anon_sym_let] = ACTIONS(1133), - [anon_sym_mut] = ACTIONS(1133), - [anon_sym_const] = ACTIONS(1133), - [aux_sym_cmd_identifier_token1] = ACTIONS(1136), - [anon_sym_def] = ACTIONS(1133), - [anon_sym_use] = ACTIONS(1133), - [anon_sym_export_DASHenv] = ACTIONS(1133), - [anon_sym_extern] = ACTIONS(1133), - [anon_sym_module] = ACTIONS(1133), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_loop] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1133), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1133), - [anon_sym_try] = ACTIONS(1142), - [anon_sym_catch] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1130), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [anon_sym_null] = ACTIONS(1151), - [aux_sym_cmd_identifier_token3] = ACTIONS(1154), - [aux_sym_cmd_identifier_token4] = ACTIONS(1154), - [aux_sym_cmd_identifier_token5] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1163), - [anon_sym_DASH2] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1175), - [aux_sym_expr_unary_token1] = ACTIONS(1178), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), - [anon_sym_DOT_DOT_LT] = ACTIONS(1181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1184), - [aux_sym__val_number_decimal_token2] = ACTIONS(1187), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_decimal_token4] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1196), - [anon_sym_0o] = ACTIONS(1199), - [anon_sym_0x] = ACTIONS(1199), - [sym_val_date] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_BQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1214), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1223), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(194)] = { - [sym_expr_parenthesized] = STATE(3738), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(3941), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(3848), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(3366), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), + [sym_expr_parenthesized] = STATE(4007), + [sym__spread_parenthesized] = STATE(3130), + [sym_val_range] = STATE(3137), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(3137), + [sym_val_nothing] = STATE(3023), + [sym_val_bool] = STATE(4092), + [sym__spread_variable] = STATE(3138), + [sym_val_variable] = STATE(3984), + [sym_val_cellpath] = STATE(3023), + [sym_val_number] = STATE(3023), + [sym__val_number_decimal] = STATE(3528), + [sym__val_number] = STATE(3192), + [sym_val_duration] = STATE(3023), + [sym_val_filesize] = STATE(3023), + [sym_val_binary] = STATE(3023), + [sym_val_string] = STATE(3023), + [sym__raw_str] = STATE(2483), + [sym__str_double_quotes] = STATE(2483), + [sym__str_single_quotes] = STATE(2483), + [sym__str_back_ticks] = STATE(2483), + [sym_val_interpolated] = STATE(3023), + [sym__inter_single_quotes] = STATE(3094), + [sym__inter_double_quotes] = STATE(3095), + [sym_val_list] = STATE(3023), + [sym__spread_list] = STATE(3130), + [sym_val_record] = STATE(3023), + [sym_val_table] = STATE(3023), + [sym_val_closure] = STATE(3023), + [sym__cmd_arg] = STATE(3139), + [sym_redirection] = STATE(3140), + [sym__flag] = STATE(3141), + [sym_short_flag] = STATE(3142), + [sym_long_flag] = STATE(3142), + [sym_unquoted] = STATE(2867), + [sym__unquoted_with_expr] = STATE(3143), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(194), - [anon_sym_true] = ACTIONS(1226), - [anon_sym_false] = ACTIONS(1226), - [anon_sym_null] = ACTIONS(1228), - [aux_sym_cmd_identifier_token3] = ACTIONS(1230), - [aux_sym_cmd_identifier_token4] = ACTIONS(1230), - [aux_sym_cmd_identifier_token5] = ACTIONS(1230), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1238), - [anon_sym_DOT_DOT_LT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(1240), - [aux_sym__val_number_decimal_token2] = ACTIONS(1240), - [aux_sym__val_number_decimal_token3] = ACTIONS(1242), - [aux_sym__val_number_decimal_token4] = ACTIONS(1242), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), + [anon_sym_true] = ACTIONS(1236), + [anon_sym_false] = ACTIONS(1236), + [anon_sym_null] = ACTIONS(1238), + [aux_sym_cmd_identifier_token3] = ACTIONS(1240), + [aux_sym_cmd_identifier_token4] = ACTIONS(1240), + [aux_sym_cmd_identifier_token5] = ACTIONS(1240), + [sym__newline] = ACTIONS(804), + [sym__space] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(810), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1248), + [anon_sym_DOT_DOT_LT] = ACTIONS(1248), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(824), + [aux_sym__val_number_decimal_token1] = ACTIONS(1250), + [aux_sym__val_number_decimal_token2] = ACTIONS(1250), + [aux_sym__val_number_decimal_token3] = ACTIONS(1252), + [aux_sym__val_number_decimal_token4] = ACTIONS(1252), + [aux_sym__val_number_token1] = ACTIONS(830), + [aux_sym__val_number_token2] = ACTIONS(830), + [aux_sym__val_number_token3] = ACTIONS(830), + [anon_sym_0b] = ACTIONS(832), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(848), + [anon_sym_err_GT] = ACTIONS(852), + [anon_sym_out_GT] = ACTIONS(852), + [anon_sym_e_GT] = ACTIONS(852), + [anon_sym_o_GT] = ACTIONS(852), + [anon_sym_err_PLUSout_GT] = ACTIONS(852), + [anon_sym_out_PLUSerr_GT] = ACTIONS(852), + [anon_sym_o_PLUSe_GT] = ACTIONS(852), + [anon_sym_e_PLUSo_GT] = ACTIONS(852), + [anon_sym_err_GT_GT] = ACTIONS(852), + [anon_sym_out_GT_GT] = ACTIONS(852), + [anon_sym_e_GT_GT] = ACTIONS(852), + [anon_sym_o_GT_GT] = ACTIONS(852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(852), + [aux_sym_unquoted_token1] = ACTIONS(854), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), + [sym_raw_string_begin] = ACTIONS(856), }, [STATE(195)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(262), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3316), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(234), + [sym_ctrl_if_parenthesized] = STATE(3482), + [sym_block] = STATE(3483), + [sym__expression_parenthesized] = STATE(3483), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3483), [sym_comment] = STATE(195), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -60847,32 +61467,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60890,41 +61510,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(196)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3405), + [sym_block] = STATE(3408), + [sym__expression_parenthesized] = STATE(3408), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3408), [sym_comment] = STATE(196), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -60946,26 +61566,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60983,41 +61603,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(197)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(200), + [sym_ctrl_if_parenthesized] = STATE(3370), + [sym_block] = STATE(3383), + [sym__expression_parenthesized] = STATE(3383), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3383), [sym_comment] = STATE(197), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61033,32 +61653,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61076,41 +61696,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(198)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2932), [aux_sym__repeat_newline] = STATE(203), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_ctrl_if_parenthesized] = STATE(3475), + [sym_block] = STATE(3484), + [sym__expression_parenthesized] = STATE(3484), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3484), [sym_comment] = STATE(198), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61126,32 +61746,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61169,41 +61789,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(199)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(205), + [sym_ctrl_if_parenthesized] = STATE(3503), + [sym_block] = STATE(3504), + [sym__expression_parenthesized] = STATE(3504), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3504), [sym_comment] = STATE(199), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61219,32 +61839,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61262,41 +61882,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(200)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3415), + [sym_block] = STATE(3435), + [sym__expression_parenthesized] = STATE(3435), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3435), [sym_comment] = STATE(200), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61312,32 +61932,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61355,41 +61975,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(201)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(204), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(207), + [sym_ctrl_if_parenthesized] = STATE(3415), + [sym_block] = STATE(3435), + [sym__expression_parenthesized] = STATE(3435), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3435), [sym_comment] = STATE(201), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61405,32 +62025,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61448,41 +62068,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(202)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(209), + [sym_ctrl_if_parenthesized] = STATE(3449), + [sym_block] = STATE(3450), + [sym__expression_parenthesized] = STATE(3450), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3450), [sym_comment] = STATE(202), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61498,32 +62118,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61541,41 +62161,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(203)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3482), + [sym_block] = STATE(3483), + [sym__expression_parenthesized] = STATE(3483), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3483), [sym_comment] = STATE(203), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61591,32 +62211,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61634,41 +62254,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(204)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(211), + [sym_ctrl_if_parenthesized] = STATE(3482), + [sym_block] = STATE(3483), + [sym__expression_parenthesized] = STATE(3483), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3483), [sym_comment] = STATE(204), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61684,32 +62304,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61727,41 +62347,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(205)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(202), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_block] = STATE(3487), + [sym__expression_parenthesized] = STATE(3487), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3487), [sym_comment] = STATE(205), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61777,32 +62397,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61820,41 +62440,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(206)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(209), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(266), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_block] = STATE(3487), + [sym__expression_parenthesized] = STATE(3487), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3487), [sym_comment] = STATE(206), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61870,32 +62490,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61913,41 +62533,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(207)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(212), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3489), + [sym_block] = STATE(3490), + [sym__expression_parenthesized] = STATE(3490), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3490), [sym_comment] = STATE(207), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61963,32 +62583,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62006,41 +62626,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(208)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2932), [aux_sym__repeat_newline] = STATE(214), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3316), + [sym_ctrl_if_parenthesized] = STATE(3489), + [sym_block] = STATE(3490), + [sym__expression_parenthesized] = STATE(3490), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3490), [sym_comment] = STATE(208), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62056,32 +62676,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62099,41 +62719,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(209)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3438), + [sym_block] = STATE(3443), + [sym__expression_parenthesized] = STATE(3443), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3443), [sym_comment] = STATE(209), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62149,32 +62769,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62192,41 +62812,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(210)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(216), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(215), + [sym_ctrl_if_parenthesized] = STATE(3438), + [sym_block] = STATE(3443), + [sym__expression_parenthesized] = STATE(3443), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3443), [sym_comment] = STATE(210), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62242,32 +62862,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62285,41 +62905,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(211)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(218), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3493), + [sym_block] = STATE(3495), + [sym__expression_parenthesized] = STATE(3495), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3495), [sym_comment] = STATE(211), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62335,32 +62955,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62378,41 +62998,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(212)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(217), + [sym_ctrl_if_parenthesized] = STATE(3493), + [sym_block] = STATE(3495), + [sym__expression_parenthesized] = STATE(3495), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3495), [sym_comment] = STATE(212), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62428,32 +63048,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62471,41 +63091,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(213)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(220), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(218), + [sym_ctrl_if_parenthesized] = STATE(3497), + [sym_block] = STATE(3510), + [sym__expression_parenthesized] = STATE(3510), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3510), [sym_comment] = STATE(213), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62521,32 +63141,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62564,41 +63184,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(214)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3513), + [sym_block] = STATE(3514), + [sym__expression_parenthesized] = STATE(3514), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3514), [sym_comment] = STATE(214), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62614,32 +63234,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62657,41 +63277,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(215)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(222), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3516), + [sym_block] = STATE(3517), + [sym__expression_parenthesized] = STATE(3517), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3517), [sym_comment] = STATE(215), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62707,32 +63327,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62750,41 +63370,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(216)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(219), + [sym_ctrl_if_parenthesized] = STATE(3516), + [sym_block] = STATE(3517), + [sym__expression_parenthesized] = STATE(3517), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3517), [sym_comment] = STATE(216), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62800,32 +63420,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62843,41 +63463,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(217)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(224), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3380), + [sym_block] = STATE(3381), + [sym__expression_parenthesized] = STATE(3381), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3381), [sym_comment] = STATE(217), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62893,32 +63513,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62936,41 +63556,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(218)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3386), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3404), [sym_comment] = STATE(218), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62986,32 +63606,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63029,41 +63649,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(219)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(225), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3405), + [sym_block] = STATE(3408), + [sym__expression_parenthesized] = STATE(3408), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3408), [sym_comment] = STATE(219), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63079,32 +63699,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63122,41 +63742,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(220)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(246), + [sym_ctrl_if_parenthesized] = STATE(3370), + [sym_block] = STATE(3383), + [sym__expression_parenthesized] = STATE(3383), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3383), [sym_comment] = STATE(220), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63172,32 +63792,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63215,41 +63835,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(221)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(227), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(224), + [sym_ctrl_if_parenthesized] = STATE(3370), + [sym_block] = STATE(3383), + [sym__expression_parenthesized] = STATE(3383), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3383), [sym_comment] = STATE(221), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63265,32 +63885,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63308,41 +63928,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(222)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(227), + [sym_ctrl_if_parenthesized] = STATE(3475), + [sym_block] = STATE(3484), + [sym__expression_parenthesized] = STATE(3484), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3484), [sym_comment] = STATE(222), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63358,32 +63978,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63401,41 +64021,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(223)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2932), [aux_sym__repeat_newline] = STATE(228), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_ctrl_if_parenthesized] = STATE(3503), + [sym_block] = STATE(3504), + [sym__expression_parenthesized] = STATE(3504), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3504), [sym_comment] = STATE(223), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63451,32 +64071,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63494,41 +64114,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(224)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3415), + [sym_block] = STATE(3435), + [sym__expression_parenthesized] = STATE(3435), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3435), [sym_comment] = STATE(224), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63544,32 +64164,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63587,41 +64207,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(225)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(230), + [sym_ctrl_if_parenthesized] = STATE(3415), + [sym_block] = STATE(3435), + [sym__expression_parenthesized] = STATE(3435), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3435), [sym_comment] = STATE(225), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63637,32 +64257,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63680,41 +64300,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(226)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(229), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(232), + [sym_ctrl_if_parenthesized] = STATE(3449), + [sym_block] = STATE(3450), + [sym__expression_parenthesized] = STATE(3450), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3450), [sym_comment] = STATE(226), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63730,32 +64350,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63773,41 +64393,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(227)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3482), + [sym_block] = STATE(3483), + [sym__expression_parenthesized] = STATE(3483), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3483), [sym_comment] = STATE(227), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63823,32 +64443,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63866,41 +64486,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(228)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_block] = STATE(3487), + [sym__expression_parenthesized] = STATE(3487), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3487), [sym_comment] = STATE(228), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63916,32 +64536,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63959,41 +64579,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(229)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(236), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_block] = STATE(3487), + [sym__expression_parenthesized] = STATE(3487), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3487), [sym_comment] = STATE(229), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64009,32 +64629,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64052,41 +64672,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(230)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3489), + [sym_block] = STATE(3490), + [sym__expression_parenthesized] = STATE(3490), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3490), [sym_comment] = STATE(230), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64102,32 +64722,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64145,41 +64765,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(231)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(266), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(238), + [sym_ctrl_if_parenthesized] = STATE(3489), + [sym_block] = STATE(3490), + [sym__expression_parenthesized] = STATE(3490), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3490), [sym_comment] = STATE(231), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64195,32 +64815,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64238,41 +64858,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(232)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(237), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3438), + [sym_block] = STATE(3443), + [sym__expression_parenthesized] = STATE(3443), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3443), [sym_comment] = STATE(232), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64288,32 +64908,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64331,41 +64951,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(233)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2932), [aux_sym__repeat_newline] = STATE(239), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3316), + [sym_ctrl_if_parenthesized] = STATE(3438), + [sym_block] = STATE(3443), + [sym__expression_parenthesized] = STATE(3443), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3443), [sym_comment] = STATE(233), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64381,32 +65001,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64424,41 +65044,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(234)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(200), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3493), + [sym_block] = STATE(3495), + [sym__expression_parenthesized] = STATE(3495), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3495), [sym_comment] = STATE(234), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64474,32 +65094,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64517,41 +65137,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(235)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2932), [aux_sym__repeat_newline] = STATE(241), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_ctrl_if_parenthesized] = STATE(3493), + [sym_block] = STATE(3495), + [sym__expression_parenthesized] = STATE(3495), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3495), [sym_comment] = STATE(235), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64567,32 +65187,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64610,41 +65230,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(236)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(243), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3497), + [sym_block] = STATE(3510), + [sym__expression_parenthesized] = STATE(3510), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3510), [sym_comment] = STATE(236), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64660,32 +65280,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64703,41 +65323,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(237)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(242), + [sym_ctrl_if_parenthesized] = STATE(3497), + [sym_block] = STATE(3510), + [sym__expression_parenthesized] = STATE(3510), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3510), [sym_comment] = STATE(237), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64753,32 +65373,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64796,41 +65416,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(238)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(245), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3513), + [sym_block] = STATE(3514), + [sym__expression_parenthesized] = STATE(3514), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3514), [sym_comment] = STATE(238), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64846,32 +65466,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64889,41 +65509,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(239)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3516), + [sym_block] = STATE(3517), + [sym__expression_parenthesized] = STATE(3517), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3517), [sym_comment] = STATE(239), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64939,32 +65559,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64982,41 +65602,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(240)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(247), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(243), + [sym_ctrl_if_parenthesized] = STATE(3516), + [sym_block] = STATE(3517), + [sym__expression_parenthesized] = STATE(3517), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3517), [sym_comment] = STATE(240), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65032,32 +65652,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65075,41 +65695,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(241)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3380), + [sym_block] = STATE(3381), + [sym__expression_parenthesized] = STATE(3381), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3381), [sym_comment] = STATE(241), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65125,32 +65745,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65168,41 +65788,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(242)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(249), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3386), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3404), [sym_comment] = STATE(242), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65218,32 +65838,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65261,41 +65881,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(243)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3405), + [sym_block] = STATE(3408), + [sym__expression_parenthesized] = STATE(3408), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3408), [sym_comment] = STATE(243), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65311,32 +65931,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65354,41 +65974,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(244)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(250), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(249), + [sym_ctrl_if_parenthesized] = STATE(3475), + [sym_block] = STATE(3484), + [sym__expression_parenthesized] = STATE(3484), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3484), [sym_comment] = STATE(244), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65404,32 +66024,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65447,41 +66067,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(245)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(251), + [sym_ctrl_if_parenthesized] = STATE(3503), + [sym_block] = STATE(3504), + [sym__expression_parenthesized] = STATE(3504), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3504), [sym_comment] = STATE(245), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65497,32 +66117,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65540,41 +66160,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(246)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(252), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3415), + [sym_block] = STATE(3435), + [sym__expression_parenthesized] = STATE(3435), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3435), [sym_comment] = STATE(246), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65590,32 +66210,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65633,41 +66253,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(247)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(253), + [sym_ctrl_if_parenthesized] = STATE(3415), + [sym_block] = STATE(3435), + [sym__expression_parenthesized] = STATE(3435), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3435), [sym_comment] = STATE(247), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65683,32 +66303,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65726,41 +66346,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(248)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(253), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(255), + [sym_ctrl_if_parenthesized] = STATE(3449), + [sym_block] = STATE(3450), + [sym__expression_parenthesized] = STATE(3450), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3450), [sym_comment] = STATE(248), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65776,32 +66396,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65819,41 +66439,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(249)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3482), + [sym_block] = STATE(3483), + [sym__expression_parenthesized] = STATE(3483), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3483), [sym_comment] = STATE(249), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65869,32 +66489,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65912,507 +66532,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(250)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), - [sym_comment] = STATE(250), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(251)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(254), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), - [sym_comment] = STATE(251), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(252)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), - [sym_comment] = STATE(252), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(253)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), - [sym_comment] = STATE(253), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(254)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), - [sym_comment] = STATE(254), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(255)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2932), [aux_sym__repeat_newline] = STATE(257), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), - [sym_comment] = STATE(255), + [sym_ctrl_if_parenthesized] = STATE(3482), + [sym_block] = STATE(3483), + [sym__expression_parenthesized] = STATE(3483), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3483), + [sym_comment] = STATE(250), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -66433,26 +66588,491 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(251)] = { + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_block] = STATE(3487), + [sym__expression_parenthesized] = STATE(3487), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3487), + [sym_comment] = STATE(251), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(252)] = { + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(259), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_block] = STATE(3487), + [sym__expression_parenthesized] = STATE(3487), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3487), + [sym_comment] = STATE(252), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(253)] = { + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3489), + [sym_block] = STATE(3490), + [sym__expression_parenthesized] = STATE(3490), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3490), + [sym_comment] = STATE(253), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(254)] = { + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(261), + [sym_ctrl_if_parenthesized] = STATE(3489), + [sym_block] = STATE(3490), + [sym__expression_parenthesized] = STATE(3490), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3490), + [sym_comment] = STATE(254), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(255)] = { + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3438), + [sym_block] = STATE(3443), + [sym__expression_parenthesized] = STATE(3443), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3443), + [sym_comment] = STATE(255), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66470,41 +67090,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(256)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(260), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(262), + [sym_ctrl_if_parenthesized] = STATE(3438), + [sym_block] = STATE(3443), + [sym__expression_parenthesized] = STATE(3443), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3443), [sym_comment] = STATE(256), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66526,26 +67146,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66563,41 +67183,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(257)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3493), + [sym_block] = STATE(3495), + [sym__expression_parenthesized] = STATE(3495), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3495), [sym_comment] = STATE(257), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66619,26 +67239,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66656,41 +67276,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(258)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2932), [aux_sym__repeat_newline] = STATE(264), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_ctrl_if_parenthesized] = STATE(3493), + [sym_block] = STATE(3495), + [sym__expression_parenthesized] = STATE(3495), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3495), [sym_comment] = STATE(258), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66712,26 +67332,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66749,41 +67369,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(259)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(196), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3497), + [sym_block] = STATE(3510), + [sym__expression_parenthesized] = STATE(3510), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3510), [sym_comment] = STATE(259), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66805,26 +67425,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66842,41 +67462,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(260)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(265), + [sym_ctrl_if_parenthesized] = STATE(3497), + [sym_block] = STATE(3510), + [sym__expression_parenthesized] = STATE(3510), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3510), [sym_comment] = STATE(260), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66898,26 +67518,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66935,41 +67555,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(261)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(197), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3513), + [sym_block] = STATE(3514), + [sym__expression_parenthesized] = STATE(3514), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3514), [sym_comment] = STATE(261), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66991,26 +67611,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67028,41 +67648,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(262)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3516), + [sym_block] = STATE(3517), + [sym__expression_parenthesized] = STATE(3517), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3517), [sym_comment] = STATE(262), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67084,26 +67704,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67121,41 +67741,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(263)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(230), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(196), + [sym_ctrl_if_parenthesized] = STATE(3516), + [sym_block] = STATE(3517), + [sym__expression_parenthesized] = STATE(3517), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3517), [sym_comment] = STATE(263), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67177,26 +67797,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67214,41 +67834,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(264)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3380), + [sym_block] = STATE(3381), + [sym__expression_parenthesized] = STATE(3381), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3381), [sym_comment] = STATE(264), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67270,26 +67890,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67307,41 +67927,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(265)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(199), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3386), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3404), [sym_comment] = STATE(265), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67363,26 +67983,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67400,41 +68020,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(266)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3497), + [sym_block] = STATE(3510), + [sym__expression_parenthesized] = STATE(3510), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3510), [sym_comment] = STATE(266), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67450,32 +68070,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67576,10 +68196,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1276), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1278), + [aux_sym__immediate_decimal_token1] = ACTIONS(1286), + [aux_sym__immediate_decimal_token5] = ACTIONS(1288), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), @@ -67668,16 +68288,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1290), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1280), - [aux_sym__immediate_decimal_token5] = ACTIONS(1282), + [aux_sym__immediate_decimal_token5] = ACTIONS(1292), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, [STATE(269)] = { [sym_comment] = STATE(269), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -67725,7 +68346,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), @@ -67760,10 +68380,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1284), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1286), + [aux_sym__immediate_decimal_token1] = ACTIONS(1294), + [aux_sym__immediate_decimal_token5] = ACTIONS(1296), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), @@ -67852,16 +68472,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1298), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1288), - [aux_sym__immediate_decimal_token5] = ACTIONS(1290), + [aux_sym__immediate_decimal_token5] = ACTIONS(1300), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, [STATE(271)] = { [sym_comment] = STATE(271), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(1302), + [aux_sym__immediate_decimal_token5] = ACTIONS(1304), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(272)] = { + [sym_comment] = STATE(272), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -67944,106 +68656,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1306), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1292), - [aux_sym__immediate_decimal_token5] = ACTIONS(1294), + [aux_sym__immediate_decimal_token5] = ACTIONS(1308), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(272)] = { - [sym_comment] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1296), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1298), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(273)] = { [sym_comment] = STATE(273), [anon_sym_in] = ACTIONS(771), @@ -68130,47 +68750,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1300), + [aux_sym__immediate_decimal_token5] = ACTIONS(1310), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, [STATE(274)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), + [sym_cmd_identifier] = STATE(3009), + [sym__expression_parenthesized] = STATE(2291), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3387), [sym_comment] = STATE(274), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1395), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -68185,31 +68805,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(271), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68222,46 +68842,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(275)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), [sym_comment] = STATE(275), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1312), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(276)] = { + [sym_comment] = STATE(276), + [ts_builtin_sym_end] = ACTIONS(749), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1292), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(277)] = { + [sym_comment] = STATE(277), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1300), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(278)] = { + [sym_cmd_identifier] = STATE(2812), + [sym__expression] = STATE(2286), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3255), + [sym_comment] = STATE(278), + [aux_sym_pipe_element_repeat2] = STATE(1400), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -68290,17 +69183,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68313,46 +69206,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(276)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(307), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(276), + [STATE(279)] = { + [sym_comment] = STATE(279), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1314), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(280)] = { + [sym_cmd_identifier] = STATE(2932), + [sym_ctrl_if] = STATE(3359), + [sym_block] = STATE(3220), + [sym__expression] = STATE(3220), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2249), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3220), + [sym_comment] = STATE(280), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -68367,31 +69351,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1304), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68408,99 +69392,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(277)] = { - [sym_comment] = STATE(277), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1310), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(278)] = { - [sym_comment] = STATE(278), + [STATE(281)] = { + [sym_comment] = STATE(281), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -68550,6 +69443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -68584,139 +69478,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1312), - [aux_sym__immediate_decimal_token5] = ACTIONS(1314), + [aux_sym__immediate_decimal_token5] = ACTIONS(1308), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(279)] = { - [sym_comment] = STATE(279), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1278), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(280)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(282)] = { + [sym_cmd_identifier] = STATE(2812), + [sym__expression] = STATE(2286), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(280), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3255), + [sym_comment] = STATE(282), + [aux_sym_pipe_element_repeat2] = STATE(1400), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -68745,7 +69547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -68772,100 +69574,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(281)] = { - [sym_cmd_identifier] = STATE(2895), - [sym__expression] = STATE(2262), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3334), - [sym_comment] = STATE(281), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(39), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(39), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), + [STATE(283)] = { + [sym_cmd_identifier] = STATE(2932), + [sym_ctrl_if] = STATE(3359), + [sym_block] = STATE(3220), + [sym__expression] = STATE(3220), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2249), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3220), + [sym_comment] = STATE(283), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(282)] = { - [sym_comment] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(741), + [STATE(284)] = { + [sym_comment] = STATE(284), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1324), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1326), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(285)] = { + [sym_cmd_identifier] = STATE(2812), + [sym__expression] = STATE(2286), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3255), + [sym_comment] = STATE(285), + [aux_sym_pipe_element_repeat2] = STATE(1400), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(286)] = { + [sym_cmd_identifier] = STATE(2932), + [sym_ctrl_if] = STATE(3359), + [sym_block] = STATE(3220), + [sym__expression] = STATE(3220), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2249), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3220), + [sym_comment] = STATE(286), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1270), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(287)] = { + [sym_comment] = STATE(287), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -68949,47 +70023,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1298), + [aux_sym__immediate_decimal_token1] = ACTIONS(1328), + [aux_sym__immediate_decimal_token5] = ACTIONS(1330), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(283)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(283), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), + [STATE(288)] = { + [sym_cmd_identifier] = STATE(3009), + [sym__expression_parenthesized] = STATE(2291), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3387), + [sym_comment] = STATE(288), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1395), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1316), + [aux_sym__val_number_decimal_token2] = ACTIONS(1318), + [aux_sym__val_number_decimal_token3] = ACTIONS(1320), + [aux_sym__val_number_decimal_token4] = ACTIONS(1320), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(289)] = { + [sym_cmd_identifier] = STATE(3009), + [sym__expression_parenthesized] = STATE(2291), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3387), + [sym_comment] = STATE(289), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1395), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69018,7 +70184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -69045,679 +70211,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(284)] = { - [sym_comment] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1322), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(285)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(285), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(286)] = { - [sym_comment] = STATE(286), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1286), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(287)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(287), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(288)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(288), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(289)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(289), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1318), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_decimal_token4] = ACTIONS(1320), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, [STATE(290)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), + [sym_cmd_identifier] = STATE(3046), + [sym_ctrl_if] = STATE(3444), + [sym_block] = STATE(3474), + [sym__expression] = STATE(3474), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2251), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_command] = STATE(3474), [sym_comment] = STATE(290), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(39), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(39), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(1332), + [anon_sym_false] = ACTIONS(1332), + [anon_sym_null] = ACTIONS(1334), + [aux_sym_cmd_identifier_token3] = ACTIONS(1336), + [aux_sym_cmd_identifier_token4] = ACTIONS(1336), + [aux_sym_cmd_identifier_token5] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_DOT_DOT] = ACTIONS(69), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(1340), + [aux_sym__val_number_decimal_token2] = ACTIONS(1342), + [aux_sym__val_number_decimal_token3] = ACTIONS(1344), + [aux_sym__val_number_decimal_token4] = ACTIONS(1344), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(291)] = { - [sym_cmd_identifier] = STATE(2929), - [sym_ctrl_if] = STATE(3301), - [sym_block] = STATE(3302), - [sym__expression] = STATE(3302), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(306), + [sym_cmd_identifier] = STATE(2947), + [sym__expression] = STATE(2292), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_command] = STATE(3302), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3403), [sym_comment] = STATE(291), + [aux_sym_pipe_element_repeat2] = STATE(1400), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -69732,31 +70352,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(39), [anon_sym_loop] = ACTIONS(39), [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), [anon_sym_else] = ACTIONS(39), [anon_sym_try] = ACTIONS(39), [anon_sym_catch] = ACTIONS(39), [anon_sym_match] = ACTIONS(39), [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [anon_sym_null] = ACTIONS(1328), - [aux_sym_cmd_identifier_token3] = ACTIONS(1330), - [aux_sym_cmd_identifier_token4] = ACTIONS(1330), - [aux_sym_cmd_identifier_token5] = ACTIONS(1330), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), [aux_sym_expr_unary_token1] = ACTIONS(73), [anon_sym_DOT_DOT_EQ] = ACTIONS(75), [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1338), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), @@ -69774,41 +70394,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(292)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), + [sym_cmd_identifier] = STATE(2812), + [sym__expression] = STATE(2286), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3255), [sym_comment] = STATE(292), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [aux_sym_pipe_element_repeat2] = STATE(1400), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69837,7 +70457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -69865,278 +70485,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(293)] = { + [sym_cmd_identifier] = STATE(2932), + [sym_ctrl_if] = STATE(3359), + [sym_block] = STATE(3220), + [sym__expression] = STATE(3220), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2249), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(307), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3220), [sym_comment] = STATE(293), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1340), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1346), + [aux_sym__val_number_decimal_token2] = ACTIONS(1348), + [aux_sym__val_number_decimal_token3] = ACTIONS(1350), + [aux_sym__val_number_decimal_token4] = ACTIONS(1350), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(294)] = { [sym_comment] = STATE(294), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1342), - [sym_duration_unit] = ACTIONS(1344), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(295)] = { - [sym_comment] = STATE(295), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1310), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(296)] = { - [sym_comment] = STATE(296), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70217,16 +70657,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1352), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1346), - [aux_sym__immediate_decimal_token5] = ACTIONS(1348), + [aux_sym__immediate_decimal_token5] = ACTIONS(1354), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(297)] = { - [sym_comment] = STATE(297), + [STATE(295)] = { + [sym_comment] = STATE(295), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70276,7 +70716,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -70311,13 +70750,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1326), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(296)] = { + [sym_comment] = STATE(296), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(1356), + [aux_sym__immediate_decimal_token5] = ACTIONS(1358), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(297)] = { + [sym_comment] = STATE(297), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(860), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_RPAREN] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(298)] = { [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(299)] = { + [sym_comment] = STATE(299), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(300)] = { + [sym_comment] = STATE(300), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -70365,6 +71164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), @@ -70405,368 +71205,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(299)] = { - [sym_comment] = STATE(299), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(300)] = { - [sym_comment] = STATE(300), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(301)] = { [sym_comment] = STATE(301), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(302)] = { - [sym_comment] = STATE(302), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(303)] = { - [sym_comment] = STATE(303), + [ts_builtin_sym_end] = ACTIONS(773), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -70814,7 +71255,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), @@ -70855,98 +71295,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(304)] = { - [sym_comment] = STATE(304), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), + [STATE(302)] = { + [sym_comment] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(862), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(860), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(305)] = { - [sym_comment] = STATE(305), + [STATE(303)] = { + [sym_comment] = STATE(303), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(304)] = { + [sym_comment] = STATE(304), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -70996,7 +71526,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -71031,282 +71560,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1360), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(305)] = { + [sym_comment] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(888), + [anon_sym_PLUS_PLUS] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(890), + [anon_sym_SLASH] = ACTIONS(890), + [anon_sym_mod] = ACTIONS(888), + [anon_sym_SLASH_SLASH] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(888), + [anon_sym_bit_DASHshl] = ACTIONS(888), + [anon_sym_bit_DASHshr] = ACTIONS(888), + [anon_sym_EQ_TILDE] = ACTIONS(888), + [anon_sym_BANG_TILDE] = ACTIONS(888), + [anon_sym_like] = ACTIONS(888), + [anon_sym_not_DASHlike] = ACTIONS(888), + [anon_sym_bit_DASHand] = ACTIONS(888), + [anon_sym_bit_DASHxor] = ACTIONS(888), + [anon_sym_bit_DASHor] = ACTIONS(888), + [anon_sym_and] = ACTIONS(888), + [anon_sym_xor] = ACTIONS(888), + [anon_sym_or] = ACTIONS(888), + [anon_sym_in2] = ACTIONS(888), + [anon_sym_not_DASHin] = ACTIONS(888), + [anon_sym_has] = ACTIONS(888), + [anon_sym_not_DASHhas] = ACTIONS(888), + [anon_sym_starts_DASHwith] = ACTIONS(888), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(888), + [anon_sym_ends_DASHwith] = ACTIONS(888), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(888), + [anon_sym_EQ_EQ] = ACTIONS(888), + [anon_sym_BANG_EQ] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_LT_EQ] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_GT_EQ] = ACTIONS(888), + [aux_sym_cmd_identifier_token6] = ACTIONS(892), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(1362), + [sym_duration_unit] = ACTIONS(1364), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(306)] = { [sym_comment] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(970), - [anon_sym_SLASH_SLASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_bit_DASHshl] = ACTIONS(970), - [anon_sym_bit_DASHshr] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [anon_sym_BANG_TILDE] = ACTIONS(970), - [anon_sym_like] = ACTIONS(970), - [anon_sym_not_DASHlike] = ACTIONS(970), - [anon_sym_bit_DASHand] = ACTIONS(970), - [anon_sym_bit_DASHxor] = ACTIONS(970), - [anon_sym_bit_DASHor] = ACTIONS(970), - [anon_sym_and] = ACTIONS(970), - [anon_sym_xor] = ACTIONS(970), - [anon_sym_or] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_not_DASHin] = ACTIONS(970), - [anon_sym_has] = ACTIONS(970), - [anon_sym_not_DASHhas] = ACTIONS(970), - [anon_sym_starts_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(970), - [anon_sym_ends_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [sym_filesize_unit] = ACTIONS(1350), - [sym_duration_unit] = ACTIONS(1352), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_SLASH_SLASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_bit_DASHshl] = ACTIONS(902), + [anon_sym_bit_DASHshr] = ACTIONS(902), + [anon_sym_EQ_TILDE] = ACTIONS(902), + [anon_sym_BANG_TILDE] = ACTIONS(902), + [anon_sym_like] = ACTIONS(902), + [anon_sym_not_DASHlike] = ACTIONS(902), + [anon_sym_bit_DASHand] = ACTIONS(902), + [anon_sym_bit_DASHxor] = ACTIONS(902), + [anon_sym_bit_DASHor] = ACTIONS(902), + [anon_sym_and] = ACTIONS(902), + [anon_sym_xor] = ACTIONS(902), + [anon_sym_or] = ACTIONS(902), + [anon_sym_in2] = ACTIONS(902), + [anon_sym_not_DASHin] = ACTIONS(902), + [anon_sym_has] = ACTIONS(902), + [anon_sym_not_DASHhas] = ACTIONS(902), + [anon_sym_starts_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), + [anon_sym_ends_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(902), + [aux_sym_cmd_identifier_token6] = ACTIONS(906), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(1366), + [sym_duration_unit] = ACTIONS(1368), [anon_sym_POUND] = ACTIONS(103), }, [STATE(307)] = { [sym_comment] = STATE(307), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1354), - [sym_duration_unit] = ACTIONS(1356), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_SLASH_SLASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_bit_DASHshl] = ACTIONS(902), + [anon_sym_bit_DASHshr] = ACTIONS(902), + [anon_sym_EQ_TILDE] = ACTIONS(902), + [anon_sym_BANG_TILDE] = ACTIONS(902), + [anon_sym_like] = ACTIONS(902), + [anon_sym_not_DASHlike] = ACTIONS(902), + [anon_sym_bit_DASHand] = ACTIONS(902), + [anon_sym_bit_DASHxor] = ACTIONS(902), + [anon_sym_bit_DASHor] = ACTIONS(902), + [anon_sym_and] = ACTIONS(902), + [anon_sym_xor] = ACTIONS(902), + [anon_sym_or] = ACTIONS(902), + [anon_sym_in2] = ACTIONS(902), + [anon_sym_not_DASHin] = ACTIONS(902), + [anon_sym_has] = ACTIONS(902), + [anon_sym_not_DASHhas] = ACTIONS(902), + [anon_sym_starts_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), + [anon_sym_ends_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(902), + [aux_sym_cmd_identifier_token6] = ACTIONS(906), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(1370), + [sym_duration_unit] = ACTIONS(1372), [anon_sym_POUND] = ACTIONS(103), }, [STATE(308)] = { [sym_comment] = STATE(308), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1360), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(309)] = { - [sym_comment] = STATE(309), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -71356,6 +71886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -71390,13 +71921,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1362), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(309)] = { + [sym_comment] = STATE(309), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(860), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(310)] = { [sym_comment] = STATE(310), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1354), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(311)] = { + [sym_comment] = STATE(311), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -71479,102 +72188,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1364), + [aux_sym__immediate_decimal_token5] = ACTIONS(1374), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(311)] = { - [sym_comment] = STATE(311), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1366), - [sym_duration_unit] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(312)] = { [sym_comment] = STATE(312), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(860), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(313)] = { + [sym_comment] = STATE(313), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -71662,186 +72371,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(313)] = { - [sym_comment] = STATE(313), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(314)] = { [sym_comment] = STATE(314), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, [STATE(315)] = { [sym_comment] = STATE(315), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_SLASH_SLASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_bit_DASHshl] = ACTIONS(902), + [anon_sym_bit_DASHshr] = ACTIONS(902), + [anon_sym_EQ_TILDE] = ACTIONS(902), + [anon_sym_BANG_TILDE] = ACTIONS(902), + [anon_sym_like] = ACTIONS(902), + [anon_sym_not_DASHlike] = ACTIONS(902), + [anon_sym_bit_DASHand] = ACTIONS(902), + [anon_sym_bit_DASHxor] = ACTIONS(902), + [anon_sym_bit_DASHor] = ACTIONS(902), + [anon_sym_and] = ACTIONS(902), + [anon_sym_xor] = ACTIONS(902), + [anon_sym_or] = ACTIONS(902), + [anon_sym_in2] = ACTIONS(902), + [anon_sym_not_DASHin] = ACTIONS(902), + [anon_sym_has] = ACTIONS(902), + [anon_sym_not_DASHhas] = ACTIONS(902), + [anon_sym_starts_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), + [anon_sym_ends_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(902), + [aux_sym_cmd_identifier_token6] = ACTIONS(906), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(1376), + [sym_duration_unit] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(316)] = { + [sym_comment] = STATE(316), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_SLASH_SLASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_bit_DASHshl] = ACTIONS(902), + [anon_sym_bit_DASHshr] = ACTIONS(902), + [anon_sym_EQ_TILDE] = ACTIONS(902), + [anon_sym_BANG_TILDE] = ACTIONS(902), + [anon_sym_like] = ACTIONS(902), + [anon_sym_not_DASHlike] = ACTIONS(902), + [anon_sym_bit_DASHand] = ACTIONS(902), + [anon_sym_bit_DASHxor] = ACTIONS(902), + [anon_sym_bit_DASHor] = ACTIONS(902), + [anon_sym_and] = ACTIONS(902), + [anon_sym_xor] = ACTIONS(902), + [anon_sym_or] = ACTIONS(902), + [anon_sym_in2] = ACTIONS(902), + [anon_sym_not_DASHin] = ACTIONS(902), + [anon_sym_has] = ACTIONS(902), + [anon_sym_not_DASHhas] = ACTIONS(902), + [anon_sym_starts_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), + [anon_sym_ends_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(902), + [aux_sym_cmd_identifier_token6] = ACTIONS(906), + [sym__newline] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(1380), + [sym_duration_unit] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(317)] = { + [sym_comment] = STATE(317), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -71924,13 +72721,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1360), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(316)] = { - [sym_comment] = STATE(316), + [STATE(318)] = { + [sym_comment] = STATE(318), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -72017,1703 +72813,1283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(317)] = { - [sym_comment] = STATE(317), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(318)] = { - [sym_comment] = STATE(318), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(319)] = { [sym_comment] = STATE(319), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1372), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(860), + [sym__newline] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), [anon_sym_POUND] = ACTIONS(103), }, [STATE(320)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4980), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(4207), + [sym__match_pattern_expression] = STATE(4432), + [sym__match_pattern_value] = STATE(4736), + [sym__match_pattern_list_body] = STATE(4697), + [sym__match_pattern_list] = STATE(4737), + [sym__match_pattern_rest] = STATE(5356), + [sym__match_pattern_record] = STATE(4742), + [sym_expr_parenthesized] = STATE(3970), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4670), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4671), + [sym_val_bool] = STATE(4060), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3972), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4671), + [sym__val_number_decimal] = STATE(3544), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4671), + [sym_val_filesize] = STATE(4671), + [sym_val_binary] = STATE(4671), + [sym_val_string] = STATE(4671), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5094), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3882), + [sym_val_table] = STATE(4671), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(3974), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(320), - [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4025), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_RBRACK] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1394), + [aux_sym__types_body_repeat1] = STATE(370), + [aux_sym_parameter_repeat2] = STATE(4067), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1433), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_RBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1404), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(321)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5080), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(4207), + [sym__match_pattern_expression] = STATE(4432), + [sym__match_pattern_value] = STATE(4736), + [sym__match_pattern_list_body] = STATE(4697), + [sym__match_pattern_list] = STATE(4737), + [sym__match_pattern_rest] = STATE(5356), + [sym__match_pattern_record] = STATE(4742), + [sym_expr_parenthesized] = STATE(3970), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4670), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4671), + [sym_val_bool] = STATE(4060), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3972), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4671), + [sym__val_number_decimal] = STATE(3544), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4671), + [sym_val_filesize] = STATE(4671), + [sym_val_binary] = STATE(4671), + [sym_val_string] = STATE(4671), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5191), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3882), + [sym_val_table] = STATE(4671), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(3974), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(321), - [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4025), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_RBRACK] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1394), + [aux_sym__types_body_repeat1] = STATE(370), + [aux_sym_parameter_repeat2] = STATE(4067), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1433), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1404), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(322)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5047), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(4207), + [sym__match_pattern_expression] = STATE(4432), + [sym__match_pattern_value] = STATE(4736), + [sym__match_pattern_list_body] = STATE(4697), + [sym__match_pattern_list] = STATE(4737), + [sym__match_pattern_rest] = STATE(5356), + [sym__match_pattern_record] = STATE(4742), + [sym_expr_parenthesized] = STATE(3970), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4670), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4671), + [sym_val_bool] = STATE(4060), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3972), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4671), + [sym__val_number_decimal] = STATE(3544), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4671), + [sym_val_filesize] = STATE(4671), + [sym_val_binary] = STATE(4671), + [sym_val_string] = STATE(4671), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5234), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3882), + [sym_val_table] = STATE(4671), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(3974), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(322), - [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4025), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_RBRACK] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1394), + [aux_sym__types_body_repeat1] = STATE(370), + [aux_sym_parameter_repeat2] = STATE(4067), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1433), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_RBRACK] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1404), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(323)] = { [sym_comment] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_like] = ACTIONS(1024), + [anon_sym_not_DASHlike] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_in2] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_has] = ACTIONS(1024), + [anon_sym_not_DASHhas] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1024), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(103), }, [STATE(324)] = { [sym_comment] = STATE(324), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(1030), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_like] = ACTIONS(1024), + [anon_sym_not_DASHlike] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_in2] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_has] = ACTIONS(1024), + [anon_sym_not_DASHhas] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1024), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(325)] = { [sym_comment] = STATE(325), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(326)] = { [sym_comment] = STATE(326), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(327)] = { [sym_comment] = STATE(327), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(103), }, [STATE(328)] = { [sym_comment] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(103), }, [STATE(329)] = { [sym_comment] = STATE(329), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(103), }, [STATE(330)] = { [sym_comment] = STATE(330), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(331)] = { [sym_comment] = STATE(331), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(103), }, [STATE(332)] = { [sym_comment] = STATE(332), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(333)] = { - [sym_cell_path] = STATE(368), - [sym_path] = STATE(339), + [sym_cell_path] = STATE(372), + [sym_path] = STATE(360), [sym_comment] = STATE(333), - [aux_sym__where_predicate_lhs_repeat1] = STATE(363), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1432), - [anon_sym_DASH_EQ] = ACTIONS(1432), - [anon_sym_STAR_EQ] = ACTIONS(1432), - [anon_sym_SLASH_EQ] = ACTIONS(1432), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1432), - [anon_sym_in] = ACTIONS(1432), - [sym__newline] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_err_GT_PIPE] = ACTIONS(1432), - [anon_sym_out_GT_PIPE] = ACTIONS(1432), - [anon_sym_e_GT_PIPE] = ACTIONS(1432), - [anon_sym_o_GT_PIPE] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1432), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1432), - [anon_sym_xor2] = ACTIONS(1432), - [anon_sym_or2] = ACTIONS(1432), - [anon_sym_not_DASHin2] = ACTIONS(1432), - [anon_sym_has2] = ACTIONS(1432), - [anon_sym_not_DASHhas2] = ACTIONS(1432), - [anon_sym_starts_DASHwith2] = ACTIONS(1432), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1432), - [anon_sym_ends_DASHwith2] = ACTIONS(1432), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1432), - [anon_sym_EQ_EQ2] = ACTIONS(1432), - [anon_sym_BANG_EQ2] = ACTIONS(1432), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1432), - [anon_sym_GT_EQ2] = ACTIONS(1432), - [anon_sym_EQ_TILDE2] = ACTIONS(1432), - [anon_sym_BANG_TILDE2] = ACTIONS(1432), - [anon_sym_like2] = ACTIONS(1432), - [anon_sym_not_DASHlike2] = ACTIONS(1432), - [anon_sym_STAR_STAR2] = ACTIONS(1432), - [anon_sym_PLUS_PLUS2] = ACTIONS(1432), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1432), - [anon_sym_SLASH_SLASH2] = ACTIONS(1432), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1432), - [anon_sym_bit_DASHshr2] = ACTIONS(1432), - [anon_sym_bit_DASHand2] = ACTIONS(1432), - [anon_sym_bit_DASHxor2] = ACTIONS(1432), - [anon_sym_bit_DASHor2] = ACTIONS(1432), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [sym__entry_separator] = ACTIONS(1434), - [anon_sym_COLON2] = ACTIONS(1432), - [anon_sym_DOT2] = ACTIONS(1436), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1432), - [anon_sym_out_GT_GT] = ACTIONS(1432), - [anon_sym_e_GT_GT] = ACTIONS(1432), - [anon_sym_o_GT_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1432), + [aux_sym__where_predicate_lhs_repeat1] = STATE(364), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1442), + [anon_sym_in] = ACTIONS(1442), + [sym__newline] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_err_GT_PIPE] = ACTIONS(1442), + [anon_sym_out_GT_PIPE] = ACTIONS(1442), + [anon_sym_e_GT_PIPE] = ACTIONS(1442), + [anon_sym_o_GT_PIPE] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1442), + [anon_sym_GT2] = ACTIONS(1442), + [anon_sym_DASH2] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_STAR2] = ACTIONS(1442), + [anon_sym_and2] = ACTIONS(1442), + [anon_sym_xor2] = ACTIONS(1442), + [anon_sym_or2] = ACTIONS(1442), + [anon_sym_not_DASHin2] = ACTIONS(1442), + [anon_sym_has2] = ACTIONS(1442), + [anon_sym_not_DASHhas2] = ACTIONS(1442), + [anon_sym_starts_DASHwith2] = ACTIONS(1442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1442), + [anon_sym_ends_DASHwith2] = ACTIONS(1442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1442), + [anon_sym_EQ_EQ2] = ACTIONS(1442), + [anon_sym_BANG_EQ2] = ACTIONS(1442), + [anon_sym_LT2] = ACTIONS(1442), + [anon_sym_LT_EQ2] = ACTIONS(1442), + [anon_sym_GT_EQ2] = ACTIONS(1442), + [anon_sym_EQ_TILDE2] = ACTIONS(1442), + [anon_sym_BANG_TILDE2] = ACTIONS(1442), + [anon_sym_like2] = ACTIONS(1442), + [anon_sym_not_DASHlike2] = ACTIONS(1442), + [anon_sym_STAR_STAR2] = ACTIONS(1442), + [anon_sym_PLUS_PLUS2] = ACTIONS(1442), + [anon_sym_SLASH2] = ACTIONS(1442), + [anon_sym_mod2] = ACTIONS(1442), + [anon_sym_SLASH_SLASH2] = ACTIONS(1442), + [anon_sym_PLUS2] = ACTIONS(1442), + [anon_sym_bit_DASHshl2] = ACTIONS(1442), + [anon_sym_bit_DASHshr2] = ACTIONS(1442), + [anon_sym_bit_DASHand2] = ACTIONS(1442), + [anon_sym_bit_DASHxor2] = ACTIONS(1442), + [anon_sym_bit_DASHor2] = ACTIONS(1442), + [anon_sym_DOT_DOT2] = ACTIONS(1442), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), + [sym__entry_separator] = ACTIONS(1444), + [anon_sym_COLON2] = ACTIONS(1442), + [anon_sym_DOT2] = ACTIONS(1446), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [anon_sym_o_GT] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT] = ACTIONS(1442), + [anon_sym_err_GT_GT] = ACTIONS(1442), + [anon_sym_out_GT_GT] = ACTIONS(1442), + [anon_sym_e_GT_GT] = ACTIONS(1442), + [anon_sym_o_GT_GT] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1442), [anon_sym_POUND] = ACTIONS(103), }, [STATE(334)] = { [sym_comment] = STATE(334), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1438), - [anon_sym_DASH_EQ] = ACTIONS(1438), - [anon_sym_STAR_EQ] = ACTIONS(1438), - [anon_sym_SLASH_EQ] = ACTIONS(1438), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1438), - [anon_sym_in] = ACTIONS(1438), - [sym__newline] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_err_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_GT_PIPE] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(1438), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1438), - [anon_sym_xor2] = ACTIONS(1438), - [anon_sym_or2] = ACTIONS(1438), - [anon_sym_not_DASHin2] = ACTIONS(1438), - [anon_sym_has2] = ACTIONS(1438), - [anon_sym_not_DASHhas2] = ACTIONS(1438), - [anon_sym_starts_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1438), - [anon_sym_ends_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1438), - [anon_sym_EQ_EQ2] = ACTIONS(1438), - [anon_sym_BANG_EQ2] = ACTIONS(1438), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1438), - [anon_sym_GT_EQ2] = ACTIONS(1438), - [anon_sym_EQ_TILDE2] = ACTIONS(1438), - [anon_sym_BANG_TILDE2] = ACTIONS(1438), - [anon_sym_like2] = ACTIONS(1438), - [anon_sym_not_DASHlike2] = ACTIONS(1438), - [anon_sym_STAR_STAR2] = ACTIONS(1438), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1438), - [anon_sym_SLASH_SLASH2] = ACTIONS(1438), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1438), - [anon_sym_bit_DASHshr2] = ACTIONS(1438), - [anon_sym_bit_DASHand2] = ACTIONS(1438), - [anon_sym_bit_DASHxor2] = ACTIONS(1438), - [anon_sym_bit_DASHor2] = ACTIONS(1438), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [sym__entry_separator] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1438), - [anon_sym_QMARK2] = ACTIONS(1442), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1438), - [anon_sym_out_GT_GT] = ACTIONS(1438), - [anon_sym_e_GT_GT] = ACTIONS(1438), - [anon_sym_o_GT_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(335)] = { - [sym_cell_path] = STATE(405), - [sym_path] = STATE(385), - [sym_comment] = STATE(335), - [aux_sym__where_predicate_lhs_repeat1] = STATE(338), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1434), - [anon_sym_DASH_EQ] = ACTIONS(1434), - [anon_sym_STAR_EQ] = ACTIONS(1434), - [anon_sym_SLASH_EQ] = ACTIONS(1434), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1432), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_COLON2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1444), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(336)] = { - [sym__path_suffix] = STATE(351), - [sym_comment] = STATE(336), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1446), - [anon_sym_DASH_EQ] = ACTIONS(1446), - [anon_sym_STAR_EQ] = ACTIONS(1446), - [anon_sym_SLASH_EQ] = ACTIONS(1446), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1446), - [anon_sym_in] = ACTIONS(1446), - [sym__newline] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_err_GT_PIPE] = ACTIONS(1446), - [anon_sym_out_GT_PIPE] = ACTIONS(1446), - [anon_sym_e_GT_PIPE] = ACTIONS(1446), - [anon_sym_o_GT_PIPE] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1446), - [anon_sym_xor2] = ACTIONS(1446), - [anon_sym_or2] = ACTIONS(1446), - [anon_sym_not_DASHin2] = ACTIONS(1446), - [anon_sym_has2] = ACTIONS(1446), - [anon_sym_not_DASHhas2] = ACTIONS(1446), - [anon_sym_starts_DASHwith2] = ACTIONS(1446), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1446), - [anon_sym_ends_DASHwith2] = ACTIONS(1446), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1446), - [anon_sym_EQ_EQ2] = ACTIONS(1446), - [anon_sym_BANG_EQ2] = ACTIONS(1446), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1446), - [anon_sym_GT_EQ2] = ACTIONS(1446), - [anon_sym_EQ_TILDE2] = ACTIONS(1446), - [anon_sym_BANG_TILDE2] = ACTIONS(1446), - [anon_sym_like2] = ACTIONS(1446), - [anon_sym_not_DASHlike2] = ACTIONS(1446), - [anon_sym_STAR_STAR2] = ACTIONS(1446), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1446), - [anon_sym_SLASH_SLASH2] = ACTIONS(1446), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1446), - [anon_sym_bit_DASHshr2] = ACTIONS(1446), - [anon_sym_bit_DASHand2] = ACTIONS(1446), - [anon_sym_bit_DASHxor2] = ACTIONS(1446), - [anon_sym_bit_DASHor2] = ACTIONS(1446), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [sym__entry_separator] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1446), - [anon_sym_QMARK2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1446), - [anon_sym_out_GT_GT] = ACTIONS(1446), - [anon_sym_e_GT_GT] = ACTIONS(1446), - [anon_sym_o_GT_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(337)] = { - [sym__path_suffix] = STATE(388), - [sym_comment] = STATE(337), - [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1448), [anon_sym_PLUS_EQ] = ACTIONS(1448), [anon_sym_DASH_EQ] = ACTIONS(1448), [anon_sym_STAR_EQ] = ACTIONS(1448), @@ -73731,11 +74107,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), + [anon_sym_RBRACK] = ACTIONS(1448), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1448), [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_STAR2] = ACTIONS(1448), [anon_sym_and2] = ACTIONS(1448), [anon_sym_xor2] = ACTIONS(1448), [anon_sym_or2] = ACTIONS(1448), @@ -73748,7 +74125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), [anon_sym_EQ_EQ2] = ACTIONS(1448), [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), + [anon_sym_LT2] = ACTIONS(1448), [anon_sym_LT_EQ2] = ACTIONS(1448), [anon_sym_GT_EQ2] = ACTIONS(1448), [anon_sym_EQ_TILDE2] = ACTIONS(1448), @@ -73756,31 +74133,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1448), [anon_sym_not_DASHlike2] = ACTIONS(1448), [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), + [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_SLASH2] = ACTIONS(1448), [anon_sym_mod2] = ACTIONS(1448), [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), + [anon_sym_PLUS2] = ACTIONS(1448), [anon_sym_bit_DASHshl2] = ACTIONS(1448), [anon_sym_bit_DASHshr2] = ACTIONS(1448), [anon_sym_bit_DASHand2] = ACTIONS(1448), [anon_sym_bit_DASHxor2] = ACTIONS(1448), [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [sym__entry_separator] = ACTIONS(1450), [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), + [anon_sym_QMARK2] = ACTIONS(1452), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), [anon_sym_err_GT_GT] = ACTIONS(1448), [anon_sym_out_GT_GT] = ACTIONS(1448), [anon_sym_e_GT_GT] = ACTIONS(1448), @@ -73789,1527 +74166,1770 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(338)] = { - [sym_path] = STATE(385), - [sym_comment] = STATE(338), - [aux_sym__where_predicate_lhs_repeat1] = STATE(353), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_PLUS_EQ] = ACTIONS(1460), - [anon_sym_DASH_EQ] = ACTIONS(1460), - [anon_sym_STAR_EQ] = ACTIONS(1460), - [anon_sym_SLASH_EQ] = ACTIONS(1460), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1458), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_COLON2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1444), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(339)] = { - [sym_comment] = STATE(339), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1462), - [anon_sym_DASH_EQ] = ACTIONS(1462), - [anon_sym_STAR_EQ] = ACTIONS(1462), - [anon_sym_SLASH_EQ] = ACTIONS(1462), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1462), - [anon_sym_in] = ACTIONS(1462), - [sym__newline] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_err_GT_PIPE] = ACTIONS(1462), - [anon_sym_out_GT_PIPE] = ACTIONS(1462), - [anon_sym_e_GT_PIPE] = ACTIONS(1462), - [anon_sym_o_GT_PIPE] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1462), - [anon_sym_RBRACK] = ACTIONS(1462), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1462), - [anon_sym_xor2] = ACTIONS(1462), - [anon_sym_or2] = ACTIONS(1462), - [anon_sym_not_DASHin2] = ACTIONS(1462), - [anon_sym_has2] = ACTIONS(1462), - [anon_sym_not_DASHhas2] = ACTIONS(1462), - [anon_sym_starts_DASHwith2] = ACTIONS(1462), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1462), - [anon_sym_ends_DASHwith2] = ACTIONS(1462), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1462), - [anon_sym_EQ_EQ2] = ACTIONS(1462), - [anon_sym_BANG_EQ2] = ACTIONS(1462), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1462), - [anon_sym_GT_EQ2] = ACTIONS(1462), - [anon_sym_EQ_TILDE2] = ACTIONS(1462), - [anon_sym_BANG_TILDE2] = ACTIONS(1462), - [anon_sym_like2] = ACTIONS(1462), - [anon_sym_not_DASHlike2] = ACTIONS(1462), - [anon_sym_STAR_STAR2] = ACTIONS(1462), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1462), - [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1462), - [anon_sym_bit_DASHshr2] = ACTIONS(1462), - [anon_sym_bit_DASHand2] = ACTIONS(1462), - [anon_sym_bit_DASHxor2] = ACTIONS(1462), - [anon_sym_bit_DASHor2] = ACTIONS(1462), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [sym__entry_separator] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1462), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1462), - [anon_sym_out_GT_GT] = ACTIONS(1462), - [anon_sym_e_GT_GT] = ACTIONS(1462), - [anon_sym_o_GT_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(340)] = { - [sym_comment] = STATE(340), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1466), - [anon_sym_DASH_EQ] = ACTIONS(1466), - [anon_sym_STAR_EQ] = ACTIONS(1466), - [anon_sym_SLASH_EQ] = ACTIONS(1466), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1466), - [anon_sym_in] = ACTIONS(1466), - [sym__newline] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_err_GT_PIPE] = ACTIONS(1466), - [anon_sym_out_GT_PIPE] = ACTIONS(1466), - [anon_sym_e_GT_PIPE] = ACTIONS(1466), - [anon_sym_o_GT_PIPE] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1466), - [anon_sym_xor2] = ACTIONS(1466), - [anon_sym_or2] = ACTIONS(1466), - [anon_sym_not_DASHin2] = ACTIONS(1466), - [anon_sym_has2] = ACTIONS(1466), - [anon_sym_not_DASHhas2] = ACTIONS(1466), - [anon_sym_starts_DASHwith2] = ACTIONS(1466), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), - [anon_sym_ends_DASHwith2] = ACTIONS(1466), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), - [anon_sym_EQ_EQ2] = ACTIONS(1466), - [anon_sym_BANG_EQ2] = ACTIONS(1466), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1466), - [anon_sym_GT_EQ2] = ACTIONS(1466), - [anon_sym_EQ_TILDE2] = ACTIONS(1466), - [anon_sym_BANG_TILDE2] = ACTIONS(1466), - [anon_sym_like2] = ACTIONS(1466), - [anon_sym_not_DASHlike2] = ACTIONS(1466), - [anon_sym_STAR_STAR2] = ACTIONS(1466), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1466), - [anon_sym_SLASH_SLASH2] = ACTIONS(1466), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1466), - [anon_sym_bit_DASHshr2] = ACTIONS(1466), - [anon_sym_bit_DASHand2] = ACTIONS(1466), - [anon_sym_bit_DASHxor2] = ACTIONS(1466), - [anon_sym_bit_DASHor2] = ACTIONS(1466), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [sym__entry_separator] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1466), - [anon_sym_QMARK2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1466), - [anon_sym_out_GT_GT] = ACTIONS(1466), - [anon_sym_e_GT_GT] = ACTIONS(1466), - [anon_sym_o_GT_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(341)] = { - [sym_comment] = STATE(341), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1470), - [anon_sym_DASH_EQ] = ACTIONS(1470), - [anon_sym_STAR_EQ] = ACTIONS(1470), - [anon_sym_SLASH_EQ] = ACTIONS(1470), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [sym__newline] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_err_GT_PIPE] = ACTIONS(1470), - [anon_sym_out_GT_PIPE] = ACTIONS(1470), - [anon_sym_e_GT_PIPE] = ACTIONS(1470), - [anon_sym_o_GT_PIPE] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1470), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1470), - [anon_sym_xor2] = ACTIONS(1470), - [anon_sym_or2] = ACTIONS(1470), - [anon_sym_not_DASHin2] = ACTIONS(1470), - [anon_sym_has2] = ACTIONS(1470), - [anon_sym_not_DASHhas2] = ACTIONS(1470), - [anon_sym_starts_DASHwith2] = ACTIONS(1470), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1470), - [anon_sym_ends_DASHwith2] = ACTIONS(1470), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1470), - [anon_sym_EQ_EQ2] = ACTIONS(1470), - [anon_sym_BANG_EQ2] = ACTIONS(1470), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1470), - [anon_sym_GT_EQ2] = ACTIONS(1470), - [anon_sym_EQ_TILDE2] = ACTIONS(1470), - [anon_sym_BANG_TILDE2] = ACTIONS(1470), - [anon_sym_like2] = ACTIONS(1470), - [anon_sym_not_DASHlike2] = ACTIONS(1470), - [anon_sym_STAR_STAR2] = ACTIONS(1470), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1470), - [anon_sym_SLASH_SLASH2] = ACTIONS(1470), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1470), - [anon_sym_bit_DASHshr2] = ACTIONS(1470), - [anon_sym_bit_DASHand2] = ACTIONS(1470), - [anon_sym_bit_DASHxor2] = ACTIONS(1470), - [anon_sym_bit_DASHor2] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [sym__entry_separator] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1470), - [anon_sym_QMARK2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1470), - [anon_sym_out_GT_GT] = ACTIONS(1470), - [anon_sym_e_GT_GT] = ACTIONS(1470), - [anon_sym_o_GT_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1470), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(342)] = { - [sym_comment] = STATE(342), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1474), - [anon_sym_DASH_EQ] = ACTIONS(1474), - [anon_sym_STAR_EQ] = ACTIONS(1474), - [anon_sym_SLASH_EQ] = ACTIONS(1474), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1474), - [anon_sym_in] = ACTIONS(1474), - [sym__newline] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_err_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_GT_PIPE] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1474), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1474), - [anon_sym_xor2] = ACTIONS(1474), - [anon_sym_or2] = ACTIONS(1474), - [anon_sym_not_DASHin2] = ACTIONS(1474), - [anon_sym_has2] = ACTIONS(1474), - [anon_sym_not_DASHhas2] = ACTIONS(1474), - [anon_sym_starts_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1474), - [anon_sym_ends_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1474), - [anon_sym_EQ_EQ2] = ACTIONS(1474), - [anon_sym_BANG_EQ2] = ACTIONS(1474), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1474), - [anon_sym_GT_EQ2] = ACTIONS(1474), - [anon_sym_EQ_TILDE2] = ACTIONS(1474), - [anon_sym_BANG_TILDE2] = ACTIONS(1474), - [anon_sym_like2] = ACTIONS(1474), - [anon_sym_not_DASHlike2] = ACTIONS(1474), - [anon_sym_STAR_STAR2] = ACTIONS(1474), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1474), - [anon_sym_SLASH_SLASH2] = ACTIONS(1474), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1474), - [anon_sym_bit_DASHshr2] = ACTIONS(1474), - [anon_sym_bit_DASHand2] = ACTIONS(1474), - [anon_sym_bit_DASHxor2] = ACTIONS(1474), - [anon_sym_bit_DASHor2] = ACTIONS(1474), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [sym__entry_separator] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1474), - [anon_sym_QMARK2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1474), - [anon_sym_out_GT_GT] = ACTIONS(1474), - [anon_sym_e_GT_GT] = ACTIONS(1474), - [anon_sym_o_GT_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(343)] = { - [sym_comment] = STATE(343), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(344)] = { - [sym_comment] = STATE(344), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(345)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5177), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3656), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(345), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(346)] = { - [sym_comment] = STATE(346), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(347)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5080), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(347), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(348)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4886), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3646), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(348), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(349)] = { - [sym_comment] = STATE(349), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1514), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_COLON2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [STATE(335)] = { + [sym_cell_path] = STATE(406), + [sym_path] = STATE(395), + [sym_comment] = STATE(335), + [aux_sym__where_predicate_lhs_repeat1] = STATE(342), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1444), + [anon_sym_in] = ACTIONS(1444), + [sym__newline] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_err_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_GT_PIPE] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_GT2] = ACTIONS(1442), + [anon_sym_DASH2] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_STAR2] = ACTIONS(1442), + [anon_sym_and2] = ACTIONS(1444), + [anon_sym_xor2] = ACTIONS(1444), + [anon_sym_or2] = ACTIONS(1444), + [anon_sym_not_DASHin2] = ACTIONS(1444), + [anon_sym_has2] = ACTIONS(1444), + [anon_sym_not_DASHhas2] = ACTIONS(1444), + [anon_sym_starts_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1444), + [anon_sym_ends_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1444), + [anon_sym_EQ_EQ2] = ACTIONS(1444), + [anon_sym_BANG_EQ2] = ACTIONS(1444), + [anon_sym_LT2] = ACTIONS(1442), + [anon_sym_LT_EQ2] = ACTIONS(1444), + [anon_sym_GT_EQ2] = ACTIONS(1444), + [anon_sym_EQ_TILDE2] = ACTIONS(1444), + [anon_sym_BANG_TILDE2] = ACTIONS(1444), + [anon_sym_like2] = ACTIONS(1444), + [anon_sym_not_DASHlike2] = ACTIONS(1444), + [anon_sym_STAR_STAR2] = ACTIONS(1444), + [anon_sym_PLUS_PLUS2] = ACTIONS(1442), + [anon_sym_SLASH2] = ACTIONS(1442), + [anon_sym_mod2] = ACTIONS(1444), + [anon_sym_SLASH_SLASH2] = ACTIONS(1444), + [anon_sym_PLUS2] = ACTIONS(1442), + [anon_sym_bit_DASHshl2] = ACTIONS(1444), + [anon_sym_bit_DASHshr2] = ACTIONS(1444), + [anon_sym_bit_DASHand2] = ACTIONS(1444), + [anon_sym_bit_DASHxor2] = ACTIONS(1444), + [anon_sym_bit_DASHor2] = ACTIONS(1444), + [anon_sym_DOT_DOT2] = ACTIONS(1442), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), + [anon_sym_COLON2] = ACTIONS(1444), + [anon_sym_DOT2] = ACTIONS(1454), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [anon_sym_o_GT] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT] = ACTIONS(1442), + [anon_sym_err_GT_GT] = ACTIONS(1444), + [anon_sym_out_GT_GT] = ACTIONS(1444), + [anon_sym_e_GT_GT] = ACTIONS(1444), + [anon_sym_o_GT_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(350)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4809), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3709), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(350), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(351)] = { - [sym_comment] = STATE(351), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1520), - [anon_sym_in] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RBRACK] = ACTIONS(1520), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1520), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1520), - [anon_sym_xor2] = ACTIONS(1520), - [anon_sym_or2] = ACTIONS(1520), - [anon_sym_not_DASHin2] = ACTIONS(1520), - [anon_sym_has2] = ACTIONS(1520), - [anon_sym_not_DASHhas2] = ACTIONS(1520), - [anon_sym_starts_DASHwith2] = ACTIONS(1520), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1520), - [anon_sym_ends_DASHwith2] = ACTIONS(1520), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1520), - [anon_sym_EQ_EQ2] = ACTIONS(1520), - [anon_sym_BANG_EQ2] = ACTIONS(1520), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1520), - [anon_sym_GT_EQ2] = ACTIONS(1520), - [anon_sym_EQ_TILDE2] = ACTIONS(1520), - [anon_sym_BANG_TILDE2] = ACTIONS(1520), - [anon_sym_like2] = ACTIONS(1520), - [anon_sym_not_DASHlike2] = ACTIONS(1520), - [anon_sym_STAR_STAR2] = ACTIONS(1520), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1520), - [anon_sym_SLASH_SLASH2] = ACTIONS(1520), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1520), - [anon_sym_bit_DASHshr2] = ACTIONS(1520), - [anon_sym_bit_DASHand2] = ACTIONS(1520), - [anon_sym_bit_DASHxor2] = ACTIONS(1520), - [anon_sym_bit_DASHor2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [sym__entry_separator] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(352)] = { - [sym_comment] = STATE(352), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1514), - [anon_sym_DASH_EQ] = ACTIONS(1514), - [anon_sym_STAR_EQ] = ACTIONS(1514), - [anon_sym_SLASH_EQ] = ACTIONS(1514), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1514), - [anon_sym_in] = ACTIONS(1514), - [sym__newline] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_err_GT_PIPE] = ACTIONS(1514), - [anon_sym_out_GT_PIPE] = ACTIONS(1514), - [anon_sym_e_GT_PIPE] = ACTIONS(1514), - [anon_sym_o_GT_PIPE] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1514), - [anon_sym_xor2] = ACTIONS(1514), - [anon_sym_or2] = ACTIONS(1514), - [anon_sym_not_DASHin2] = ACTIONS(1514), - [anon_sym_has2] = ACTIONS(1514), - [anon_sym_not_DASHhas2] = ACTIONS(1514), - [anon_sym_starts_DASHwith2] = ACTIONS(1514), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1514), - [anon_sym_ends_DASHwith2] = ACTIONS(1514), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1514), - [anon_sym_EQ_EQ2] = ACTIONS(1514), - [anon_sym_BANG_EQ2] = ACTIONS(1514), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1514), - [anon_sym_GT_EQ2] = ACTIONS(1514), - [anon_sym_EQ_TILDE2] = ACTIONS(1514), - [anon_sym_BANG_TILDE2] = ACTIONS(1514), - [anon_sym_like2] = ACTIONS(1514), - [anon_sym_not_DASHlike2] = ACTIONS(1514), - [anon_sym_STAR_STAR2] = ACTIONS(1514), - [anon_sym_PLUS_PLUS2] = ACTIONS(1514), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1514), - [anon_sym_SLASH_SLASH2] = ACTIONS(1514), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1514), - [anon_sym_bit_DASHshr2] = ACTIONS(1514), - [anon_sym_bit_DASHand2] = ACTIONS(1514), - [anon_sym_bit_DASHxor2] = ACTIONS(1514), - [anon_sym_bit_DASHor2] = ACTIONS(1514), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [sym__entry_separator] = ACTIONS(1516), - [anon_sym_COLON2] = ACTIONS(1514), - [anon_sym_QMARK2] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1514), - [anon_sym_out_GT_GT] = ACTIONS(1514), - [anon_sym_e_GT_GT] = ACTIONS(1514), - [anon_sym_o_GT_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(103), + [STATE(336)] = { + [sym__path_suffix] = STATE(401), + [sym_comment] = STATE(336), + [anon_sym_EQ] = ACTIONS(1456), + [anon_sym_PLUS_EQ] = ACTIONS(1458), + [anon_sym_DASH_EQ] = ACTIONS(1458), + [anon_sym_STAR_EQ] = ACTIONS(1458), + [anon_sym_SLASH_EQ] = ACTIONS(1458), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1458), + [anon_sym_in] = ACTIONS(1458), + [sym__newline] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_err_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_GT_PIPE] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_GT2] = ACTIONS(1456), + [anon_sym_DASH2] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_STAR2] = ACTIONS(1456), + [anon_sym_and2] = ACTIONS(1458), + [anon_sym_xor2] = ACTIONS(1458), + [anon_sym_or2] = ACTIONS(1458), + [anon_sym_not_DASHin2] = ACTIONS(1458), + [anon_sym_has2] = ACTIONS(1458), + [anon_sym_not_DASHhas2] = ACTIONS(1458), + [anon_sym_starts_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1458), + [anon_sym_ends_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), + [anon_sym_EQ_EQ2] = ACTIONS(1458), + [anon_sym_BANG_EQ2] = ACTIONS(1458), + [anon_sym_LT2] = ACTIONS(1456), + [anon_sym_LT_EQ2] = ACTIONS(1458), + [anon_sym_GT_EQ2] = ACTIONS(1458), + [anon_sym_EQ_TILDE2] = ACTIONS(1458), + [anon_sym_BANG_TILDE2] = ACTIONS(1458), + [anon_sym_like2] = ACTIONS(1458), + [anon_sym_not_DASHlike2] = ACTIONS(1458), + [anon_sym_STAR_STAR2] = ACTIONS(1458), + [anon_sym_PLUS_PLUS2] = ACTIONS(1456), + [anon_sym_SLASH2] = ACTIONS(1456), + [anon_sym_mod2] = ACTIONS(1458), + [anon_sym_SLASH_SLASH2] = ACTIONS(1458), + [anon_sym_PLUS2] = ACTIONS(1456), + [anon_sym_bit_DASHshl2] = ACTIONS(1458), + [anon_sym_bit_DASHshr2] = ACTIONS(1458), + [anon_sym_bit_DASHand2] = ACTIONS(1458), + [anon_sym_bit_DASHxor2] = ACTIONS(1458), + [anon_sym_bit_DASHor2] = ACTIONS(1458), + [anon_sym_DOT_DOT2] = ACTIONS(1456), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), + [anon_sym_COLON2] = ACTIONS(1458), + [anon_sym_QMARK2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_DOT2] = ACTIONS(1456), + [anon_sym_err_GT] = ACTIONS(1456), + [anon_sym_out_GT] = ACTIONS(1456), + [anon_sym_e_GT] = ACTIONS(1456), + [anon_sym_o_GT] = ACTIONS(1456), + [anon_sym_err_PLUSout_GT] = ACTIONS(1456), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1456), + [anon_sym_o_PLUSe_GT] = ACTIONS(1456), + [anon_sym_e_PLUSo_GT] = ACTIONS(1456), + [anon_sym_err_GT_GT] = ACTIONS(1458), + [anon_sym_out_GT_GT] = ACTIONS(1458), + [anon_sym_e_GT_GT] = ACTIONS(1458), + [anon_sym_o_GT_GT] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(337)] = { + [sym__path_suffix] = STATE(367), + [sym_comment] = STATE(337), + [anon_sym_EQ] = ACTIONS(1456), + [anon_sym_PLUS_EQ] = ACTIONS(1456), + [anon_sym_DASH_EQ] = ACTIONS(1456), + [anon_sym_STAR_EQ] = ACTIONS(1456), + [anon_sym_SLASH_EQ] = ACTIONS(1456), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1456), + [anon_sym_in] = ACTIONS(1456), + [sym__newline] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_err_GT_PIPE] = ACTIONS(1456), + [anon_sym_out_GT_PIPE] = ACTIONS(1456), + [anon_sym_e_GT_PIPE] = ACTIONS(1456), + [anon_sym_o_GT_PIPE] = ACTIONS(1456), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1456), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1456), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1456), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1456), + [anon_sym_GT2] = ACTIONS(1456), + [anon_sym_DASH2] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_STAR2] = ACTIONS(1456), + [anon_sym_and2] = ACTIONS(1456), + [anon_sym_xor2] = ACTIONS(1456), + [anon_sym_or2] = ACTIONS(1456), + [anon_sym_not_DASHin2] = ACTIONS(1456), + [anon_sym_has2] = ACTIONS(1456), + [anon_sym_not_DASHhas2] = ACTIONS(1456), + [anon_sym_starts_DASHwith2] = ACTIONS(1456), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1456), + [anon_sym_ends_DASHwith2] = ACTIONS(1456), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1456), + [anon_sym_EQ_EQ2] = ACTIONS(1456), + [anon_sym_BANG_EQ2] = ACTIONS(1456), + [anon_sym_LT2] = ACTIONS(1456), + [anon_sym_LT_EQ2] = ACTIONS(1456), + [anon_sym_GT_EQ2] = ACTIONS(1456), + [anon_sym_EQ_TILDE2] = ACTIONS(1456), + [anon_sym_BANG_TILDE2] = ACTIONS(1456), + [anon_sym_like2] = ACTIONS(1456), + [anon_sym_not_DASHlike2] = ACTIONS(1456), + [anon_sym_STAR_STAR2] = ACTIONS(1456), + [anon_sym_PLUS_PLUS2] = ACTIONS(1456), + [anon_sym_SLASH2] = ACTIONS(1456), + [anon_sym_mod2] = ACTIONS(1456), + [anon_sym_SLASH_SLASH2] = ACTIONS(1456), + [anon_sym_PLUS2] = ACTIONS(1456), + [anon_sym_bit_DASHshl2] = ACTIONS(1456), + [anon_sym_bit_DASHshr2] = ACTIONS(1456), + [anon_sym_bit_DASHand2] = ACTIONS(1456), + [anon_sym_bit_DASHxor2] = ACTIONS(1456), + [anon_sym_bit_DASHor2] = ACTIONS(1456), + [anon_sym_DOT_DOT2] = ACTIONS(1456), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), + [sym__entry_separator] = ACTIONS(1458), + [anon_sym_COLON2] = ACTIONS(1456), + [anon_sym_QMARK2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_DOT2] = ACTIONS(1456), + [anon_sym_err_GT] = ACTIONS(1456), + [anon_sym_out_GT] = ACTIONS(1456), + [anon_sym_e_GT] = ACTIONS(1456), + [anon_sym_o_GT] = ACTIONS(1456), + [anon_sym_err_PLUSout_GT] = ACTIONS(1456), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1456), + [anon_sym_o_PLUSe_GT] = ACTIONS(1456), + [anon_sym_e_PLUSo_GT] = ACTIONS(1456), + [anon_sym_err_GT_GT] = ACTIONS(1456), + [anon_sym_out_GT_GT] = ACTIONS(1456), + [anon_sym_e_GT_GT] = ACTIONS(1456), + [anon_sym_o_GT_GT] = ACTIONS(1456), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1456), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1456), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1456), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(338)] = { + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5098), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3837), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(338), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(339)] = { + [sym_comment] = STATE(339), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1496), + [anon_sym_DASH_EQ] = ACTIONS(1496), + [anon_sym_STAR_EQ] = ACTIONS(1496), + [anon_sym_SLASH_EQ] = ACTIONS(1496), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1496), + [anon_sym_in] = ACTIONS(1496), + [sym__newline] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_err_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_GT_PIPE] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1496), + [anon_sym_xor2] = ACTIONS(1496), + [anon_sym_or2] = ACTIONS(1496), + [anon_sym_not_DASHin2] = ACTIONS(1496), + [anon_sym_has2] = ACTIONS(1496), + [anon_sym_not_DASHhas2] = ACTIONS(1496), + [anon_sym_starts_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1496), + [anon_sym_ends_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1496), + [anon_sym_EQ_EQ2] = ACTIONS(1496), + [anon_sym_BANG_EQ2] = ACTIONS(1496), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1496), + [anon_sym_GT_EQ2] = ACTIONS(1496), + [anon_sym_EQ_TILDE2] = ACTIONS(1496), + [anon_sym_BANG_TILDE2] = ACTIONS(1496), + [anon_sym_like2] = ACTIONS(1496), + [anon_sym_not_DASHlike2] = ACTIONS(1496), + [anon_sym_STAR_STAR2] = ACTIONS(1496), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1496), + [anon_sym_SLASH_SLASH2] = ACTIONS(1496), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1496), + [anon_sym_bit_DASHshr2] = ACTIONS(1496), + [anon_sym_bit_DASHand2] = ACTIONS(1496), + [anon_sym_bit_DASHxor2] = ACTIONS(1496), + [anon_sym_bit_DASHor2] = ACTIONS(1496), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [sym__entry_separator] = ACTIONS(1498), + [anon_sym_COLON2] = ACTIONS(1496), + [anon_sym_DOT2] = ACTIONS(1496), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1496), + [anon_sym_out_GT_GT] = ACTIONS(1496), + [anon_sym_e_GT_GT] = ACTIONS(1496), + [anon_sym_o_GT_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(340)] = { + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5323), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3849), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(340), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(341)] = { + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5191), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3824), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(341), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(342)] = { + [sym_path] = STATE(395), + [sym_comment] = STATE(342), + [aux_sym__where_predicate_lhs_repeat1] = STATE(343), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_err_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_GT_PIPE] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), + [anon_sym_RPAREN] = ACTIONS(1506), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1506), + [anon_sym_xor2] = ACTIONS(1506), + [anon_sym_or2] = ACTIONS(1506), + [anon_sym_not_DASHin2] = ACTIONS(1506), + [anon_sym_has2] = ACTIONS(1506), + [anon_sym_not_DASHhas2] = ACTIONS(1506), + [anon_sym_starts_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), + [anon_sym_ends_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), + [anon_sym_EQ_EQ2] = ACTIONS(1506), + [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1506), + [anon_sym_GT_EQ2] = ACTIONS(1506), + [anon_sym_EQ_TILDE2] = ACTIONS(1506), + [anon_sym_BANG_TILDE2] = ACTIONS(1506), + [anon_sym_like2] = ACTIONS(1506), + [anon_sym_not_DASHlike2] = ACTIONS(1506), + [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1506), + [anon_sym_bit_DASHshr2] = ACTIONS(1506), + [anon_sym_bit_DASHand2] = ACTIONS(1506), + [anon_sym_bit_DASHxor2] = ACTIONS(1506), + [anon_sym_bit_DASHor2] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [anon_sym_COLON2] = ACTIONS(1506), + [anon_sym_DOT2] = ACTIONS(1454), + [anon_sym_err_GT] = ACTIONS(1504), + [anon_sym_out_GT] = ACTIONS(1504), + [anon_sym_e_GT] = ACTIONS(1504), + [anon_sym_o_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT] = ACTIONS(1504), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(343)] = { + [sym_path] = STATE(395), + [sym_comment] = STATE(343), + [aux_sym__where_predicate_lhs_repeat1] = STATE(343), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1510), + [sym__newline] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_err_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_GT_PIPE] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), + [anon_sym_RPAREN] = ACTIONS(1510), + [anon_sym_GT2] = ACTIONS(1508), + [anon_sym_DASH2] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_STAR2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1510), + [anon_sym_xor2] = ACTIONS(1510), + [anon_sym_or2] = ACTIONS(1510), + [anon_sym_not_DASHin2] = ACTIONS(1510), + [anon_sym_has2] = ACTIONS(1510), + [anon_sym_not_DASHhas2] = ACTIONS(1510), + [anon_sym_starts_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), + [anon_sym_ends_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), + [anon_sym_EQ_EQ2] = ACTIONS(1510), + [anon_sym_BANG_EQ2] = ACTIONS(1510), + [anon_sym_LT2] = ACTIONS(1508), + [anon_sym_LT_EQ2] = ACTIONS(1510), + [anon_sym_GT_EQ2] = ACTIONS(1510), + [anon_sym_EQ_TILDE2] = ACTIONS(1510), + [anon_sym_BANG_TILDE2] = ACTIONS(1510), + [anon_sym_like2] = ACTIONS(1510), + [anon_sym_not_DASHlike2] = ACTIONS(1510), + [anon_sym_STAR_STAR2] = ACTIONS(1510), + [anon_sym_PLUS_PLUS2] = ACTIONS(1508), + [anon_sym_SLASH2] = ACTIONS(1508), + [anon_sym_mod2] = ACTIONS(1510), + [anon_sym_SLASH_SLASH2] = ACTIONS(1510), + [anon_sym_PLUS2] = ACTIONS(1508), + [anon_sym_bit_DASHshl2] = ACTIONS(1510), + [anon_sym_bit_DASHshr2] = ACTIONS(1510), + [anon_sym_bit_DASHand2] = ACTIONS(1510), + [anon_sym_bit_DASHxor2] = ACTIONS(1510), + [anon_sym_bit_DASHor2] = ACTIONS(1510), + [anon_sym_DOT_DOT2] = ACTIONS(1508), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), + [anon_sym_COLON2] = ACTIONS(1510), + [anon_sym_DOT2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1508), + [anon_sym_out_GT] = ACTIONS(1508), + [anon_sym_e_GT] = ACTIONS(1508), + [anon_sym_o_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT] = ACTIONS(1508), + [anon_sym_err_GT_GT] = ACTIONS(1510), + [anon_sym_out_GT_GT] = ACTIONS(1510), + [anon_sym_e_GT_GT] = ACTIONS(1510), + [anon_sym_o_GT_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(344)] = { + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5234), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3824), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(344), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(345)] = { + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5352), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3799), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(345), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(346)] = { + [sym_comment] = STATE(346), + [anon_sym_EQ] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1521), + [anon_sym_in] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_GT2] = ACTIONS(1519), + [anon_sym_DASH2] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_STAR2] = ACTIONS(1519), + [anon_sym_and2] = ACTIONS(1521), + [anon_sym_xor2] = ACTIONS(1521), + [anon_sym_or2] = ACTIONS(1521), + [anon_sym_not_DASHin2] = ACTIONS(1521), + [anon_sym_has2] = ACTIONS(1521), + [anon_sym_not_DASHhas2] = ACTIONS(1521), + [anon_sym_starts_DASHwith2] = ACTIONS(1521), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1521), + [anon_sym_ends_DASHwith2] = ACTIONS(1521), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1521), + [anon_sym_EQ_EQ2] = ACTIONS(1521), + [anon_sym_BANG_EQ2] = ACTIONS(1521), + [anon_sym_LT2] = ACTIONS(1519), + [anon_sym_LT_EQ2] = ACTIONS(1521), + [anon_sym_GT_EQ2] = ACTIONS(1521), + [anon_sym_EQ_TILDE2] = ACTIONS(1521), + [anon_sym_BANG_TILDE2] = ACTIONS(1521), + [anon_sym_like2] = ACTIONS(1521), + [anon_sym_not_DASHlike2] = ACTIONS(1521), + [anon_sym_STAR_STAR2] = ACTIONS(1521), + [anon_sym_PLUS_PLUS2] = ACTIONS(1519), + [anon_sym_SLASH2] = ACTIONS(1519), + [anon_sym_mod2] = ACTIONS(1521), + [anon_sym_SLASH_SLASH2] = ACTIONS(1521), + [anon_sym_PLUS2] = ACTIONS(1519), + [anon_sym_bit_DASHshl2] = ACTIONS(1521), + [anon_sym_bit_DASHshr2] = ACTIONS(1521), + [anon_sym_bit_DASHand2] = ACTIONS(1521), + [anon_sym_bit_DASHxor2] = ACTIONS(1521), + [anon_sym_bit_DASHor2] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [anon_sym_COLON2] = ACTIONS(1521), + [anon_sym_QMARK2] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_DOT2] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(347)] = { + [sym_comment] = STATE(347), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [sym__newline] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_err_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_GT_PIPE] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(1525), + [anon_sym_GT2] = ACTIONS(1523), + [anon_sym_DASH2] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_STAR2] = ACTIONS(1523), + [anon_sym_and2] = ACTIONS(1525), + [anon_sym_xor2] = ACTIONS(1525), + [anon_sym_or2] = ACTIONS(1525), + [anon_sym_not_DASHin2] = ACTIONS(1525), + [anon_sym_has2] = ACTIONS(1525), + [anon_sym_not_DASHhas2] = ACTIONS(1525), + [anon_sym_starts_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1525), + [anon_sym_ends_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1525), + [anon_sym_EQ_EQ2] = ACTIONS(1525), + [anon_sym_BANG_EQ2] = ACTIONS(1525), + [anon_sym_LT2] = ACTIONS(1523), + [anon_sym_LT_EQ2] = ACTIONS(1525), + [anon_sym_GT_EQ2] = ACTIONS(1525), + [anon_sym_EQ_TILDE2] = ACTIONS(1525), + [anon_sym_BANG_TILDE2] = ACTIONS(1525), + [anon_sym_like2] = ACTIONS(1525), + [anon_sym_not_DASHlike2] = ACTIONS(1525), + [anon_sym_STAR_STAR2] = ACTIONS(1525), + [anon_sym_PLUS_PLUS2] = ACTIONS(1523), + [anon_sym_SLASH2] = ACTIONS(1523), + [anon_sym_mod2] = ACTIONS(1525), + [anon_sym_SLASH_SLASH2] = ACTIONS(1525), + [anon_sym_PLUS2] = ACTIONS(1523), + [anon_sym_bit_DASHshl2] = ACTIONS(1525), + [anon_sym_bit_DASHshr2] = ACTIONS(1525), + [anon_sym_bit_DASHand2] = ACTIONS(1525), + [anon_sym_bit_DASHxor2] = ACTIONS(1525), + [anon_sym_bit_DASHor2] = ACTIONS(1525), + [anon_sym_DOT_DOT2] = ACTIONS(1523), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1525), + [anon_sym_COLON2] = ACTIONS(1525), + [anon_sym_QMARK2] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_DOT2] = ACTIONS(1523), + [anon_sym_err_GT] = ACTIONS(1523), + [anon_sym_out_GT] = ACTIONS(1523), + [anon_sym_e_GT] = ACTIONS(1523), + [anon_sym_o_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT] = ACTIONS(1523), + [anon_sym_err_GT_GT] = ACTIONS(1525), + [anon_sym_out_GT_GT] = ACTIONS(1525), + [anon_sym_e_GT_GT] = ACTIONS(1525), + [anon_sym_o_GT_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(348)] = { + [sym_comment] = STATE(348), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_PLUS_EQ] = ACTIONS(1529), + [anon_sym_DASH_EQ] = ACTIONS(1529), + [anon_sym_STAR_EQ] = ACTIONS(1529), + [anon_sym_SLASH_EQ] = ACTIONS(1529), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1529), + [anon_sym_in] = ACTIONS(1529), + [sym__newline] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_err_GT_PIPE] = ACTIONS(1529), + [anon_sym_out_GT_PIPE] = ACTIONS(1529), + [anon_sym_e_GT_PIPE] = ACTIONS(1529), + [anon_sym_o_GT_PIPE] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1529), + [anon_sym_RPAREN] = ACTIONS(1529), + [anon_sym_GT2] = ACTIONS(1527), + [anon_sym_DASH2] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_STAR2] = ACTIONS(1527), + [anon_sym_and2] = ACTIONS(1529), + [anon_sym_xor2] = ACTIONS(1529), + [anon_sym_or2] = ACTIONS(1529), + [anon_sym_not_DASHin2] = ACTIONS(1529), + [anon_sym_has2] = ACTIONS(1529), + [anon_sym_not_DASHhas2] = ACTIONS(1529), + [anon_sym_starts_DASHwith2] = ACTIONS(1529), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1529), + [anon_sym_ends_DASHwith2] = ACTIONS(1529), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1529), + [anon_sym_EQ_EQ2] = ACTIONS(1529), + [anon_sym_BANG_EQ2] = ACTIONS(1529), + [anon_sym_LT2] = ACTIONS(1527), + [anon_sym_LT_EQ2] = ACTIONS(1529), + [anon_sym_GT_EQ2] = ACTIONS(1529), + [anon_sym_EQ_TILDE2] = ACTIONS(1529), + [anon_sym_BANG_TILDE2] = ACTIONS(1529), + [anon_sym_like2] = ACTIONS(1529), + [anon_sym_not_DASHlike2] = ACTIONS(1529), + [anon_sym_STAR_STAR2] = ACTIONS(1529), + [anon_sym_PLUS_PLUS2] = ACTIONS(1527), + [anon_sym_SLASH2] = ACTIONS(1527), + [anon_sym_mod2] = ACTIONS(1529), + [anon_sym_SLASH_SLASH2] = ACTIONS(1529), + [anon_sym_PLUS2] = ACTIONS(1527), + [anon_sym_bit_DASHshl2] = ACTIONS(1529), + [anon_sym_bit_DASHshr2] = ACTIONS(1529), + [anon_sym_bit_DASHand2] = ACTIONS(1529), + [anon_sym_bit_DASHxor2] = ACTIONS(1529), + [anon_sym_bit_DASHor2] = ACTIONS(1529), + [anon_sym_DOT_DOT2] = ACTIONS(1527), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), + [anon_sym_COLON2] = ACTIONS(1529), + [anon_sym_QMARK2] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_DOT2] = ACTIONS(1527), + [anon_sym_err_GT] = ACTIONS(1527), + [anon_sym_out_GT] = ACTIONS(1527), + [anon_sym_e_GT] = ACTIONS(1527), + [anon_sym_o_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT] = ACTIONS(1527), + [anon_sym_err_GT_GT] = ACTIONS(1529), + [anon_sym_out_GT_GT] = ACTIONS(1529), + [anon_sym_e_GT_GT] = ACTIONS(1529), + [anon_sym_o_GT_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1529), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(349)] = { + [sym_comment] = STATE(349), + [anon_sym_EQ] = ACTIONS(1531), + [anon_sym_PLUS_EQ] = ACTIONS(1533), + [anon_sym_DASH_EQ] = ACTIONS(1533), + [anon_sym_STAR_EQ] = ACTIONS(1533), + [anon_sym_SLASH_EQ] = ACTIONS(1533), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1533), + [anon_sym_in] = ACTIONS(1533), + [sym__newline] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_err_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_GT_PIPE] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1533), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_GT2] = ACTIONS(1531), + [anon_sym_DASH2] = ACTIONS(1531), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_STAR2] = ACTIONS(1531), + [anon_sym_and2] = ACTIONS(1533), + [anon_sym_xor2] = ACTIONS(1533), + [anon_sym_or2] = ACTIONS(1533), + [anon_sym_not_DASHin2] = ACTIONS(1533), + [anon_sym_has2] = ACTIONS(1533), + [anon_sym_not_DASHhas2] = ACTIONS(1533), + [anon_sym_starts_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1533), + [anon_sym_ends_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1533), + [anon_sym_EQ_EQ2] = ACTIONS(1533), + [anon_sym_BANG_EQ2] = ACTIONS(1533), + [anon_sym_LT2] = ACTIONS(1531), + [anon_sym_LT_EQ2] = ACTIONS(1533), + [anon_sym_GT_EQ2] = ACTIONS(1533), + [anon_sym_EQ_TILDE2] = ACTIONS(1533), + [anon_sym_BANG_TILDE2] = ACTIONS(1533), + [anon_sym_like2] = ACTIONS(1533), + [anon_sym_not_DASHlike2] = ACTIONS(1533), + [anon_sym_STAR_STAR2] = ACTIONS(1533), + [anon_sym_PLUS_PLUS2] = ACTIONS(1531), + [anon_sym_SLASH2] = ACTIONS(1531), + [anon_sym_mod2] = ACTIONS(1533), + [anon_sym_SLASH_SLASH2] = ACTIONS(1533), + [anon_sym_PLUS2] = ACTIONS(1531), + [anon_sym_bit_DASHshl2] = ACTIONS(1533), + [anon_sym_bit_DASHshr2] = ACTIONS(1533), + [anon_sym_bit_DASHand2] = ACTIONS(1533), + [anon_sym_bit_DASHxor2] = ACTIONS(1533), + [anon_sym_bit_DASHor2] = ACTIONS(1533), + [anon_sym_DOT_DOT2] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), + [anon_sym_COLON2] = ACTIONS(1533), + [anon_sym_QMARK2] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1531), + [anon_sym_err_GT] = ACTIONS(1531), + [anon_sym_out_GT] = ACTIONS(1531), + [anon_sym_e_GT] = ACTIONS(1531), + [anon_sym_o_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT] = ACTIONS(1531), + [anon_sym_err_GT_GT] = ACTIONS(1533), + [anon_sym_out_GT_GT] = ACTIONS(1533), + [anon_sym_e_GT_GT] = ACTIONS(1533), + [anon_sym_o_GT_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(350)] = { + [sym_comment] = STATE(350), + [anon_sym_EQ] = ACTIONS(1535), + [anon_sym_PLUS_EQ] = ACTIONS(1537), + [anon_sym_DASH_EQ] = ACTIONS(1537), + [anon_sym_STAR_EQ] = ACTIONS(1537), + [anon_sym_SLASH_EQ] = ACTIONS(1537), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), + [anon_sym_in] = ACTIONS(1537), + [sym__newline] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_err_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_GT_PIPE] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), + [anon_sym_RPAREN] = ACTIONS(1537), + [anon_sym_GT2] = ACTIONS(1535), + [anon_sym_DASH2] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_STAR2] = ACTIONS(1535), + [anon_sym_and2] = ACTIONS(1537), + [anon_sym_xor2] = ACTIONS(1537), + [anon_sym_or2] = ACTIONS(1537), + [anon_sym_not_DASHin2] = ACTIONS(1537), + [anon_sym_has2] = ACTIONS(1537), + [anon_sym_not_DASHhas2] = ACTIONS(1537), + [anon_sym_starts_DASHwith2] = ACTIONS(1537), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), + [anon_sym_ends_DASHwith2] = ACTIONS(1537), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), + [anon_sym_EQ_EQ2] = ACTIONS(1537), + [anon_sym_BANG_EQ2] = ACTIONS(1537), + [anon_sym_LT2] = ACTIONS(1535), + [anon_sym_LT_EQ2] = ACTIONS(1537), + [anon_sym_GT_EQ2] = ACTIONS(1537), + [anon_sym_EQ_TILDE2] = ACTIONS(1537), + [anon_sym_BANG_TILDE2] = ACTIONS(1537), + [anon_sym_like2] = ACTIONS(1537), + [anon_sym_not_DASHlike2] = ACTIONS(1537), + [anon_sym_STAR_STAR2] = ACTIONS(1537), + [anon_sym_PLUS_PLUS2] = ACTIONS(1535), + [anon_sym_SLASH2] = ACTIONS(1535), + [anon_sym_mod2] = ACTIONS(1537), + [anon_sym_SLASH_SLASH2] = ACTIONS(1537), + [anon_sym_PLUS2] = ACTIONS(1535), + [anon_sym_bit_DASHshl2] = ACTIONS(1537), + [anon_sym_bit_DASHshr2] = ACTIONS(1537), + [anon_sym_bit_DASHand2] = ACTIONS(1537), + [anon_sym_bit_DASHxor2] = ACTIONS(1537), + [anon_sym_bit_DASHor2] = ACTIONS(1537), + [anon_sym_DOT_DOT2] = ACTIONS(1535), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), + [anon_sym_COLON2] = ACTIONS(1537), + [anon_sym_QMARK2] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1535), + [anon_sym_err_GT] = ACTIONS(1535), + [anon_sym_out_GT] = ACTIONS(1535), + [anon_sym_e_GT] = ACTIONS(1535), + [anon_sym_o_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT] = ACTIONS(1535), + [anon_sym_err_GT_GT] = ACTIONS(1537), + [anon_sym_out_GT_GT] = ACTIONS(1537), + [anon_sym_e_GT_GT] = ACTIONS(1537), + [anon_sym_o_GT_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(351)] = { + [sym_comment] = STATE(351), + [anon_sym_EQ] = ACTIONS(1539), + [anon_sym_PLUS_EQ] = ACTIONS(1541), + [anon_sym_DASH_EQ] = ACTIONS(1541), + [anon_sym_STAR_EQ] = ACTIONS(1541), + [anon_sym_SLASH_EQ] = ACTIONS(1541), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1541), + [anon_sym_in] = ACTIONS(1541), + [sym__newline] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_err_GT_PIPE] = ACTIONS(1541), + [anon_sym_out_GT_PIPE] = ACTIONS(1541), + [anon_sym_e_GT_PIPE] = ACTIONS(1541), + [anon_sym_o_GT_PIPE] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1541), + [anon_sym_RPAREN] = ACTIONS(1541), + [anon_sym_GT2] = ACTIONS(1539), + [anon_sym_DASH2] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_STAR2] = ACTIONS(1539), + [anon_sym_and2] = ACTIONS(1541), + [anon_sym_xor2] = ACTIONS(1541), + [anon_sym_or2] = ACTIONS(1541), + [anon_sym_not_DASHin2] = ACTIONS(1541), + [anon_sym_has2] = ACTIONS(1541), + [anon_sym_not_DASHhas2] = ACTIONS(1541), + [anon_sym_starts_DASHwith2] = ACTIONS(1541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1541), + [anon_sym_ends_DASHwith2] = ACTIONS(1541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1541), + [anon_sym_EQ_EQ2] = ACTIONS(1541), + [anon_sym_BANG_EQ2] = ACTIONS(1541), + [anon_sym_LT2] = ACTIONS(1539), + [anon_sym_LT_EQ2] = ACTIONS(1541), + [anon_sym_GT_EQ2] = ACTIONS(1541), + [anon_sym_EQ_TILDE2] = ACTIONS(1541), + [anon_sym_BANG_TILDE2] = ACTIONS(1541), + [anon_sym_like2] = ACTIONS(1541), + [anon_sym_not_DASHlike2] = ACTIONS(1541), + [anon_sym_STAR_STAR2] = ACTIONS(1541), + [anon_sym_PLUS_PLUS2] = ACTIONS(1539), + [anon_sym_SLASH2] = ACTIONS(1539), + [anon_sym_mod2] = ACTIONS(1541), + [anon_sym_SLASH_SLASH2] = ACTIONS(1541), + [anon_sym_PLUS2] = ACTIONS(1539), + [anon_sym_bit_DASHshl2] = ACTIONS(1541), + [anon_sym_bit_DASHshr2] = ACTIONS(1541), + [anon_sym_bit_DASHand2] = ACTIONS(1541), + [anon_sym_bit_DASHxor2] = ACTIONS(1541), + [anon_sym_bit_DASHor2] = ACTIONS(1541), + [anon_sym_DOT_DOT2] = ACTIONS(1539), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1541), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1541), + [anon_sym_COLON2] = ACTIONS(1541), + [anon_sym_QMARK2] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_DOT2] = ACTIONS(1539), + [anon_sym_err_GT] = ACTIONS(1539), + [anon_sym_out_GT] = ACTIONS(1539), + [anon_sym_e_GT] = ACTIONS(1539), + [anon_sym_o_GT] = ACTIONS(1539), + [anon_sym_err_PLUSout_GT] = ACTIONS(1539), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1539), + [anon_sym_o_PLUSe_GT] = ACTIONS(1539), + [anon_sym_e_PLUSo_GT] = ACTIONS(1539), + [anon_sym_err_GT_GT] = ACTIONS(1541), + [anon_sym_out_GT_GT] = ACTIONS(1541), + [anon_sym_e_GT_GT] = ACTIONS(1541), + [anon_sym_o_GT_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1541), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(352)] = { + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5096), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3842), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(352), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(353)] = { - [sym_path] = STATE(385), [sym_comment] = STATE(353), - [aux_sym__where_predicate_lhs_repeat1] = STATE(353), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1526), - [anon_sym_DASH_EQ] = ACTIONS(1526), - [anon_sym_STAR_EQ] = ACTIONS(1526), - [anon_sym_SLASH_EQ] = ACTIONS(1526), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1519), + [anon_sym_DASH_EQ] = ACTIONS(1519), + [anon_sym_STAR_EQ] = ACTIONS(1519), + [anon_sym_SLASH_EQ] = ACTIONS(1519), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1519), + [anon_sym_in] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_GT2] = ACTIONS(1519), + [anon_sym_DASH2] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_STAR2] = ACTIONS(1519), + [anon_sym_and2] = ACTIONS(1519), + [anon_sym_xor2] = ACTIONS(1519), + [anon_sym_or2] = ACTIONS(1519), + [anon_sym_not_DASHin2] = ACTIONS(1519), + [anon_sym_has2] = ACTIONS(1519), + [anon_sym_not_DASHhas2] = ACTIONS(1519), + [anon_sym_starts_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1519), + [anon_sym_ends_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1519), + [anon_sym_EQ_EQ2] = ACTIONS(1519), + [anon_sym_BANG_EQ2] = ACTIONS(1519), + [anon_sym_LT2] = ACTIONS(1519), + [anon_sym_LT_EQ2] = ACTIONS(1519), + [anon_sym_GT_EQ2] = ACTIONS(1519), + [anon_sym_EQ_TILDE2] = ACTIONS(1519), + [anon_sym_BANG_TILDE2] = ACTIONS(1519), + [anon_sym_like2] = ACTIONS(1519), + [anon_sym_not_DASHlike2] = ACTIONS(1519), + [anon_sym_STAR_STAR2] = ACTIONS(1519), + [anon_sym_PLUS_PLUS2] = ACTIONS(1519), + [anon_sym_SLASH2] = ACTIONS(1519), + [anon_sym_mod2] = ACTIONS(1519), + [anon_sym_SLASH_SLASH2] = ACTIONS(1519), + [anon_sym_PLUS2] = ACTIONS(1519), + [anon_sym_bit_DASHshl2] = ACTIONS(1519), + [anon_sym_bit_DASHshr2] = ACTIONS(1519), + [anon_sym_bit_DASHand2] = ACTIONS(1519), + [anon_sym_bit_DASHxor2] = ACTIONS(1519), + [anon_sym_bit_DASHor2] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [sym__entry_separator] = ACTIONS(1521), + [anon_sym_COLON2] = ACTIONS(1519), + [anon_sym_QMARK2] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_DOT2] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(354)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5047), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(354), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_PLUS_EQ] = ACTIONS(1523), + [anon_sym_DASH_EQ] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1523), + [anon_sym_SLASH_EQ] = ACTIONS(1523), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1523), + [anon_sym_in] = ACTIONS(1523), + [sym__newline] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_err_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_GT_PIPE] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1523), + [anon_sym_GT2] = ACTIONS(1523), + [anon_sym_DASH2] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_STAR2] = ACTIONS(1523), + [anon_sym_and2] = ACTIONS(1523), + [anon_sym_xor2] = ACTIONS(1523), + [anon_sym_or2] = ACTIONS(1523), + [anon_sym_not_DASHin2] = ACTIONS(1523), + [anon_sym_has2] = ACTIONS(1523), + [anon_sym_not_DASHhas2] = ACTIONS(1523), + [anon_sym_starts_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1523), + [anon_sym_ends_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1523), + [anon_sym_EQ_EQ2] = ACTIONS(1523), + [anon_sym_BANG_EQ2] = ACTIONS(1523), + [anon_sym_LT2] = ACTIONS(1523), + [anon_sym_LT_EQ2] = ACTIONS(1523), + [anon_sym_GT_EQ2] = ACTIONS(1523), + [anon_sym_EQ_TILDE2] = ACTIONS(1523), + [anon_sym_BANG_TILDE2] = ACTIONS(1523), + [anon_sym_like2] = ACTIONS(1523), + [anon_sym_not_DASHlike2] = ACTIONS(1523), + [anon_sym_STAR_STAR2] = ACTIONS(1523), + [anon_sym_PLUS_PLUS2] = ACTIONS(1523), + [anon_sym_SLASH2] = ACTIONS(1523), + [anon_sym_mod2] = ACTIONS(1523), + [anon_sym_SLASH_SLASH2] = ACTIONS(1523), + [anon_sym_PLUS2] = ACTIONS(1523), + [anon_sym_bit_DASHshl2] = ACTIONS(1523), + [anon_sym_bit_DASHshr2] = ACTIONS(1523), + [anon_sym_bit_DASHand2] = ACTIONS(1523), + [anon_sym_bit_DASHxor2] = ACTIONS(1523), + [anon_sym_bit_DASHor2] = ACTIONS(1523), + [anon_sym_DOT_DOT2] = ACTIONS(1523), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1525), + [sym__entry_separator] = ACTIONS(1525), + [anon_sym_COLON2] = ACTIONS(1523), + [anon_sym_QMARK2] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_DOT2] = ACTIONS(1523), + [anon_sym_err_GT] = ACTIONS(1523), + [anon_sym_out_GT] = ACTIONS(1523), + [anon_sym_e_GT] = ACTIONS(1523), + [anon_sym_o_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT] = ACTIONS(1523), + [anon_sym_err_GT_GT] = ACTIONS(1523), + [anon_sym_out_GT_GT] = ACTIONS(1523), + [anon_sym_e_GT_GT] = ACTIONS(1523), + [anon_sym_o_GT_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(355)] = { [sym_comment] = STATE(355), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_STAR_EQ] = ACTIONS(1468), - [anon_sym_SLASH_EQ] = ACTIONS(1468), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1527), + [anon_sym_in] = ACTIONS(1527), + [sym__newline] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_err_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_GT_PIPE] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), + [anon_sym_GT2] = ACTIONS(1527), + [anon_sym_DASH2] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_STAR2] = ACTIONS(1527), + [anon_sym_and2] = ACTIONS(1527), + [anon_sym_xor2] = ACTIONS(1527), + [anon_sym_or2] = ACTIONS(1527), + [anon_sym_not_DASHin2] = ACTIONS(1527), + [anon_sym_has2] = ACTIONS(1527), + [anon_sym_not_DASHhas2] = ACTIONS(1527), + [anon_sym_starts_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), + [anon_sym_ends_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), + [anon_sym_EQ_EQ2] = ACTIONS(1527), + [anon_sym_BANG_EQ2] = ACTIONS(1527), + [anon_sym_LT2] = ACTIONS(1527), + [anon_sym_LT_EQ2] = ACTIONS(1527), + [anon_sym_GT_EQ2] = ACTIONS(1527), + [anon_sym_EQ_TILDE2] = ACTIONS(1527), + [anon_sym_BANG_TILDE2] = ACTIONS(1527), + [anon_sym_like2] = ACTIONS(1527), + [anon_sym_not_DASHlike2] = ACTIONS(1527), + [anon_sym_STAR_STAR2] = ACTIONS(1527), + [anon_sym_PLUS_PLUS2] = ACTIONS(1527), + [anon_sym_SLASH2] = ACTIONS(1527), + [anon_sym_mod2] = ACTIONS(1527), + [anon_sym_SLASH_SLASH2] = ACTIONS(1527), + [anon_sym_PLUS2] = ACTIONS(1527), + [anon_sym_bit_DASHshl2] = ACTIONS(1527), + [anon_sym_bit_DASHshr2] = ACTIONS(1527), + [anon_sym_bit_DASHand2] = ACTIONS(1527), + [anon_sym_bit_DASHxor2] = ACTIONS(1527), + [anon_sym_bit_DASHor2] = ACTIONS(1527), + [anon_sym_DOT_DOT2] = ACTIONS(1527), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), + [sym__entry_separator] = ACTIONS(1529), + [anon_sym_COLON2] = ACTIONS(1527), + [anon_sym_QMARK2] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_DOT2] = ACTIONS(1527), + [anon_sym_err_GT] = ACTIONS(1527), + [anon_sym_out_GT] = ACTIONS(1527), + [anon_sym_e_GT] = ACTIONS(1527), + [anon_sym_o_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT] = ACTIONS(1527), + [anon_sym_err_GT_GT] = ACTIONS(1527), + [anon_sym_out_GT_GT] = ACTIONS(1527), + [anon_sym_e_GT_GT] = ACTIONS(1527), + [anon_sym_o_GT_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(356)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5041), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3665), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(356), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1531), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1531), + [anon_sym_in] = ACTIONS(1531), + [sym__newline] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_err_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_GT_PIPE] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1531), + [anon_sym_GT2] = ACTIONS(1531), + [anon_sym_DASH2] = ACTIONS(1531), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_STAR2] = ACTIONS(1531), + [anon_sym_and2] = ACTIONS(1531), + [anon_sym_xor2] = ACTIONS(1531), + [anon_sym_or2] = ACTIONS(1531), + [anon_sym_not_DASHin2] = ACTIONS(1531), + [anon_sym_has2] = ACTIONS(1531), + [anon_sym_not_DASHhas2] = ACTIONS(1531), + [anon_sym_starts_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1531), + [anon_sym_ends_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1531), + [anon_sym_EQ_EQ2] = ACTIONS(1531), + [anon_sym_BANG_EQ2] = ACTIONS(1531), + [anon_sym_LT2] = ACTIONS(1531), + [anon_sym_LT_EQ2] = ACTIONS(1531), + [anon_sym_GT_EQ2] = ACTIONS(1531), + [anon_sym_EQ_TILDE2] = ACTIONS(1531), + [anon_sym_BANG_TILDE2] = ACTIONS(1531), + [anon_sym_like2] = ACTIONS(1531), + [anon_sym_not_DASHlike2] = ACTIONS(1531), + [anon_sym_STAR_STAR2] = ACTIONS(1531), + [anon_sym_PLUS_PLUS2] = ACTIONS(1531), + [anon_sym_SLASH2] = ACTIONS(1531), + [anon_sym_mod2] = ACTIONS(1531), + [anon_sym_SLASH_SLASH2] = ACTIONS(1531), + [anon_sym_PLUS2] = ACTIONS(1531), + [anon_sym_bit_DASHshl2] = ACTIONS(1531), + [anon_sym_bit_DASHshr2] = ACTIONS(1531), + [anon_sym_bit_DASHand2] = ACTIONS(1531), + [anon_sym_bit_DASHxor2] = ACTIONS(1531), + [anon_sym_bit_DASHor2] = ACTIONS(1531), + [anon_sym_DOT_DOT2] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), + [sym__entry_separator] = ACTIONS(1533), + [anon_sym_COLON2] = ACTIONS(1531), + [anon_sym_QMARK2] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1531), + [anon_sym_err_GT] = ACTIONS(1531), + [anon_sym_out_GT] = ACTIONS(1531), + [anon_sym_e_GT] = ACTIONS(1531), + [anon_sym_o_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT] = ACTIONS(1531), + [anon_sym_err_GT_GT] = ACTIONS(1531), + [anon_sym_out_GT_GT] = ACTIONS(1531), + [anon_sym_e_GT_GT] = ACTIONS(1531), + [anon_sym_o_GT_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(357)] = { [sym_comment] = STATE(357), @@ -75331,11 +75951,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), - [anon_sym_RBRACK] = ACTIONS(1535), [anon_sym_GT2] = ACTIONS(1535), [anon_sym_DASH2] = ACTIONS(1535), [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1535), [anon_sym_STAR2] = ACTIONS(1535), [anon_sym_and2] = ACTIONS(1535), [anon_sym_xor2] = ACTIONS(1535), @@ -75372,6 +75990,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), [sym__entry_separator] = ACTIONS(1537), [anon_sym_COLON2] = ACTIONS(1535), + [anon_sym_QMARK2] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1535), [anon_sym_DOT2] = ACTIONS(1535), [anon_sym_err_GT] = ACTIONS(1535), [anon_sym_out_GT] = ACTIONS(1535), @@ -75392,410 +76012,889 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(358)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4926), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3675), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5203), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3866), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(358), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(359)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5003), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3702), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(359), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1539), + [anon_sym_PLUS_EQ] = ACTIONS(1539), + [anon_sym_DASH_EQ] = ACTIONS(1539), + [anon_sym_STAR_EQ] = ACTIONS(1539), + [anon_sym_SLASH_EQ] = ACTIONS(1539), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1539), + [anon_sym_in] = ACTIONS(1539), + [sym__newline] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_err_GT_PIPE] = ACTIONS(1539), + [anon_sym_out_GT_PIPE] = ACTIONS(1539), + [anon_sym_e_GT_PIPE] = ACTIONS(1539), + [anon_sym_o_GT_PIPE] = ACTIONS(1539), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1539), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1539), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1539), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1539), + [anon_sym_GT2] = ACTIONS(1539), + [anon_sym_DASH2] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_STAR2] = ACTIONS(1539), + [anon_sym_and2] = ACTIONS(1539), + [anon_sym_xor2] = ACTIONS(1539), + [anon_sym_or2] = ACTIONS(1539), + [anon_sym_not_DASHin2] = ACTIONS(1539), + [anon_sym_has2] = ACTIONS(1539), + [anon_sym_not_DASHhas2] = ACTIONS(1539), + [anon_sym_starts_DASHwith2] = ACTIONS(1539), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1539), + [anon_sym_ends_DASHwith2] = ACTIONS(1539), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1539), + [anon_sym_EQ_EQ2] = ACTIONS(1539), + [anon_sym_BANG_EQ2] = ACTIONS(1539), + [anon_sym_LT2] = ACTIONS(1539), + [anon_sym_LT_EQ2] = ACTIONS(1539), + [anon_sym_GT_EQ2] = ACTIONS(1539), + [anon_sym_EQ_TILDE2] = ACTIONS(1539), + [anon_sym_BANG_TILDE2] = ACTIONS(1539), + [anon_sym_like2] = ACTIONS(1539), + [anon_sym_not_DASHlike2] = ACTIONS(1539), + [anon_sym_STAR_STAR2] = ACTIONS(1539), + [anon_sym_PLUS_PLUS2] = ACTIONS(1539), + [anon_sym_SLASH2] = ACTIONS(1539), + [anon_sym_mod2] = ACTIONS(1539), + [anon_sym_SLASH_SLASH2] = ACTIONS(1539), + [anon_sym_PLUS2] = ACTIONS(1539), + [anon_sym_bit_DASHshl2] = ACTIONS(1539), + [anon_sym_bit_DASHshr2] = ACTIONS(1539), + [anon_sym_bit_DASHand2] = ACTIONS(1539), + [anon_sym_bit_DASHxor2] = ACTIONS(1539), + [anon_sym_bit_DASHor2] = ACTIONS(1539), + [anon_sym_DOT_DOT2] = ACTIONS(1539), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1541), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1541), + [sym__entry_separator] = ACTIONS(1541), + [anon_sym_COLON2] = ACTIONS(1539), + [anon_sym_QMARK2] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_DOT2] = ACTIONS(1539), + [anon_sym_err_GT] = ACTIONS(1539), + [anon_sym_out_GT] = ACTIONS(1539), + [anon_sym_e_GT] = ACTIONS(1539), + [anon_sym_o_GT] = ACTIONS(1539), + [anon_sym_err_PLUSout_GT] = ACTIONS(1539), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1539), + [anon_sym_o_PLUSe_GT] = ACTIONS(1539), + [anon_sym_e_PLUSo_GT] = ACTIONS(1539), + [anon_sym_err_GT_GT] = ACTIONS(1539), + [anon_sym_out_GT_GT] = ACTIONS(1539), + [anon_sym_e_GT_GT] = ACTIONS(1539), + [anon_sym_o_GT_GT] = ACTIONS(1539), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1539), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1539), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1539), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(360)] = { [sym_comment] = STATE(360), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1543), - [sym__newline] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_err_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_GT_PIPE] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1543), - [anon_sym_xor2] = ACTIONS(1543), - [anon_sym_or2] = ACTIONS(1543), - [anon_sym_not_DASHin2] = ACTIONS(1543), - [anon_sym_has2] = ACTIONS(1543), - [anon_sym_not_DASHhas2] = ACTIONS(1543), - [anon_sym_starts_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), - [anon_sym_ends_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), - [anon_sym_EQ_EQ2] = ACTIONS(1543), - [anon_sym_BANG_EQ2] = ACTIONS(1543), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1543), - [anon_sym_GT_EQ2] = ACTIONS(1543), - [anon_sym_EQ_TILDE2] = ACTIONS(1543), - [anon_sym_BANG_TILDE2] = ACTIONS(1543), - [anon_sym_like2] = ACTIONS(1543), - [anon_sym_not_DASHlike2] = ACTIONS(1543), - [anon_sym_STAR_STAR2] = ACTIONS(1543), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1543), - [anon_sym_bit_DASHshr2] = ACTIONS(1543), - [anon_sym_bit_DASHand2] = ACTIONS(1543), - [anon_sym_bit_DASHxor2] = ACTIONS(1543), - [anon_sym_bit_DASHor2] = ACTIONS(1543), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [sym__entry_separator] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1543), - [anon_sym_QMARK2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1547), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1547), + [anon_sym_in] = ACTIONS(1547), + [sym__newline] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_err_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_GT_PIPE] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1547), + [anon_sym_RBRACK] = ACTIONS(1547), + [anon_sym_GT2] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_STAR2] = ACTIONS(1547), + [anon_sym_and2] = ACTIONS(1547), + [anon_sym_xor2] = ACTIONS(1547), + [anon_sym_or2] = ACTIONS(1547), + [anon_sym_not_DASHin2] = ACTIONS(1547), + [anon_sym_has2] = ACTIONS(1547), + [anon_sym_not_DASHhas2] = ACTIONS(1547), + [anon_sym_starts_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1547), + [anon_sym_ends_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1547), + [anon_sym_EQ_EQ2] = ACTIONS(1547), + [anon_sym_BANG_EQ2] = ACTIONS(1547), + [anon_sym_LT2] = ACTIONS(1547), + [anon_sym_LT_EQ2] = ACTIONS(1547), + [anon_sym_GT_EQ2] = ACTIONS(1547), + [anon_sym_EQ_TILDE2] = ACTIONS(1547), + [anon_sym_BANG_TILDE2] = ACTIONS(1547), + [anon_sym_like2] = ACTIONS(1547), + [anon_sym_not_DASHlike2] = ACTIONS(1547), + [anon_sym_STAR_STAR2] = ACTIONS(1547), + [anon_sym_PLUS_PLUS2] = ACTIONS(1547), + [anon_sym_SLASH2] = ACTIONS(1547), + [anon_sym_mod2] = ACTIONS(1547), + [anon_sym_SLASH_SLASH2] = ACTIONS(1547), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_bit_DASHshl2] = ACTIONS(1547), + [anon_sym_bit_DASHshr2] = ACTIONS(1547), + [anon_sym_bit_DASHand2] = ACTIONS(1547), + [anon_sym_bit_DASHxor2] = ACTIONS(1547), + [anon_sym_bit_DASHor2] = ACTIONS(1547), + [anon_sym_DOT_DOT2] = ACTIONS(1547), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), + [sym__entry_separator] = ACTIONS(1549), + [anon_sym_COLON2] = ACTIONS(1547), + [anon_sym_DOT2] = ACTIONS(1547), + [anon_sym_err_GT] = ACTIONS(1547), + [anon_sym_out_GT] = ACTIONS(1547), + [anon_sym_e_GT] = ACTIONS(1547), + [anon_sym_o_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT] = ACTIONS(1547), + [anon_sym_err_GT_GT] = ACTIONS(1547), + [anon_sym_out_GT_GT] = ACTIONS(1547), + [anon_sym_e_GT_GT] = ACTIONS(1547), + [anon_sym_o_GT_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1547), [anon_sym_POUND] = ACTIONS(103), }, [STATE(361)] = { + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5353), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3802), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(361), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1545), - [anon_sym_DASH_EQ] = ACTIONS(1545), - [anon_sym_STAR_EQ] = ACTIONS(1545), - [anon_sym_SLASH_EQ] = ACTIONS(1545), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(362)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5056), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3670), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(4960), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3812), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(362), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(363)] = { - [sym_path] = STATE(339), + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5200), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3815), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(363), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), - [anon_sym_EQ] = ACTIONS(1458), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(364)] = { + [sym_path] = STATE(360), + [sym_comment] = STATE(364), + [aux_sym__where_predicate_lhs_repeat1] = STATE(365), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_PLUS_EQ] = ACTIONS(1504), + [anon_sym_DASH_EQ] = ACTIONS(1504), + [anon_sym_STAR_EQ] = ACTIONS(1504), + [anon_sym_SLASH_EQ] = ACTIONS(1504), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1504), + [anon_sym_in] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_like2] = ACTIONS(1504), + [anon_sym_not_DASHlike2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [sym__entry_separator] = ACTIONS(1506), + [anon_sym_COLON2] = ACTIONS(1504), + [anon_sym_DOT2] = ACTIONS(1446), + [anon_sym_err_GT] = ACTIONS(1504), + [anon_sym_out_GT] = ACTIONS(1504), + [anon_sym_e_GT] = ACTIONS(1504), + [anon_sym_o_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT] = ACTIONS(1504), + [anon_sym_err_GT_GT] = ACTIONS(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(365)] = { + [sym_path] = STATE(360), + [sym_comment] = STATE(365), + [aux_sym__where_predicate_lhs_repeat1] = STATE(365), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_PLUS_EQ] = ACTIONS(1508), + [anon_sym_DASH_EQ] = ACTIONS(1508), + [anon_sym_STAR_EQ] = ACTIONS(1508), + [anon_sym_SLASH_EQ] = ACTIONS(1508), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1508), + [anon_sym_in] = ACTIONS(1508), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_GT2] = ACTIONS(1508), + [anon_sym_DASH2] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_STAR2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1508), + [anon_sym_xor2] = ACTIONS(1508), + [anon_sym_or2] = ACTIONS(1508), + [anon_sym_not_DASHin2] = ACTIONS(1508), + [anon_sym_has2] = ACTIONS(1508), + [anon_sym_not_DASHhas2] = ACTIONS(1508), + [anon_sym_starts_DASHwith2] = ACTIONS(1508), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1508), + [anon_sym_ends_DASHwith2] = ACTIONS(1508), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1508), + [anon_sym_EQ_EQ2] = ACTIONS(1508), + [anon_sym_BANG_EQ2] = ACTIONS(1508), + [anon_sym_LT2] = ACTIONS(1508), + [anon_sym_LT_EQ2] = ACTIONS(1508), + [anon_sym_GT_EQ2] = ACTIONS(1508), + [anon_sym_EQ_TILDE2] = ACTIONS(1508), + [anon_sym_BANG_TILDE2] = ACTIONS(1508), + [anon_sym_like2] = ACTIONS(1508), + [anon_sym_not_DASHlike2] = ACTIONS(1508), + [anon_sym_STAR_STAR2] = ACTIONS(1508), + [anon_sym_PLUS_PLUS2] = ACTIONS(1508), + [anon_sym_SLASH2] = ACTIONS(1508), + [anon_sym_mod2] = ACTIONS(1508), + [anon_sym_SLASH_SLASH2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1508), + [anon_sym_bit_DASHshl2] = ACTIONS(1508), + [anon_sym_bit_DASHshr2] = ACTIONS(1508), + [anon_sym_bit_DASHand2] = ACTIONS(1508), + [anon_sym_bit_DASHxor2] = ACTIONS(1508), + [anon_sym_bit_DASHor2] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1508), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), + [sym__entry_separator] = ACTIONS(1510), + [anon_sym_COLON2] = ACTIONS(1508), + [anon_sym_DOT2] = ACTIONS(1557), + [anon_sym_err_GT] = ACTIONS(1508), + [anon_sym_out_GT] = ACTIONS(1508), + [anon_sym_e_GT] = ACTIONS(1508), + [anon_sym_o_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT] = ACTIONS(1508), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(366)] = { + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5081), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3841), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(366), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(367)] = { + [sym_comment] = STATE(367), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_PLUS_EQ] = ACTIONS(1562), + [anon_sym_DASH_EQ] = ACTIONS(1562), + [anon_sym_STAR_EQ] = ACTIONS(1562), + [anon_sym_SLASH_EQ] = ACTIONS(1562), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1562), + [anon_sym_in] = ACTIONS(1562), + [sym__newline] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_err_GT_PIPE] = ACTIONS(1562), + [anon_sym_out_GT_PIPE] = ACTIONS(1562), + [anon_sym_e_GT_PIPE] = ACTIONS(1562), + [anon_sym_o_GT_PIPE] = ACTIONS(1562), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1562), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1562), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1562), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1562), + [anon_sym_RBRACK] = ACTIONS(1562), + [anon_sym_GT2] = ACTIONS(1562), + [anon_sym_DASH2] = ACTIONS(1562), + [anon_sym_RBRACE] = ACTIONS(1562), + [anon_sym_DOT_DOT] = ACTIONS(1562), + [anon_sym_STAR2] = ACTIONS(1562), + [anon_sym_and2] = ACTIONS(1562), + [anon_sym_xor2] = ACTIONS(1562), + [anon_sym_or2] = ACTIONS(1562), + [anon_sym_not_DASHin2] = ACTIONS(1562), + [anon_sym_has2] = ACTIONS(1562), + [anon_sym_not_DASHhas2] = ACTIONS(1562), + [anon_sym_starts_DASHwith2] = ACTIONS(1562), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1562), + [anon_sym_ends_DASHwith2] = ACTIONS(1562), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1562), + [anon_sym_EQ_EQ2] = ACTIONS(1562), + [anon_sym_BANG_EQ2] = ACTIONS(1562), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ2] = ACTIONS(1562), + [anon_sym_GT_EQ2] = ACTIONS(1562), + [anon_sym_EQ_TILDE2] = ACTIONS(1562), + [anon_sym_BANG_TILDE2] = ACTIONS(1562), + [anon_sym_like2] = ACTIONS(1562), + [anon_sym_not_DASHlike2] = ACTIONS(1562), + [anon_sym_STAR_STAR2] = ACTIONS(1562), + [anon_sym_PLUS_PLUS2] = ACTIONS(1562), + [anon_sym_SLASH2] = ACTIONS(1562), + [anon_sym_mod2] = ACTIONS(1562), + [anon_sym_SLASH_SLASH2] = ACTIONS(1562), + [anon_sym_PLUS2] = ACTIONS(1562), + [anon_sym_bit_DASHshl2] = ACTIONS(1562), + [anon_sym_bit_DASHshr2] = ACTIONS(1562), + [anon_sym_bit_DASHand2] = ACTIONS(1562), + [anon_sym_bit_DASHxor2] = ACTIONS(1562), + [anon_sym_bit_DASHor2] = ACTIONS(1562), + [anon_sym_DOT_DOT2] = ACTIONS(1562), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1564), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1564), + [sym__entry_separator] = ACTIONS(1564), + [anon_sym_COLON2] = ACTIONS(1562), + [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_err_GT] = ACTIONS(1562), + [anon_sym_out_GT] = ACTIONS(1562), + [anon_sym_e_GT] = ACTIONS(1562), + [anon_sym_o_GT] = ACTIONS(1562), + [anon_sym_err_PLUSout_GT] = ACTIONS(1562), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1562), + [anon_sym_o_PLUSe_GT] = ACTIONS(1562), + [anon_sym_e_PLUSo_GT] = ACTIONS(1562), + [anon_sym_err_GT_GT] = ACTIONS(1562), + [anon_sym_out_GT_GT] = ACTIONS(1562), + [anon_sym_e_GT_GT] = ACTIONS(1562), + [anon_sym_o_GT_GT] = ACTIONS(1562), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1562), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1562), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1562), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(368)] = { + [sym_cell_path] = STATE(428), + [sym_path] = STATE(424), + [sym_comment] = STATE(368), + [aux_sym__where_predicate_lhs_repeat1] = STATE(380), + [ts_builtin_sym_end] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1444), + [anon_sym_in] = ACTIONS(1444), + [sym__newline] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_err_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_GT_PIPE] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1444), + [anon_sym_GT2] = ACTIONS(1442), + [anon_sym_DASH2] = ACTIONS(1442), + [anon_sym_STAR2] = ACTIONS(1442), + [anon_sym_and2] = ACTIONS(1444), + [anon_sym_xor2] = ACTIONS(1444), + [anon_sym_or2] = ACTIONS(1444), + [anon_sym_not_DASHin2] = ACTIONS(1444), + [anon_sym_has2] = ACTIONS(1444), + [anon_sym_not_DASHhas2] = ACTIONS(1444), + [anon_sym_starts_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1444), + [anon_sym_ends_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1444), + [anon_sym_EQ_EQ2] = ACTIONS(1444), + [anon_sym_BANG_EQ2] = ACTIONS(1444), + [anon_sym_LT2] = ACTIONS(1442), + [anon_sym_LT_EQ2] = ACTIONS(1444), + [anon_sym_GT_EQ2] = ACTIONS(1444), + [anon_sym_EQ_TILDE2] = ACTIONS(1444), + [anon_sym_BANG_TILDE2] = ACTIONS(1444), + [anon_sym_like2] = ACTIONS(1444), + [anon_sym_not_DASHlike2] = ACTIONS(1444), + [anon_sym_STAR_STAR2] = ACTIONS(1444), + [anon_sym_PLUS_PLUS2] = ACTIONS(1442), + [anon_sym_SLASH2] = ACTIONS(1442), + [anon_sym_mod2] = ACTIONS(1444), + [anon_sym_SLASH_SLASH2] = ACTIONS(1444), + [anon_sym_PLUS2] = ACTIONS(1442), + [anon_sym_bit_DASHshl2] = ACTIONS(1444), + [anon_sym_bit_DASHshr2] = ACTIONS(1444), + [anon_sym_bit_DASHand2] = ACTIONS(1444), + [anon_sym_bit_DASHxor2] = ACTIONS(1444), + [anon_sym_bit_DASHor2] = ACTIONS(1444), + [anon_sym_DOT_DOT2] = ACTIONS(1442), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), + [anon_sym_DOT2] = ACTIONS(1566), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [anon_sym_o_GT] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT] = ACTIONS(1442), + [anon_sym_err_GT_GT] = ACTIONS(1444), + [anon_sym_out_GT_GT] = ACTIONS(1444), + [anon_sym_e_GT_GT] = ACTIONS(1444), + [anon_sym_o_GT_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(369)] = { + [sym__path_suffix] = STATE(433), + [sym_comment] = STATE(369), + [ts_builtin_sym_end] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1456), [anon_sym_PLUS_EQ] = ACTIONS(1458), [anon_sym_DASH_EQ] = ACTIONS(1458), [anon_sym_STAR_EQ] = ACTIONS(1458), @@ -75813,10 +76912,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_STAR2] = ACTIONS(1458), + [anon_sym_GT2] = ACTIONS(1456), + [anon_sym_DASH2] = ACTIONS(1456), + [anon_sym_STAR2] = ACTIONS(1456), [anon_sym_and2] = ACTIONS(1458), [anon_sym_xor2] = ACTIONS(1458), [anon_sym_or2] = ACTIONS(1458), @@ -75829,7 +76927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), [anon_sym_EQ_EQ2] = ACTIONS(1458), [anon_sym_BANG_EQ2] = ACTIONS(1458), - [anon_sym_LT2] = ACTIONS(1458), + [anon_sym_LT2] = ACTIONS(1456), [anon_sym_LT_EQ2] = ACTIONS(1458), [anon_sym_GT_EQ2] = ACTIONS(1458), [anon_sym_EQ_TILDE2] = ACTIONS(1458), @@ -75837,30 +76935,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1458), [anon_sym_not_DASHlike2] = ACTIONS(1458), [anon_sym_STAR_STAR2] = ACTIONS(1458), - [anon_sym_PLUS_PLUS2] = ACTIONS(1458), - [anon_sym_SLASH2] = ACTIONS(1458), + [anon_sym_PLUS_PLUS2] = ACTIONS(1456), + [anon_sym_SLASH2] = ACTIONS(1456), [anon_sym_mod2] = ACTIONS(1458), [anon_sym_SLASH_SLASH2] = ACTIONS(1458), - [anon_sym_PLUS2] = ACTIONS(1458), + [anon_sym_PLUS2] = ACTIONS(1456), [anon_sym_bit_DASHshl2] = ACTIONS(1458), [anon_sym_bit_DASHshr2] = ACTIONS(1458), [anon_sym_bit_DASHand2] = ACTIONS(1458), [anon_sym_bit_DASHxor2] = ACTIONS(1458), [anon_sym_bit_DASHor2] = ACTIONS(1458), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [sym__entry_separator] = ACTIONS(1460), - [anon_sym_COLON2] = ACTIONS(1458), - [anon_sym_DOT2] = ACTIONS(1436), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), + [anon_sym_DOT_DOT2] = ACTIONS(1456), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), + [anon_sym_QMARK2] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_DOT2] = ACTIONS(1456), + [anon_sym_err_GT] = ACTIONS(1456), + [anon_sym_out_GT] = ACTIONS(1456), + [anon_sym_e_GT] = ACTIONS(1456), + [anon_sym_o_GT] = ACTIONS(1456), + [anon_sym_err_PLUSout_GT] = ACTIONS(1456), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1456), + [anon_sym_o_PLUSe_GT] = ACTIONS(1456), + [anon_sym_e_PLUSo_GT] = ACTIONS(1456), [anon_sym_err_GT_GT] = ACTIONS(1458), [anon_sym_out_GT_GT] = ACTIONS(1458), [anon_sym_e_GT_GT] = ACTIONS(1458), @@ -75869,807 +76967,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1458), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1458), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(364)] = { - [sym_path] = STATE(339), - [sym_comment] = STATE(364), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1524), - [anon_sym_DASH_EQ] = ACTIONS(1524), - [anon_sym_STAR_EQ] = ACTIONS(1524), - [anon_sym_SLASH_EQ] = ACTIONS(1524), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1524), - [anon_sym_in] = ACTIONS(1524), - [sym__newline] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_err_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_GT_PIPE] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1524), - [anon_sym_xor2] = ACTIONS(1524), - [anon_sym_or2] = ACTIONS(1524), - [anon_sym_not_DASHin2] = ACTIONS(1524), - [anon_sym_has2] = ACTIONS(1524), - [anon_sym_not_DASHhas2] = ACTIONS(1524), - [anon_sym_starts_DASHwith2] = ACTIONS(1524), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1524), - [anon_sym_ends_DASHwith2] = ACTIONS(1524), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1524), - [anon_sym_EQ_EQ2] = ACTIONS(1524), - [anon_sym_BANG_EQ2] = ACTIONS(1524), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1524), - [anon_sym_GT_EQ2] = ACTIONS(1524), - [anon_sym_EQ_TILDE2] = ACTIONS(1524), - [anon_sym_BANG_TILDE2] = ACTIONS(1524), - [anon_sym_like2] = ACTIONS(1524), - [anon_sym_not_DASHlike2] = ACTIONS(1524), - [anon_sym_STAR_STAR2] = ACTIONS(1524), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1524), - [anon_sym_SLASH_SLASH2] = ACTIONS(1524), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1524), - [anon_sym_bit_DASHshr2] = ACTIONS(1524), - [anon_sym_bit_DASHand2] = ACTIONS(1524), - [anon_sym_bit_DASHxor2] = ACTIONS(1524), - [anon_sym_bit_DASHor2] = ACTIONS(1524), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [sym__entry_separator] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1524), - [anon_sym_DOT2] = ACTIONS(1549), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1524), - [anon_sym_out_GT_GT] = ACTIONS(1524), - [anon_sym_e_GT_GT] = ACTIONS(1524), - [anon_sym_o_GT_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(365)] = { - [sym_comment] = STATE(365), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1478), - [anon_sym_DASH_EQ] = ACTIONS(1478), - [anon_sym_STAR_EQ] = ACTIONS(1478), - [anon_sym_SLASH_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [sym__newline] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_err_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_GT_PIPE] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1478), - [anon_sym_xor2] = ACTIONS(1478), - [anon_sym_or2] = ACTIONS(1478), - [anon_sym_not_DASHin2] = ACTIONS(1478), - [anon_sym_has2] = ACTIONS(1478), - [anon_sym_not_DASHhas2] = ACTIONS(1478), - [anon_sym_starts_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), - [anon_sym_ends_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), - [anon_sym_EQ_EQ2] = ACTIONS(1478), - [anon_sym_BANG_EQ2] = ACTIONS(1478), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1478), - [anon_sym_GT_EQ2] = ACTIONS(1478), - [anon_sym_EQ_TILDE2] = ACTIONS(1478), - [anon_sym_BANG_TILDE2] = ACTIONS(1478), - [anon_sym_like2] = ACTIONS(1478), - [anon_sym_not_DASHlike2] = ACTIONS(1478), - [anon_sym_STAR_STAR2] = ACTIONS(1478), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1478), - [anon_sym_SLASH_SLASH2] = ACTIONS(1478), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1478), - [anon_sym_bit_DASHshr2] = ACTIONS(1478), - [anon_sym_bit_DASHand2] = ACTIONS(1478), - [anon_sym_bit_DASHxor2] = ACTIONS(1478), - [anon_sym_bit_DASHor2] = ACTIONS(1478), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [sym__entry_separator] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1478), - [anon_sym_QMARK2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1478), - [anon_sym_out_GT_GT] = ACTIONS(1478), - [anon_sym_e_GT_GT] = ACTIONS(1478), - [anon_sym_o_GT_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(366)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4934), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3650), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(366), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(367)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5014), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3728), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(367), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(368)] = { - [sym_comment] = STATE(368), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1556), - [anon_sym_DASH_EQ] = ACTIONS(1556), - [anon_sym_STAR_EQ] = ACTIONS(1556), - [anon_sym_SLASH_EQ] = ACTIONS(1556), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RBRACK] = ACTIONS(1556), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1556), - [anon_sym_xor2] = ACTIONS(1556), - [anon_sym_or2] = ACTIONS(1556), - [anon_sym_not_DASHin2] = ACTIONS(1556), - [anon_sym_has2] = ACTIONS(1556), - [anon_sym_not_DASHhas2] = ACTIONS(1556), - [anon_sym_starts_DASHwith2] = ACTIONS(1556), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1556), - [anon_sym_ends_DASHwith2] = ACTIONS(1556), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1556), - [anon_sym_EQ_EQ2] = ACTIONS(1556), - [anon_sym_BANG_EQ2] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1556), - [anon_sym_GT_EQ2] = ACTIONS(1556), - [anon_sym_EQ_TILDE2] = ACTIONS(1556), - [anon_sym_BANG_TILDE2] = ACTIONS(1556), - [anon_sym_like2] = ACTIONS(1556), - [anon_sym_not_DASHlike2] = ACTIONS(1556), - [anon_sym_STAR_STAR2] = ACTIONS(1556), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1556), - [anon_sym_SLASH_SLASH2] = ACTIONS(1556), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1556), - [anon_sym_bit_DASHshr2] = ACTIONS(1556), - [anon_sym_bit_DASHand2] = ACTIONS(1556), - [anon_sym_bit_DASHxor2] = ACTIONS(1556), - [anon_sym_bit_DASHor2] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [sym__entry_separator] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(369)] = { - [sym_comment] = STATE(369), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(370)] = { - [sym_cell_path] = STATE(453), - [sym_path] = STATE(417), + [sym__match_pattern_expression] = STATE(4338), + [sym__match_pattern_value] = STATE(4736), + [sym__match_pattern_list] = STATE(4737), + [sym__match_pattern_record] = STATE(4742), + [sym_expr_parenthesized] = STATE(3970), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4670), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4671), + [sym_val_bool] = STATE(4060), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3972), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4671), + [sym__val_number_decimal] = STATE(3544), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4671), + [sym_val_filesize] = STATE(4671), + [sym_val_binary] = STATE(4671), + [sym_val_string] = STATE(4671), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_val_entry] = STATE(4777), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4671), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(3907), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(370), - [aux_sym__where_predicate_lhs_repeat1] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(1434), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1434), - [anon_sym_DASH_EQ] = ACTIONS(1434), - [anon_sym_STAR_EQ] = ACTIONS(1434), - [anon_sym_SLASH_EQ] = ACTIONS(1434), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1432), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1432), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1562), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(2153), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1421), + [aux_sym_list_body_repeat1] = STATE(530), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(371)] = { - [sym__match_pattern_expression] = STATE(4290), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4583), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3774), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(371), - [aux_sym__types_body_repeat1] = STATE(2117), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1424), - [aux_sym_list_body_repeat1] = STATE(630), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1568), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1450), + [anon_sym_DASH_EQ] = ACTIONS(1450), + [anon_sym_STAR_EQ] = ACTIONS(1450), + [anon_sym_SLASH_EQ] = ACTIONS(1450), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1450), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1448), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1448), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_COLON2] = ACTIONS(1450), + [anon_sym_QMARK2] = ACTIONS(1578), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(372)] = { [sym_comment] = STATE(372), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1570), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1580), + [anon_sym_in] = ACTIONS(1580), + [sym__newline] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_err_GT_PIPE] = ACTIONS(1580), + [anon_sym_out_GT_PIPE] = ACTIONS(1580), + [anon_sym_e_GT_PIPE] = ACTIONS(1580), + [anon_sym_o_GT_PIPE] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1580), + [anon_sym_STAR2] = ACTIONS(1580), + [anon_sym_and2] = ACTIONS(1580), + [anon_sym_xor2] = ACTIONS(1580), + [anon_sym_or2] = ACTIONS(1580), + [anon_sym_not_DASHin2] = ACTIONS(1580), + [anon_sym_has2] = ACTIONS(1580), + [anon_sym_not_DASHhas2] = ACTIONS(1580), + [anon_sym_starts_DASHwith2] = ACTIONS(1580), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1580), + [anon_sym_ends_DASHwith2] = ACTIONS(1580), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1580), + [anon_sym_EQ_EQ2] = ACTIONS(1580), + [anon_sym_BANG_EQ2] = ACTIONS(1580), + [anon_sym_LT2] = ACTIONS(1580), + [anon_sym_LT_EQ2] = ACTIONS(1580), + [anon_sym_GT_EQ2] = ACTIONS(1580), + [anon_sym_EQ_TILDE2] = ACTIONS(1580), + [anon_sym_BANG_TILDE2] = ACTIONS(1580), + [anon_sym_like2] = ACTIONS(1580), + [anon_sym_not_DASHlike2] = ACTIONS(1580), + [anon_sym_STAR_STAR2] = ACTIONS(1580), + [anon_sym_PLUS_PLUS2] = ACTIONS(1580), + [anon_sym_SLASH2] = ACTIONS(1580), + [anon_sym_mod2] = ACTIONS(1580), + [anon_sym_SLASH_SLASH2] = ACTIONS(1580), + [anon_sym_PLUS2] = ACTIONS(1580), + [anon_sym_bit_DASHshl2] = ACTIONS(1580), + [anon_sym_bit_DASHshr2] = ACTIONS(1580), + [anon_sym_bit_DASHand2] = ACTIONS(1580), + [anon_sym_bit_DASHxor2] = ACTIONS(1580), + [anon_sym_bit_DASHor2] = ACTIONS(1580), + [anon_sym_DOT_DOT2] = ACTIONS(1580), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), + [sym__entry_separator] = ACTIONS(1582), + [anon_sym_COLON2] = ACTIONS(1580), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), + [anon_sym_err_GT_GT] = ACTIONS(1580), + [anon_sym_out_GT_GT] = ACTIONS(1580), + [anon_sym_e_GT_GT] = ACTIONS(1580), + [anon_sym_o_GT_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(373)] = { [sym_comment] = STATE(373), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1438), - [anon_sym_DASH_EQ] = ACTIONS(1438), - [anon_sym_STAR_EQ] = ACTIONS(1438), - [anon_sym_SLASH_EQ] = ACTIONS(1438), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1438), - [anon_sym_in] = ACTIONS(1438), - [sym__newline] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_err_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_GT_PIPE] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1438), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1438), - [anon_sym_xor2] = ACTIONS(1438), - [anon_sym_or2] = ACTIONS(1438), - [anon_sym_not_DASHin2] = ACTIONS(1438), - [anon_sym_has2] = ACTIONS(1438), - [anon_sym_not_DASHhas2] = ACTIONS(1438), - [anon_sym_starts_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1438), - [anon_sym_ends_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1438), - [anon_sym_EQ_EQ2] = ACTIONS(1438), - [anon_sym_BANG_EQ2] = ACTIONS(1438), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1438), - [anon_sym_GT_EQ2] = ACTIONS(1438), - [anon_sym_EQ_TILDE2] = ACTIONS(1438), - [anon_sym_BANG_TILDE2] = ACTIONS(1438), - [anon_sym_like2] = ACTIONS(1438), - [anon_sym_not_DASHlike2] = ACTIONS(1438), - [anon_sym_STAR_STAR2] = ACTIONS(1438), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1438), - [anon_sym_SLASH_SLASH2] = ACTIONS(1438), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1438), - [anon_sym_bit_DASHshr2] = ACTIONS(1438), - [anon_sym_bit_DASHand2] = ACTIONS(1438), - [anon_sym_bit_DASHxor2] = ACTIONS(1438), - [anon_sym_bit_DASHor2] = ACTIONS(1438), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [sym__entry_separator] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1438), - [anon_sym_out_GT_GT] = ACTIONS(1438), - [anon_sym_e_GT_GT] = ACTIONS(1438), - [anon_sym_o_GT_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(374)] = { - [sym__path_suffix] = STATE(432), - [sym_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1448), [anon_sym_PLUS_EQ] = ACTIONS(1448), [anon_sym_DASH_EQ] = ACTIONS(1448), [anon_sym_STAR_EQ] = ACTIONS(1448), @@ -76687,9 +77226,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_STAR2] = ACTIONS(1446), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_STAR2] = ACTIONS(1448), [anon_sym_and2] = ACTIONS(1448), [anon_sym_xor2] = ACTIONS(1448), [anon_sym_or2] = ACTIONS(1448), @@ -76702,7 +77242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), [anon_sym_EQ_EQ2] = ACTIONS(1448), [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), + [anon_sym_LT2] = ACTIONS(1448), [anon_sym_LT_EQ2] = ACTIONS(1448), [anon_sym_GT_EQ2] = ACTIONS(1448), [anon_sym_EQ_TILDE2] = ACTIONS(1448), @@ -76710,30 +77250,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1448), [anon_sym_not_DASHlike2] = ACTIONS(1448), [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), + [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_SLASH2] = ACTIONS(1448), [anon_sym_mod2] = ACTIONS(1448), [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), + [anon_sym_PLUS2] = ACTIONS(1448), [anon_sym_bit_DASHshl2] = ACTIONS(1448), [anon_sym_bit_DASHshr2] = ACTIONS(1448), [anon_sym_bit_DASHand2] = ACTIONS(1448), [anon_sym_bit_DASHxor2] = ACTIONS(1448), [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [sym__entry_separator] = ACTIONS(1450), + [anon_sym_COLON2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), [anon_sym_err_GT_GT] = ACTIONS(1448), [anon_sym_out_GT_GT] = ACTIONS(1448), [anon_sym_e_GT_GT] = ACTIONS(1448), @@ -76742,1180 +77283,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(374)] = { + [sym_comment] = STATE(374), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1450), + [anon_sym_DASH_EQ] = ACTIONS(1450), + [anon_sym_STAR_EQ] = ACTIONS(1450), + [anon_sym_SLASH_EQ] = ACTIONS(1450), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1450), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1448), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1448), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_COLON2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), [anon_sym_POUND] = ACTIONS(3), }, [STATE(375)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5001), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(376)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4944), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(376), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1525), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [sym__newline] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_err_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_GT_PIPE] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1525), + [anon_sym_GT2] = ACTIONS(1523), + [anon_sym_DASH2] = ACTIONS(1523), + [anon_sym_STAR2] = ACTIONS(1523), + [anon_sym_and2] = ACTIONS(1525), + [anon_sym_xor2] = ACTIONS(1525), + [anon_sym_or2] = ACTIONS(1525), + [anon_sym_not_DASHin2] = ACTIONS(1525), + [anon_sym_has2] = ACTIONS(1525), + [anon_sym_not_DASHhas2] = ACTIONS(1525), + [anon_sym_starts_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1525), + [anon_sym_ends_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1525), + [anon_sym_EQ_EQ2] = ACTIONS(1525), + [anon_sym_BANG_EQ2] = ACTIONS(1525), + [anon_sym_LT2] = ACTIONS(1523), + [anon_sym_LT_EQ2] = ACTIONS(1525), + [anon_sym_GT_EQ2] = ACTIONS(1525), + [anon_sym_EQ_TILDE2] = ACTIONS(1525), + [anon_sym_BANG_TILDE2] = ACTIONS(1525), + [anon_sym_like2] = ACTIONS(1525), + [anon_sym_not_DASHlike2] = ACTIONS(1525), + [anon_sym_STAR_STAR2] = ACTIONS(1525), + [anon_sym_PLUS_PLUS2] = ACTIONS(1523), + [anon_sym_SLASH2] = ACTIONS(1523), + [anon_sym_mod2] = ACTIONS(1525), + [anon_sym_SLASH_SLASH2] = ACTIONS(1525), + [anon_sym_PLUS2] = ACTIONS(1523), + [anon_sym_bit_DASHshl2] = ACTIONS(1525), + [anon_sym_bit_DASHshr2] = ACTIONS(1525), + [anon_sym_bit_DASHand2] = ACTIONS(1525), + [anon_sym_bit_DASHxor2] = ACTIONS(1525), + [anon_sym_bit_DASHor2] = ACTIONS(1525), + [anon_sym_DOT_DOT2] = ACTIONS(1523), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1525), + [anon_sym_QMARK2] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_DOT2] = ACTIONS(1523), + [anon_sym_err_GT] = ACTIONS(1523), + [anon_sym_out_GT] = ACTIONS(1523), + [anon_sym_e_GT] = ACTIONS(1523), + [anon_sym_o_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT] = ACTIONS(1523), + [anon_sym_err_GT_GT] = ACTIONS(1525), + [anon_sym_out_GT_GT] = ACTIONS(1525), + [anon_sym_e_GT_GT] = ACTIONS(1525), + [anon_sym_o_GT_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(377)] = { - [sym__expr_parenthesized_immediate] = STATE(692), - [sym__immediate_decimal] = STATE(675), - [sym_val_variable] = STATE(692), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5353), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(377), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1590), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(378)] = { - [sym__expr_parenthesized_immediate] = STATE(698), - [sym__immediate_decimal] = STATE(705), - [sym_val_variable] = STATE(698), - [sym_comment] = STATE(378), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1600), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(379)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4870), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(379), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(380)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5080), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(380), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(381)] = { - [sym_path] = STATE(417), - [sym_comment] = STATE(381), - [aux_sym__where_predicate_lhs_repeat1] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_PLUS_EQ] = ACTIONS(1460), - [anon_sym_DASH_EQ] = ACTIONS(1460), - [anon_sym_STAR_EQ] = ACTIONS(1460), - [anon_sym_SLASH_EQ] = ACTIONS(1460), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1458), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1458), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1562), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(382)] = { - [sym_path] = STATE(417), - [sym_comment] = STATE(382), - [aux_sym__where_predicate_lhs_repeat1] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(1526), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1526), - [anon_sym_DASH_EQ] = ACTIONS(1526), - [anon_sym_STAR_EQ] = ACTIONS(1526), - [anon_sym_SLASH_EQ] = ACTIONS(1526), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1604), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(383)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5091), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(383), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(384)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4809), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(384), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(385)] = { - [sym_comment] = STATE(385), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(386)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4980), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(386), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(387)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4826), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(387), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(388)] = { - [sym_comment] = STATE(388), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(389)] = { - [sym__expr_parenthesized_immediate] = STATE(698), - [sym__immediate_decimal] = STATE(645), - [sym_val_variable] = STATE(698), - [sym_comment] = STATE(389), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1613), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(390)] = { - [sym_comment] = STATE(390), + [STATE(378)] = { + [sym_comment] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(1537), [anon_sym_EQ] = ACTIONS(1535), [anon_sym_PLUS_EQ] = ACTIONS(1537), [anon_sym_DASH_EQ] = ACTIONS(1537), @@ -77934,10 +77619,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), [anon_sym_GT2] = ACTIONS(1535), [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), [anon_sym_STAR2] = ACTIONS(1535), [anon_sym_and2] = ACTIONS(1537), [anon_sym_xor2] = ACTIONS(1537), @@ -77972,7 +77655,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1535), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1537), + [anon_sym_QMARK2] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1535), [anon_sym_DOT2] = ACTIONS(1535), [anon_sym_err_GT] = ACTIONS(1535), [anon_sym_out_GT] = ACTIONS(1535), @@ -77992,711 +77676,2116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(379)] = { + [sym_comment] = STATE(379), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1498), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_has2] = ACTIONS(1498), + [anon_sym_not_DASHhas2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_like2] = ACTIONS(1498), + [anon_sym_not_DASHlike2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_COLON2] = ACTIONS(1498), + [anon_sym_DOT2] = ACTIONS(1496), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(380)] = { + [sym_path] = STATE(424), + [sym_comment] = STATE(380), + [aux_sym__where_predicate_lhs_repeat1] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_err_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_GT_PIPE] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1506), + [anon_sym_xor2] = ACTIONS(1506), + [anon_sym_or2] = ACTIONS(1506), + [anon_sym_not_DASHin2] = ACTIONS(1506), + [anon_sym_has2] = ACTIONS(1506), + [anon_sym_not_DASHhas2] = ACTIONS(1506), + [anon_sym_starts_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), + [anon_sym_ends_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), + [anon_sym_EQ_EQ2] = ACTIONS(1506), + [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1506), + [anon_sym_GT_EQ2] = ACTIONS(1506), + [anon_sym_EQ_TILDE2] = ACTIONS(1506), + [anon_sym_BANG_TILDE2] = ACTIONS(1506), + [anon_sym_like2] = ACTIONS(1506), + [anon_sym_not_DASHlike2] = ACTIONS(1506), + [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1506), + [anon_sym_bit_DASHshr2] = ACTIONS(1506), + [anon_sym_bit_DASHand2] = ACTIONS(1506), + [anon_sym_bit_DASHxor2] = ACTIONS(1506), + [anon_sym_bit_DASHor2] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [anon_sym_DOT2] = ACTIONS(1566), + [anon_sym_err_GT] = ACTIONS(1504), + [anon_sym_out_GT] = ACTIONS(1504), + [anon_sym_e_GT] = ACTIONS(1504), + [anon_sym_o_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT] = ACTIONS(1504), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(381)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5084), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(381), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(382)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5234), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(382), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(383)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5094), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(383), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(384)] = { + [sym_comment] = STATE(384), + [ts_builtin_sym_end] = ACTIONS(1541), + [anon_sym_EQ] = ACTIONS(1539), + [anon_sym_PLUS_EQ] = ACTIONS(1541), + [anon_sym_DASH_EQ] = ACTIONS(1541), + [anon_sym_STAR_EQ] = ACTIONS(1541), + [anon_sym_SLASH_EQ] = ACTIONS(1541), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1541), + [anon_sym_in] = ACTIONS(1541), + [sym__newline] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_err_GT_PIPE] = ACTIONS(1541), + [anon_sym_out_GT_PIPE] = ACTIONS(1541), + [anon_sym_e_GT_PIPE] = ACTIONS(1541), + [anon_sym_o_GT_PIPE] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1541), + [anon_sym_GT2] = ACTIONS(1539), + [anon_sym_DASH2] = ACTIONS(1539), + [anon_sym_STAR2] = ACTIONS(1539), + [anon_sym_and2] = ACTIONS(1541), + [anon_sym_xor2] = ACTIONS(1541), + [anon_sym_or2] = ACTIONS(1541), + [anon_sym_not_DASHin2] = ACTIONS(1541), + [anon_sym_has2] = ACTIONS(1541), + [anon_sym_not_DASHhas2] = ACTIONS(1541), + [anon_sym_starts_DASHwith2] = ACTIONS(1541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1541), + [anon_sym_ends_DASHwith2] = ACTIONS(1541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1541), + [anon_sym_EQ_EQ2] = ACTIONS(1541), + [anon_sym_BANG_EQ2] = ACTIONS(1541), + [anon_sym_LT2] = ACTIONS(1539), + [anon_sym_LT_EQ2] = ACTIONS(1541), + [anon_sym_GT_EQ2] = ACTIONS(1541), + [anon_sym_EQ_TILDE2] = ACTIONS(1541), + [anon_sym_BANG_TILDE2] = ACTIONS(1541), + [anon_sym_like2] = ACTIONS(1541), + [anon_sym_not_DASHlike2] = ACTIONS(1541), + [anon_sym_STAR_STAR2] = ACTIONS(1541), + [anon_sym_PLUS_PLUS2] = ACTIONS(1539), + [anon_sym_SLASH2] = ACTIONS(1539), + [anon_sym_mod2] = ACTIONS(1541), + [anon_sym_SLASH_SLASH2] = ACTIONS(1541), + [anon_sym_PLUS2] = ACTIONS(1539), + [anon_sym_bit_DASHshl2] = ACTIONS(1541), + [anon_sym_bit_DASHshr2] = ACTIONS(1541), + [anon_sym_bit_DASHand2] = ACTIONS(1541), + [anon_sym_bit_DASHxor2] = ACTIONS(1541), + [anon_sym_bit_DASHor2] = ACTIONS(1541), + [anon_sym_DOT_DOT2] = ACTIONS(1539), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1541), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1541), + [anon_sym_QMARK2] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_DOT2] = ACTIONS(1539), + [anon_sym_err_GT] = ACTIONS(1539), + [anon_sym_out_GT] = ACTIONS(1539), + [anon_sym_e_GT] = ACTIONS(1539), + [anon_sym_o_GT] = ACTIONS(1539), + [anon_sym_err_PLUSout_GT] = ACTIONS(1539), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1539), + [anon_sym_o_PLUSe_GT] = ACTIONS(1539), + [anon_sym_e_PLUSo_GT] = ACTIONS(1539), + [anon_sym_err_GT_GT] = ACTIONS(1541), + [anon_sym_out_GT_GT] = ACTIONS(1541), + [anon_sym_e_GT_GT] = ACTIONS(1541), + [anon_sym_o_GT_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1541), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(385)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(4990), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(385), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(386)] = { + [sym_comment] = STATE(386), + [ts_builtin_sym_end] = ACTIONS(1529), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_PLUS_EQ] = ACTIONS(1529), + [anon_sym_DASH_EQ] = ACTIONS(1529), + [anon_sym_STAR_EQ] = ACTIONS(1529), + [anon_sym_SLASH_EQ] = ACTIONS(1529), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1529), + [anon_sym_in] = ACTIONS(1529), + [sym__newline] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_err_GT_PIPE] = ACTIONS(1529), + [anon_sym_out_GT_PIPE] = ACTIONS(1529), + [anon_sym_e_GT_PIPE] = ACTIONS(1529), + [anon_sym_o_GT_PIPE] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1529), + [anon_sym_GT2] = ACTIONS(1527), + [anon_sym_DASH2] = ACTIONS(1527), + [anon_sym_STAR2] = ACTIONS(1527), + [anon_sym_and2] = ACTIONS(1529), + [anon_sym_xor2] = ACTIONS(1529), + [anon_sym_or2] = ACTIONS(1529), + [anon_sym_not_DASHin2] = ACTIONS(1529), + [anon_sym_has2] = ACTIONS(1529), + [anon_sym_not_DASHhas2] = ACTIONS(1529), + [anon_sym_starts_DASHwith2] = ACTIONS(1529), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1529), + [anon_sym_ends_DASHwith2] = ACTIONS(1529), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1529), + [anon_sym_EQ_EQ2] = ACTIONS(1529), + [anon_sym_BANG_EQ2] = ACTIONS(1529), + [anon_sym_LT2] = ACTIONS(1527), + [anon_sym_LT_EQ2] = ACTIONS(1529), + [anon_sym_GT_EQ2] = ACTIONS(1529), + [anon_sym_EQ_TILDE2] = ACTIONS(1529), + [anon_sym_BANG_TILDE2] = ACTIONS(1529), + [anon_sym_like2] = ACTIONS(1529), + [anon_sym_not_DASHlike2] = ACTIONS(1529), + [anon_sym_STAR_STAR2] = ACTIONS(1529), + [anon_sym_PLUS_PLUS2] = ACTIONS(1527), + [anon_sym_SLASH2] = ACTIONS(1527), + [anon_sym_mod2] = ACTIONS(1529), + [anon_sym_SLASH_SLASH2] = ACTIONS(1529), + [anon_sym_PLUS2] = ACTIONS(1527), + [anon_sym_bit_DASHshl2] = ACTIONS(1529), + [anon_sym_bit_DASHshr2] = ACTIONS(1529), + [anon_sym_bit_DASHand2] = ACTIONS(1529), + [anon_sym_bit_DASHxor2] = ACTIONS(1529), + [anon_sym_bit_DASHor2] = ACTIONS(1529), + [anon_sym_DOT_DOT2] = ACTIONS(1527), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), + [anon_sym_QMARK2] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_DOT2] = ACTIONS(1527), + [anon_sym_err_GT] = ACTIONS(1527), + [anon_sym_out_GT] = ACTIONS(1527), + [anon_sym_e_GT] = ACTIONS(1527), + [anon_sym_o_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT] = ACTIONS(1527), + [anon_sym_err_GT_GT] = ACTIONS(1529), + [anon_sym_out_GT_GT] = ACTIONS(1529), + [anon_sym_e_GT_GT] = ACTIONS(1529), + [anon_sym_o_GT_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1529), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(387)] = { + [sym__expr_parenthesized_immediate] = STATE(688), + [sym__immediate_decimal] = STATE(690), + [sym_val_variable] = STATE(688), + [sym_comment] = STATE(387), + [anon_sym_in] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1602), + [anon_sym_DASH2] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_STAR2] = ACTIONS(1602), + [anon_sym_and2] = ACTIONS(1598), + [anon_sym_xor2] = ACTIONS(1598), + [anon_sym_or2] = ACTIONS(1598), + [anon_sym_not_DASHin2] = ACTIONS(1598), + [anon_sym_has2] = ACTIONS(1598), + [anon_sym_not_DASHhas2] = ACTIONS(1598), + [anon_sym_starts_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), + [anon_sym_ends_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), + [anon_sym_EQ_EQ2] = ACTIONS(1598), + [anon_sym_BANG_EQ2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1602), + [anon_sym_LT_EQ2] = ACTIONS(1598), + [anon_sym_GT_EQ2] = ACTIONS(1598), + [anon_sym_EQ_TILDE2] = ACTIONS(1598), + [anon_sym_BANG_TILDE2] = ACTIONS(1598), + [anon_sym_like2] = ACTIONS(1598), + [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1598), + [anon_sym_SLASH2] = ACTIONS(1602), + [anon_sym_mod2] = ACTIONS(1598), + [anon_sym_SLASH_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1602), + [anon_sym_bit_DASHshl2] = ACTIONS(1598), + [anon_sym_bit_DASHshr2] = ACTIONS(1598), + [anon_sym_bit_DASHand2] = ACTIONS(1598), + [anon_sym_bit_DASHxor2] = ACTIONS(1598), + [anon_sym_bit_DASHor2] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1606), + [aux_sym__immediate_decimal_token1] = ACTIONS(1608), + [aux_sym__immediate_decimal_token2] = ACTIONS(1608), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1602), + [anon_sym_out_GT] = ACTIONS(1602), + [anon_sym_e_GT] = ACTIONS(1602), + [anon_sym_o_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT] = ACTIONS(1602), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(388)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5081), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(388), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(389)] = { + [sym_comment] = STATE(389), + [ts_builtin_sym_end] = ACTIONS(1533), + [anon_sym_EQ] = ACTIONS(1531), + [anon_sym_PLUS_EQ] = ACTIONS(1533), + [anon_sym_DASH_EQ] = ACTIONS(1533), + [anon_sym_STAR_EQ] = ACTIONS(1533), + [anon_sym_SLASH_EQ] = ACTIONS(1533), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1533), + [anon_sym_in] = ACTIONS(1533), + [sym__newline] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_err_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_GT_PIPE] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1533), + [anon_sym_GT2] = ACTIONS(1531), + [anon_sym_DASH2] = ACTIONS(1531), + [anon_sym_STAR2] = ACTIONS(1531), + [anon_sym_and2] = ACTIONS(1533), + [anon_sym_xor2] = ACTIONS(1533), + [anon_sym_or2] = ACTIONS(1533), + [anon_sym_not_DASHin2] = ACTIONS(1533), + [anon_sym_has2] = ACTIONS(1533), + [anon_sym_not_DASHhas2] = ACTIONS(1533), + [anon_sym_starts_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1533), + [anon_sym_ends_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1533), + [anon_sym_EQ_EQ2] = ACTIONS(1533), + [anon_sym_BANG_EQ2] = ACTIONS(1533), + [anon_sym_LT2] = ACTIONS(1531), + [anon_sym_LT_EQ2] = ACTIONS(1533), + [anon_sym_GT_EQ2] = ACTIONS(1533), + [anon_sym_EQ_TILDE2] = ACTIONS(1533), + [anon_sym_BANG_TILDE2] = ACTIONS(1533), + [anon_sym_like2] = ACTIONS(1533), + [anon_sym_not_DASHlike2] = ACTIONS(1533), + [anon_sym_STAR_STAR2] = ACTIONS(1533), + [anon_sym_PLUS_PLUS2] = ACTIONS(1531), + [anon_sym_SLASH2] = ACTIONS(1531), + [anon_sym_mod2] = ACTIONS(1533), + [anon_sym_SLASH_SLASH2] = ACTIONS(1533), + [anon_sym_PLUS2] = ACTIONS(1531), + [anon_sym_bit_DASHshl2] = ACTIONS(1533), + [anon_sym_bit_DASHshr2] = ACTIONS(1533), + [anon_sym_bit_DASHand2] = ACTIONS(1533), + [anon_sym_bit_DASHxor2] = ACTIONS(1533), + [anon_sym_bit_DASHor2] = ACTIONS(1533), + [anon_sym_DOT_DOT2] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), + [anon_sym_QMARK2] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1531), + [anon_sym_err_GT] = ACTIONS(1531), + [anon_sym_out_GT] = ACTIONS(1531), + [anon_sym_e_GT] = ACTIONS(1531), + [anon_sym_o_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT] = ACTIONS(1531), + [anon_sym_err_GT_GT] = ACTIONS(1533), + [anon_sym_out_GT_GT] = ACTIONS(1533), + [anon_sym_e_GT_GT] = ACTIONS(1533), + [anon_sym_o_GT_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(390)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(4960), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(390), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, [STATE(391)] = { [sym_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat2] = STATE(1470), + [anon_sym_EQ] = ACTIONS(1612), + [anon_sym_PLUS_EQ] = ACTIONS(1612), + [anon_sym_DASH_EQ] = ACTIONS(1612), + [anon_sym_STAR_EQ] = ACTIONS(1612), + [anon_sym_SLASH_EQ] = ACTIONS(1612), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1612), + [anon_sym_in] = ACTIONS(1614), + [sym__newline] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_err_GT_PIPE] = ACTIONS(1614), + [anon_sym_out_GT_PIPE] = ACTIONS(1614), + [anon_sym_e_GT_PIPE] = ACTIONS(1614), + [anon_sym_o_GT_PIPE] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1614), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1614), + [anon_sym_xor2] = ACTIONS(1614), + [anon_sym_or2] = ACTIONS(1614), + [anon_sym_not_DASHin2] = ACTIONS(1614), + [anon_sym_has2] = ACTIONS(1614), + [anon_sym_not_DASHhas2] = ACTIONS(1614), + [anon_sym_starts_DASHwith2] = ACTIONS(1614), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1614), + [anon_sym_ends_DASHwith2] = ACTIONS(1614), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1614), + [anon_sym_EQ_EQ2] = ACTIONS(1614), + [anon_sym_BANG_EQ2] = ACTIONS(1614), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1614), + [anon_sym_GT_EQ2] = ACTIONS(1614), + [anon_sym_EQ_TILDE2] = ACTIONS(1614), + [anon_sym_BANG_TILDE2] = ACTIONS(1614), + [anon_sym_like2] = ACTIONS(1614), + [anon_sym_not_DASHlike2] = ACTIONS(1614), + [anon_sym_STAR_STAR2] = ACTIONS(1614), + [anon_sym_PLUS_PLUS2] = ACTIONS(1614), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1614), + [anon_sym_SLASH_SLASH2] = ACTIONS(1614), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1614), + [anon_sym_bit_DASHshr2] = ACTIONS(1614), + [anon_sym_bit_DASHand2] = ACTIONS(1614), + [anon_sym_bit_DASHxor2] = ACTIONS(1614), + [anon_sym_bit_DASHor2] = ACTIONS(1614), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym__entry_separator] = ACTIONS(1622), + [anon_sym_COLON2] = ACTIONS(1624), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1614), + [anon_sym_out_GT_GT] = ACTIONS(1614), + [anon_sym_e_GT_GT] = ACTIONS(1614), + [anon_sym_o_GT_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(392)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5242), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1545), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1545), - [anon_sym_DASH_EQ] = ACTIONS(1545), - [anon_sym_STAR_EQ] = ACTIONS(1545), - [anon_sym_SLASH_EQ] = ACTIONS(1545), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1626), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(393)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(4975), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_STAR_EQ] = ACTIONS(1468), - [anon_sym_SLASH_EQ] = ACTIONS(1468), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(394)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5200), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(395)] = { [sym_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1514), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1547), + [anon_sym_PLUS_EQ] = ACTIONS(1549), + [anon_sym_DASH_EQ] = ACTIONS(1549), + [anon_sym_STAR_EQ] = ACTIONS(1549), + [anon_sym_SLASH_EQ] = ACTIONS(1549), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1549), + [anon_sym_in] = ACTIONS(1549), + [sym__newline] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_err_GT_PIPE] = ACTIONS(1549), + [anon_sym_out_GT_PIPE] = ACTIONS(1549), + [anon_sym_e_GT_PIPE] = ACTIONS(1549), + [anon_sym_o_GT_PIPE] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_GT2] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_STAR2] = ACTIONS(1547), + [anon_sym_and2] = ACTIONS(1549), + [anon_sym_xor2] = ACTIONS(1549), + [anon_sym_or2] = ACTIONS(1549), + [anon_sym_not_DASHin2] = ACTIONS(1549), + [anon_sym_has2] = ACTIONS(1549), + [anon_sym_not_DASHhas2] = ACTIONS(1549), + [anon_sym_starts_DASHwith2] = ACTIONS(1549), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1549), + [anon_sym_ends_DASHwith2] = ACTIONS(1549), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1549), + [anon_sym_EQ_EQ2] = ACTIONS(1549), + [anon_sym_BANG_EQ2] = ACTIONS(1549), + [anon_sym_LT2] = ACTIONS(1547), + [anon_sym_LT_EQ2] = ACTIONS(1549), + [anon_sym_GT_EQ2] = ACTIONS(1549), + [anon_sym_EQ_TILDE2] = ACTIONS(1549), + [anon_sym_BANG_TILDE2] = ACTIONS(1549), + [anon_sym_like2] = ACTIONS(1549), + [anon_sym_not_DASHlike2] = ACTIONS(1549), + [anon_sym_STAR_STAR2] = ACTIONS(1549), + [anon_sym_PLUS_PLUS2] = ACTIONS(1547), + [anon_sym_SLASH2] = ACTIONS(1547), + [anon_sym_mod2] = ACTIONS(1549), + [anon_sym_SLASH_SLASH2] = ACTIONS(1549), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_bit_DASHshl2] = ACTIONS(1549), + [anon_sym_bit_DASHshr2] = ACTIONS(1549), + [anon_sym_bit_DASHand2] = ACTIONS(1549), + [anon_sym_bit_DASHxor2] = ACTIONS(1549), + [anon_sym_bit_DASHor2] = ACTIONS(1549), + [anon_sym_DOT_DOT2] = ACTIONS(1547), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), + [anon_sym_COLON2] = ACTIONS(1549), + [anon_sym_DOT2] = ACTIONS(1547), + [anon_sym_err_GT] = ACTIONS(1547), + [anon_sym_out_GT] = ACTIONS(1547), + [anon_sym_e_GT] = ACTIONS(1547), + [anon_sym_o_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT] = ACTIONS(1547), + [anon_sym_err_GT_GT] = ACTIONS(1549), + [anon_sym_out_GT_GT] = ACTIONS(1549), + [anon_sym_e_GT_GT] = ACTIONS(1549), + [anon_sym_o_GT_GT] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), [anon_sym_POUND] = ACTIONS(3), }, [STATE(396)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5056), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(396), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1521), + [anon_sym_EQ] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1521), + [anon_sym_in] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_GT2] = ACTIONS(1519), + [anon_sym_DASH2] = ACTIONS(1519), + [anon_sym_STAR2] = ACTIONS(1519), + [anon_sym_and2] = ACTIONS(1521), + [anon_sym_xor2] = ACTIONS(1521), + [anon_sym_or2] = ACTIONS(1521), + [anon_sym_not_DASHin2] = ACTIONS(1521), + [anon_sym_has2] = ACTIONS(1521), + [anon_sym_not_DASHhas2] = ACTIONS(1521), + [anon_sym_starts_DASHwith2] = ACTIONS(1521), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1521), + [anon_sym_ends_DASHwith2] = ACTIONS(1521), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1521), + [anon_sym_EQ_EQ2] = ACTIONS(1521), + [anon_sym_BANG_EQ2] = ACTIONS(1521), + [anon_sym_LT2] = ACTIONS(1519), + [anon_sym_LT_EQ2] = ACTIONS(1521), + [anon_sym_GT_EQ2] = ACTIONS(1521), + [anon_sym_EQ_TILDE2] = ACTIONS(1521), + [anon_sym_BANG_TILDE2] = ACTIONS(1521), + [anon_sym_like2] = ACTIONS(1521), + [anon_sym_not_DASHlike2] = ACTIONS(1521), + [anon_sym_STAR_STAR2] = ACTIONS(1521), + [anon_sym_PLUS_PLUS2] = ACTIONS(1519), + [anon_sym_SLASH2] = ACTIONS(1519), + [anon_sym_mod2] = ACTIONS(1521), + [anon_sym_SLASH_SLASH2] = ACTIONS(1521), + [anon_sym_PLUS2] = ACTIONS(1519), + [anon_sym_bit_DASHshl2] = ACTIONS(1521), + [anon_sym_bit_DASHshr2] = ACTIONS(1521), + [anon_sym_bit_DASHand2] = ACTIONS(1521), + [anon_sym_bit_DASHxor2] = ACTIONS(1521), + [anon_sym_bit_DASHor2] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [anon_sym_QMARK2] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_DOT2] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(397)] = { + [sym_path] = STATE(424), [sym_comment] = STATE(397), - [aux_sym__types_body_repeat2] = STATE(1475), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1617), - [anon_sym_DASH_EQ] = ACTIONS(1617), - [anon_sym_STAR_EQ] = ACTIONS(1617), - [anon_sym_SLASH_EQ] = ACTIONS(1617), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1617), - [anon_sym_in] = ACTIONS(1619), - [sym__newline] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_err_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_GT_PIPE] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1619), - [anon_sym_xor2] = ACTIONS(1619), - [anon_sym_or2] = ACTIONS(1619), - [anon_sym_not_DASHin2] = ACTIONS(1619), - [anon_sym_has2] = ACTIONS(1619), - [anon_sym_not_DASHhas2] = ACTIONS(1619), - [anon_sym_starts_DASHwith2] = ACTIONS(1619), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1619), - [anon_sym_ends_DASHwith2] = ACTIONS(1619), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1619), - [anon_sym_EQ_EQ2] = ACTIONS(1619), - [anon_sym_BANG_EQ2] = ACTIONS(1619), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1619), - [anon_sym_GT_EQ2] = ACTIONS(1619), - [anon_sym_EQ_TILDE2] = ACTIONS(1619), - [anon_sym_BANG_TILDE2] = ACTIONS(1619), - [anon_sym_like2] = ACTIONS(1619), - [anon_sym_not_DASHlike2] = ACTIONS(1619), - [anon_sym_STAR_STAR2] = ACTIONS(1619), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1619), - [anon_sym_SLASH_SLASH2] = ACTIONS(1619), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1619), - [anon_sym_bit_DASHshr2] = ACTIONS(1619), - [anon_sym_bit_DASHand2] = ACTIONS(1619), - [anon_sym_bit_DASHxor2] = ACTIONS(1619), - [anon_sym_bit_DASHor2] = ACTIONS(1619), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [sym__entry_separator] = ACTIONS(1627), - [anon_sym_COLON2] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1619), - [anon_sym_out_GT_GT] = ACTIONS(1619), - [anon_sym_e_GT_GT] = ACTIONS(1619), - [anon_sym_o_GT_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym__where_predicate_lhs_repeat1] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1510), + [sym__newline] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_err_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_GT_PIPE] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), + [anon_sym_GT2] = ACTIONS(1508), + [anon_sym_DASH2] = ACTIONS(1508), + [anon_sym_STAR2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1510), + [anon_sym_xor2] = ACTIONS(1510), + [anon_sym_or2] = ACTIONS(1510), + [anon_sym_not_DASHin2] = ACTIONS(1510), + [anon_sym_has2] = ACTIONS(1510), + [anon_sym_not_DASHhas2] = ACTIONS(1510), + [anon_sym_starts_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), + [anon_sym_ends_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), + [anon_sym_EQ_EQ2] = ACTIONS(1510), + [anon_sym_BANG_EQ2] = ACTIONS(1510), + [anon_sym_LT2] = ACTIONS(1508), + [anon_sym_LT_EQ2] = ACTIONS(1510), + [anon_sym_GT_EQ2] = ACTIONS(1510), + [anon_sym_EQ_TILDE2] = ACTIONS(1510), + [anon_sym_BANG_TILDE2] = ACTIONS(1510), + [anon_sym_like2] = ACTIONS(1510), + [anon_sym_not_DASHlike2] = ACTIONS(1510), + [anon_sym_STAR_STAR2] = ACTIONS(1510), + [anon_sym_PLUS_PLUS2] = ACTIONS(1508), + [anon_sym_SLASH2] = ACTIONS(1508), + [anon_sym_mod2] = ACTIONS(1510), + [anon_sym_SLASH_SLASH2] = ACTIONS(1510), + [anon_sym_PLUS2] = ACTIONS(1508), + [anon_sym_bit_DASHshl2] = ACTIONS(1510), + [anon_sym_bit_DASHshr2] = ACTIONS(1510), + [anon_sym_bit_DASHand2] = ACTIONS(1510), + [anon_sym_bit_DASHxor2] = ACTIONS(1510), + [anon_sym_bit_DASHor2] = ACTIONS(1510), + [anon_sym_DOT_DOT2] = ACTIONS(1508), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), + [anon_sym_DOT2] = ACTIONS(1630), + [anon_sym_err_GT] = ACTIONS(1508), + [anon_sym_out_GT] = ACTIONS(1508), + [anon_sym_e_GT] = ACTIONS(1508), + [anon_sym_o_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT] = ACTIONS(1508), + [anon_sym_err_GT_GT] = ACTIONS(1510), + [anon_sym_out_GT_GT] = ACTIONS(1510), + [anon_sym_e_GT_GT] = ACTIONS(1510), + [anon_sym_o_GT_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(398)] = { - [sym__expr_parenthesized_immediate] = STATE(742), - [sym__immediate_decimal] = STATE(959), - [sym_val_variable] = STATE(742), + [sym__expr_parenthesized_immediate] = STATE(688), + [sym__immediate_decimal] = STATE(528), + [sym_val_variable] = STATE(688), [sym_comment] = STATE(398), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1637), - [aux_sym__immediate_decimal_token4] = ACTIONS(1637), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [sym__unquoted_pattern] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1602), + [anon_sym_DASH2] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_STAR2] = ACTIONS(1602), + [anon_sym_and2] = ACTIONS(1598), + [anon_sym_xor2] = ACTIONS(1598), + [anon_sym_or2] = ACTIONS(1598), + [anon_sym_not_DASHin2] = ACTIONS(1598), + [anon_sym_has2] = ACTIONS(1598), + [anon_sym_not_DASHhas2] = ACTIONS(1598), + [anon_sym_starts_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), + [anon_sym_ends_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), + [anon_sym_EQ_EQ2] = ACTIONS(1598), + [anon_sym_BANG_EQ2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1602), + [anon_sym_LT_EQ2] = ACTIONS(1598), + [anon_sym_GT_EQ2] = ACTIONS(1598), + [anon_sym_EQ_TILDE2] = ACTIONS(1598), + [anon_sym_BANG_TILDE2] = ACTIONS(1598), + [anon_sym_like2] = ACTIONS(1598), + [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1598), + [anon_sym_SLASH2] = ACTIONS(1602), + [anon_sym_mod2] = ACTIONS(1598), + [anon_sym_SLASH_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1602), + [anon_sym_bit_DASHshl2] = ACTIONS(1598), + [anon_sym_bit_DASHshr2] = ACTIONS(1598), + [anon_sym_bit_DASHand2] = ACTIONS(1598), + [anon_sym_bit_DASHxor2] = ACTIONS(1598), + [anon_sym_bit_DASHor2] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1608), + [aux_sym__immediate_decimal_token2] = ACTIONS(1608), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1602), + [anon_sym_out_GT] = ACTIONS(1602), + [anon_sym_e_GT] = ACTIONS(1602), + [anon_sym_o_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT] = ACTIONS(1602), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [sym__unquoted_pattern] = ACTIONS(1635), [anon_sym_POUND] = ACTIONS(3), }, [STATE(399)] = { - [sym_cell_path] = STATE(466), - [sym_path] = STATE(441), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5252), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(399), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_COLON2] = ACTIONS(1641), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(400)] = { - [sym__expr_parenthesized_immediate] = STATE(721), - [sym__immediate_decimal] = STATE(722), - [sym_val_variable] = STATE(721), + [sym__expr_parenthesized_immediate] = STATE(686), + [sym__immediate_decimal] = STATE(687), + [sym_val_variable] = STATE(686), [sym_comment] = STATE(400), + [anon_sym_in] = ACTIONS(1639), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1641), + [anon_sym_DASH2] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1641), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1641), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_like2] = ACTIONS(1639), + [anon_sym_not_DASHlike2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1641), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1641), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(1643), + [aux_sym__immediate_decimal_token1] = ACTIONS(1608), + [aux_sym__immediate_decimal_token2] = ACTIONS(1608), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [anon_sym_err_GT_GT] = ACTIONS(1639), + [anon_sym_out_GT_GT] = ACTIONS(1639), + [anon_sym_e_GT_GT] = ACTIONS(1639), + [anon_sym_o_GT_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(401)] = { + [sym_comment] = STATE(401), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1564), + [anon_sym_in] = ACTIONS(1564), + [sym__newline] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_err_GT_PIPE] = ACTIONS(1564), + [anon_sym_out_GT_PIPE] = ACTIONS(1564), + [anon_sym_e_GT_PIPE] = ACTIONS(1564), + [anon_sym_o_GT_PIPE] = ACTIONS(1564), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1564), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1564), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1564), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_GT2] = ACTIONS(1562), + [anon_sym_DASH2] = ACTIONS(1562), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_STAR2] = ACTIONS(1562), + [anon_sym_and2] = ACTIONS(1564), + [anon_sym_xor2] = ACTIONS(1564), + [anon_sym_or2] = ACTIONS(1564), + [anon_sym_not_DASHin2] = ACTIONS(1564), + [anon_sym_has2] = ACTIONS(1564), + [anon_sym_not_DASHhas2] = ACTIONS(1564), + [anon_sym_starts_DASHwith2] = ACTIONS(1564), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1564), + [anon_sym_ends_DASHwith2] = ACTIONS(1564), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1564), + [anon_sym_EQ_EQ2] = ACTIONS(1564), + [anon_sym_BANG_EQ2] = ACTIONS(1564), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ2] = ACTIONS(1564), + [anon_sym_GT_EQ2] = ACTIONS(1564), + [anon_sym_EQ_TILDE2] = ACTIONS(1564), + [anon_sym_BANG_TILDE2] = ACTIONS(1564), + [anon_sym_like2] = ACTIONS(1564), + [anon_sym_not_DASHlike2] = ACTIONS(1564), + [anon_sym_STAR_STAR2] = ACTIONS(1564), + [anon_sym_PLUS_PLUS2] = ACTIONS(1562), + [anon_sym_SLASH2] = ACTIONS(1562), + [anon_sym_mod2] = ACTIONS(1564), + [anon_sym_SLASH_SLASH2] = ACTIONS(1564), + [anon_sym_PLUS2] = ACTIONS(1562), + [anon_sym_bit_DASHshl2] = ACTIONS(1564), + [anon_sym_bit_DASHshr2] = ACTIONS(1564), + [anon_sym_bit_DASHand2] = ACTIONS(1564), + [anon_sym_bit_DASHxor2] = ACTIONS(1564), + [anon_sym_bit_DASHor2] = ACTIONS(1564), + [anon_sym_DOT_DOT2] = ACTIONS(1562), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1564), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1564), + [anon_sym_COLON2] = ACTIONS(1564), + [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_err_GT] = ACTIONS(1562), + [anon_sym_out_GT] = ACTIONS(1562), + [anon_sym_e_GT] = ACTIONS(1562), + [anon_sym_o_GT] = ACTIONS(1562), + [anon_sym_err_PLUSout_GT] = ACTIONS(1562), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1562), + [anon_sym_o_PLUSe_GT] = ACTIONS(1562), + [anon_sym_e_PLUSo_GT] = ACTIONS(1562), + [anon_sym_err_GT_GT] = ACTIONS(1564), + [anon_sym_out_GT_GT] = ACTIONS(1564), + [anon_sym_e_GT_GT] = ACTIONS(1564), + [anon_sym_o_GT_GT] = ACTIONS(1564), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1564), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1564), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1564), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(402)] = { + [sym_cell_path] = STATE(483), + [sym_path] = STATE(458), + [sym_comment] = STATE(402), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_GT2] = ACTIONS(1647), + [anon_sym_DASH2] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_EQ_GT] = ACTIONS(1645), + [anon_sym_STAR2] = ACTIONS(1647), + [anon_sym_and2] = ACTIONS(1645), + [anon_sym_xor2] = ACTIONS(1645), + [anon_sym_or2] = ACTIONS(1645), + [anon_sym_not_DASHin2] = ACTIONS(1645), + [anon_sym_has2] = ACTIONS(1645), + [anon_sym_not_DASHhas2] = ACTIONS(1645), + [anon_sym_starts_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1645), + [anon_sym_ends_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1645), + [anon_sym_EQ_EQ2] = ACTIONS(1645), + [anon_sym_BANG_EQ2] = ACTIONS(1645), + [anon_sym_LT2] = ACTIONS(1647), + [anon_sym_LT_EQ2] = ACTIONS(1645), + [anon_sym_GT_EQ2] = ACTIONS(1645), + [anon_sym_EQ_TILDE2] = ACTIONS(1645), + [anon_sym_BANG_TILDE2] = ACTIONS(1645), + [anon_sym_like2] = ACTIONS(1645), + [anon_sym_not_DASHlike2] = ACTIONS(1645), + [anon_sym_STAR_STAR2] = ACTIONS(1645), + [anon_sym_PLUS_PLUS2] = ACTIONS(1645), + [anon_sym_SLASH2] = ACTIONS(1647), + [anon_sym_mod2] = ACTIONS(1645), + [anon_sym_SLASH_SLASH2] = ACTIONS(1645), + [anon_sym_PLUS2] = ACTIONS(1647), + [anon_sym_bit_DASHshl2] = ACTIONS(1645), + [anon_sym_bit_DASHshr2] = ACTIONS(1645), + [anon_sym_bit_DASHand2] = ACTIONS(1645), + [anon_sym_bit_DASHxor2] = ACTIONS(1645), + [anon_sym_bit_DASHor2] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1647), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [anon_sym_COLON2] = ACTIONS(1645), + [anon_sym_DOT2] = ACTIONS(1649), + [anon_sym_err_GT] = ACTIONS(1647), + [anon_sym_out_GT] = ACTIONS(1647), + [anon_sym_e_GT] = ACTIONS(1647), + [anon_sym_o_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT] = ACTIONS(1647), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(403)] = { + [sym__expr_parenthesized_immediate] = STATE(748), + [sym__immediate_decimal] = STATE(930), + [sym_val_variable] = STATE(748), + [sym_comment] = STATE(403), + [anon_sym_in] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_like2] = ACTIONS(1651), + [anon_sym_not_DASHlike2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [aux_sym__immediate_decimal_token1] = ACTIONS(1655), + [aux_sym__immediate_decimal_token2] = ACTIONS(1655), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(404)] = { + [sym_cell_path] = STATE(471), + [sym_path] = STATE(458), + [sym_comment] = STATE(404), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = ACTIONS(1657), + [sym__newline] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_err_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_GT_PIPE] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1659), + [anon_sym_DASH2] = ACTIONS(1657), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_EQ_GT] = ACTIONS(1657), + [anon_sym_STAR2] = ACTIONS(1659), + [anon_sym_and2] = ACTIONS(1657), + [anon_sym_xor2] = ACTIONS(1657), + [anon_sym_or2] = ACTIONS(1657), + [anon_sym_not_DASHin2] = ACTIONS(1657), + [anon_sym_has2] = ACTIONS(1657), + [anon_sym_not_DASHhas2] = ACTIONS(1657), + [anon_sym_starts_DASHwith2] = ACTIONS(1657), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1657), + [anon_sym_ends_DASHwith2] = ACTIONS(1657), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1657), + [anon_sym_EQ_EQ2] = ACTIONS(1657), + [anon_sym_BANG_EQ2] = ACTIONS(1657), + [anon_sym_LT2] = ACTIONS(1659), + [anon_sym_LT_EQ2] = ACTIONS(1657), + [anon_sym_GT_EQ2] = ACTIONS(1657), + [anon_sym_EQ_TILDE2] = ACTIONS(1657), + [anon_sym_BANG_TILDE2] = ACTIONS(1657), + [anon_sym_like2] = ACTIONS(1657), + [anon_sym_not_DASHlike2] = ACTIONS(1657), + [anon_sym_STAR_STAR2] = ACTIONS(1657), + [anon_sym_PLUS_PLUS2] = ACTIONS(1657), + [anon_sym_SLASH2] = ACTIONS(1659), + [anon_sym_mod2] = ACTIONS(1657), + [anon_sym_SLASH_SLASH2] = ACTIONS(1657), + [anon_sym_PLUS2] = ACTIONS(1659), + [anon_sym_bit_DASHshl2] = ACTIONS(1657), + [anon_sym_bit_DASHshr2] = ACTIONS(1657), + [anon_sym_bit_DASHand2] = ACTIONS(1657), + [anon_sym_bit_DASHxor2] = ACTIONS(1657), + [anon_sym_bit_DASHor2] = ACTIONS(1657), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1657), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1657), + [anon_sym_COLON2] = ACTIONS(1657), + [anon_sym_DOT2] = ACTIONS(1649), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1657), + [anon_sym_out_GT_GT] = ACTIONS(1657), + [anon_sym_e_GT_GT] = ACTIONS(1657), + [anon_sym_o_GT_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(405)] = { + [sym_comment] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1450), + [anon_sym_DASH_EQ] = ACTIONS(1450), + [anon_sym_STAR_EQ] = ACTIONS(1450), + [anon_sym_SLASH_EQ] = ACTIONS(1450), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1450), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_STAR2] = ACTIONS(1448), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1448), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1661), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(406)] = { + [sym_comment] = STATE(406), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1582), [anon_sym_in] = ACTIONS(1582), [sym__newline] = ACTIONS(1582), [anon_sym_SEMI] = ACTIONS(1582), @@ -78710,12 +79799,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1580), [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1586), + [anon_sym_STAR2] = ACTIONS(1580), [anon_sym_and2] = ACTIONS(1582), [anon_sym_xor2] = ACTIONS(1582), [anon_sym_or2] = ACTIONS(1582), @@ -78728,37 +79815,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), [anon_sym_EQ_EQ2] = ACTIONS(1582), [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), + [anon_sym_LT2] = ACTIONS(1580), [anon_sym_LT_EQ2] = ACTIONS(1582), [anon_sym_GT_EQ2] = ACTIONS(1582), [anon_sym_EQ_TILDE2] = ACTIONS(1582), [anon_sym_BANG_TILDE2] = ACTIONS(1582), [anon_sym_like2] = ACTIONS(1582), [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1588), [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), + [anon_sym_PLUS_PLUS2] = ACTIONS(1580), + [anon_sym_SLASH2] = ACTIONS(1580), [anon_sym_mod2] = ACTIONS(1582), [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), + [anon_sym_PLUS2] = ACTIONS(1580), [anon_sym_bit_DASHshl2] = ACTIONS(1582), [anon_sym_bit_DASHshr2] = ACTIONS(1582), [anon_sym_bit_DASHand2] = ACTIONS(1582), [anon_sym_bit_DASHxor2] = ACTIONS(1582), [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), + [anon_sym_DOT_DOT2] = ACTIONS(1580), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), + [anon_sym_COLON2] = ACTIONS(1582), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), [anon_sym_err_GT_GT] = ACTIONS(1582), [anon_sym_out_GT_GT] = ACTIONS(1582), [anon_sym_e_GT_GT] = ACTIONS(1582), @@ -78769,549 +79855,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(401)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(673), - [sym_val_variable] = STATE(929), - [sym_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1653), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(402)] = { - [sym_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1659), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(403)] = { - [sym__expr_parenthesized_immediate] = STATE(723), - [sym__immediate_decimal] = STATE(896), - [sym_val_variable] = STATE(723), - [sym_comment] = STATE(403), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(404)] = { - [sym_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(405)] = { - [sym_comment] = STATE(405), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(406)] = { - [sym__path_suffix] = STATE(437), - [sym_comment] = STATE(406), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1663), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(407)] = { - [sym__expr_parenthesized_immediate] = STATE(723), - [sym__immediate_decimal] = STATE(954), - [sym_val_variable] = STATE(723), + [sym__expr_parenthesized_immediate] = STATE(746), + [sym__immediate_decimal] = STATE(747), + [sym_val_variable] = STATE(746), [sym_comment] = STATE(407), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1637), - [aux_sym__immediate_decimal_token4] = ACTIONS(1637), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_in] = ACTIONS(1663), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1665), + [anon_sym_DASH2] = ACTIONS(1665), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1665), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_has2] = ACTIONS(1663), + [anon_sym_not_DASHhas2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1665), + [anon_sym_LT_EQ2] = ACTIONS(1663), + [anon_sym_GT_EQ2] = ACTIONS(1663), + [anon_sym_EQ_TILDE2] = ACTIONS(1663), + [anon_sym_BANG_TILDE2] = ACTIONS(1663), + [anon_sym_like2] = ACTIONS(1663), + [anon_sym_not_DASHlike2] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1665), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1665), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(1655), + [aux_sym__immediate_decimal_token2] = ACTIONS(1655), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1665), + [anon_sym_out_GT] = ACTIONS(1665), + [anon_sym_e_GT] = ACTIONS(1665), + [anon_sym_o_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT] = ACTIONS(1665), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), [anon_sym_POUND] = ACTIONS(3), }, [STATE(408)] = { - [sym__expr_parenthesized_immediate] = STATE(736), - [sym__immediate_decimal] = STATE(737), - [sym_val_variable] = STATE(736), + [sym__expr_parenthesized_immediate] = STATE(742), + [sym__immediate_decimal] = STATE(743), + [sym_val_variable] = STATE(742), [sym_comment] = STATE(408), [anon_sym_in] = ACTIONS(1667), [sym__newline] = ACTIONS(1667), @@ -79326,7 +79950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1600), [anon_sym_GT2] = ACTIONS(1669), [anon_sym_DASH2] = ACTIONS(1669), [anon_sym_LBRACE] = ACTIONS(1667), @@ -79351,7 +79975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1667), [anon_sym_like2] = ACTIONS(1667), [anon_sym_not_DASHlike2] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1588), + [anon_sym_LPAREN2] = ACTIONS(1604), [anon_sym_STAR_STAR2] = ACTIONS(1667), [anon_sym_PLUS_PLUS2] = ACTIONS(1667), [anon_sym_SLASH2] = ACTIONS(1669), @@ -79363,10 +79987,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1667), [anon_sym_bit_DASHxor2] = ACTIONS(1667), [anon_sym_bit_DASHor2] = ACTIONS(1667), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), + [aux_sym__immediate_decimal_token1] = ACTIONS(1655), + [aux_sym__immediate_decimal_token2] = ACTIONS(1655), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), [anon_sym_err_GT] = ACTIONS(1669), [anon_sym_out_GT] = ACTIONS(1669), [anon_sym_e_GT] = ACTIONS(1669), @@ -79386,995 +80010,999 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(409)] = { - [sym__expr_parenthesized_immediate] = STATE(738), - [sym__immediate_decimal] = STATE(739), - [sym_val_variable] = STATE(738), + [sym__path_suffix] = STATE(444), [sym_comment] = STATE(409), - [anon_sym_in] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_has2] = ACTIONS(1671), - [anon_sym_not_DASHhas2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_like2] = ACTIONS(1671), - [anon_sym_not_DASHlike2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1458), + [sym__newline] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_err_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_GT_PIPE] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_GT2] = ACTIONS(1456), + [anon_sym_DASH2] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_EQ_GT] = ACTIONS(1458), + [anon_sym_STAR2] = ACTIONS(1456), + [anon_sym_and2] = ACTIONS(1458), + [anon_sym_xor2] = ACTIONS(1458), + [anon_sym_or2] = ACTIONS(1458), + [anon_sym_not_DASHin2] = ACTIONS(1458), + [anon_sym_has2] = ACTIONS(1458), + [anon_sym_not_DASHhas2] = ACTIONS(1458), + [anon_sym_starts_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1458), + [anon_sym_ends_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), + [anon_sym_EQ_EQ2] = ACTIONS(1458), + [anon_sym_BANG_EQ2] = ACTIONS(1458), + [anon_sym_LT2] = ACTIONS(1456), + [anon_sym_LT_EQ2] = ACTIONS(1458), + [anon_sym_GT_EQ2] = ACTIONS(1458), + [anon_sym_EQ_TILDE2] = ACTIONS(1458), + [anon_sym_BANG_TILDE2] = ACTIONS(1458), + [anon_sym_like2] = ACTIONS(1458), + [anon_sym_not_DASHlike2] = ACTIONS(1458), + [anon_sym_STAR_STAR2] = ACTIONS(1458), + [anon_sym_PLUS_PLUS2] = ACTIONS(1458), + [anon_sym_SLASH2] = ACTIONS(1456), + [anon_sym_mod2] = ACTIONS(1458), + [anon_sym_SLASH_SLASH2] = ACTIONS(1458), + [anon_sym_PLUS2] = ACTIONS(1456), + [anon_sym_bit_DASHshl2] = ACTIONS(1458), + [anon_sym_bit_DASHshr2] = ACTIONS(1458), + [anon_sym_bit_DASHand2] = ACTIONS(1458), + [anon_sym_bit_DASHxor2] = ACTIONS(1458), + [anon_sym_bit_DASHor2] = ACTIONS(1458), + [anon_sym_DOT_DOT2] = ACTIONS(1456), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), + [anon_sym_COLON2] = ACTIONS(1458), + [anon_sym_QMARK2] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_DOT2] = ACTIONS(1456), + [anon_sym_err_GT] = ACTIONS(1456), + [anon_sym_out_GT] = ACTIONS(1456), + [anon_sym_e_GT] = ACTIONS(1456), + [anon_sym_o_GT] = ACTIONS(1456), + [anon_sym_err_PLUSout_GT] = ACTIONS(1456), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1456), + [anon_sym_o_PLUSe_GT] = ACTIONS(1456), + [anon_sym_e_PLUSo_GT] = ACTIONS(1456), + [anon_sym_err_GT_GT] = ACTIONS(1458), + [anon_sym_out_GT_GT] = ACTIONS(1458), + [anon_sym_e_GT_GT] = ACTIONS(1458), + [anon_sym_o_GT_GT] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(410)] = { - [sym__expr_parenthesized_immediate] = STATE(740), - [sym__immediate_decimal] = STATE(741), - [sym_val_variable] = STATE(740), + [sym__expr_parenthesized_immediate] = STATE(748), + [sym__immediate_decimal] = STATE(961), + [sym_val_variable] = STATE(748), [sym_comment] = STATE(410), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_like2] = ACTIONS(1651), + [anon_sym_not_DASHlike2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [aux_sym__immediate_decimal_token1] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token3] = ACTIONS(1677), + [aux_sym__immediate_decimal_token4] = ACTIONS(1677), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [sym__unquoted_pattern] = ACTIONS(1679), [anon_sym_POUND] = ACTIONS(3), }, [STATE(411)] = { - [sym__expr_parenthesized_immediate] = STATE(742), - [sym__immediate_decimal] = STATE(925), - [sym_val_variable] = STATE(742), + [sym__expr_parenthesized_immediate] = STATE(728), + [sym__immediate_decimal] = STATE(729), + [sym_val_variable] = STATE(728), [sym_comment] = STATE(411), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1639), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1641), + [anon_sym_DASH2] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1641), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1641), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_like2] = ACTIONS(1639), + [anon_sym_not_DASHlike2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1641), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1641), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [aux_sym__immediate_decimal_token1] = ACTIONS(1655), + [aux_sym__immediate_decimal_token2] = ACTIONS(1655), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [anon_sym_err_GT_GT] = ACTIONS(1639), + [anon_sym_out_GT_GT] = ACTIONS(1639), + [anon_sym_e_GT_GT] = ACTIONS(1639), + [anon_sym_o_GT_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(3), }, [STATE(412)] = { - [sym_cell_path] = STATE(465), - [sym_path] = STATE(441), + [sym__expr_parenthesized_immediate] = STATE(744), + [sym__immediate_decimal] = STATE(745), + [sym_val_variable] = STATE(744), [sym_comment] = STATE(412), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1679), - [sym__newline] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_err_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_GT_PIPE] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_EQ_GT] = ACTIONS(1679), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1679), - [anon_sym_xor2] = ACTIONS(1679), - [anon_sym_or2] = ACTIONS(1679), - [anon_sym_not_DASHin2] = ACTIONS(1679), - [anon_sym_has2] = ACTIONS(1679), - [anon_sym_not_DASHhas2] = ACTIONS(1679), - [anon_sym_starts_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1679), - [anon_sym_ends_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1679), - [anon_sym_EQ_EQ2] = ACTIONS(1679), - [anon_sym_BANG_EQ2] = ACTIONS(1679), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1679), - [anon_sym_GT_EQ2] = ACTIONS(1679), - [anon_sym_EQ_TILDE2] = ACTIONS(1679), - [anon_sym_BANG_TILDE2] = ACTIONS(1679), - [anon_sym_like2] = ACTIONS(1679), - [anon_sym_not_DASHlike2] = ACTIONS(1679), - [anon_sym_STAR_STAR2] = ACTIONS(1679), - [anon_sym_PLUS_PLUS2] = ACTIONS(1679), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1679), - [anon_sym_SLASH_SLASH2] = ACTIONS(1679), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1679), - [anon_sym_bit_DASHshr2] = ACTIONS(1679), - [anon_sym_bit_DASHand2] = ACTIONS(1679), - [anon_sym_bit_DASHxor2] = ACTIONS(1679), - [anon_sym_bit_DASHor2] = ACTIONS(1679), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1679), - [anon_sym_COLON2] = ACTIONS(1679), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1679), - [anon_sym_out_GT_GT] = ACTIONS(1679), - [anon_sym_e_GT_GT] = ACTIONS(1679), - [anon_sym_o_GT_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), + [anon_sym_in] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1683), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_has2] = ACTIONS(1681), + [anon_sym_not_DASHhas2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1683), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_like2] = ACTIONS(1681), + [anon_sym_not_DASHlike2] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1683), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1683), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [aux_sym__immediate_decimal_token1] = ACTIONS(1655), + [aux_sym__immediate_decimal_token2] = ACTIONS(1655), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1683), + [anon_sym_out_GT] = ACTIONS(1683), + [anon_sym_e_GT] = ACTIONS(1683), + [anon_sym_o_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT] = ACTIONS(1683), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(3), }, [STATE(413)] = { + [sym__expr_parenthesized_immediate] = STATE(929), + [sym__immediate_decimal] = STATE(694), + [sym_val_variable] = STATE(929), [sym_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [ts_builtin_sym_end] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1602), + [anon_sym_DASH2] = ACTIONS(1602), + [anon_sym_STAR2] = ACTIONS(1602), + [anon_sym_and2] = ACTIONS(1598), + [anon_sym_xor2] = ACTIONS(1598), + [anon_sym_or2] = ACTIONS(1598), + [anon_sym_not_DASHin2] = ACTIONS(1598), + [anon_sym_has2] = ACTIONS(1598), + [anon_sym_not_DASHhas2] = ACTIONS(1598), + [anon_sym_starts_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), + [anon_sym_ends_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), + [anon_sym_EQ_EQ2] = ACTIONS(1598), + [anon_sym_BANG_EQ2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1602), + [anon_sym_LT_EQ2] = ACTIONS(1598), + [anon_sym_GT_EQ2] = ACTIONS(1598), + [anon_sym_EQ_TILDE2] = ACTIONS(1598), + [anon_sym_BANG_TILDE2] = ACTIONS(1598), + [anon_sym_like2] = ACTIONS(1598), + [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1598), + [anon_sym_SLASH2] = ACTIONS(1602), + [anon_sym_mod2] = ACTIONS(1598), + [anon_sym_SLASH_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1602), + [anon_sym_bit_DASHshl2] = ACTIONS(1598), + [anon_sym_bit_DASHshr2] = ACTIONS(1598), + [anon_sym_bit_DASHand2] = ACTIONS(1598), + [anon_sym_bit_DASHxor2] = ACTIONS(1598), + [anon_sym_bit_DASHor2] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1689), + [aux_sym__immediate_decimal_token1] = ACTIONS(1691), + [aux_sym__immediate_decimal_token2] = ACTIONS(1691), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1602), + [anon_sym_out_GT] = ACTIONS(1602), + [anon_sym_e_GT] = ACTIONS(1602), + [anon_sym_o_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT] = ACTIONS(1602), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [sym__unquoted_pattern] = ACTIONS(1635), [anon_sym_POUND] = ACTIONS(3), }, [STATE(414)] = { - [sym_cell_path] = STATE(492), - [sym_path] = STATE(441), + [sym__expr_parenthesized_immediate] = STATE(730), + [sym__immediate_decimal] = STATE(958), + [sym_val_variable] = STATE(730), [sym_comment] = STATE(414), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_EQ_GT] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1434), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), + [anon_sym_in] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1602), + [anon_sym_DASH2] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_STAR2] = ACTIONS(1602), + [anon_sym_and2] = ACTIONS(1598), + [anon_sym_xor2] = ACTIONS(1598), + [anon_sym_or2] = ACTIONS(1598), + [anon_sym_not_DASHin2] = ACTIONS(1598), + [anon_sym_has2] = ACTIONS(1598), + [anon_sym_not_DASHhas2] = ACTIONS(1598), + [anon_sym_starts_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), + [anon_sym_ends_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), + [anon_sym_EQ_EQ2] = ACTIONS(1598), + [anon_sym_BANG_EQ2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1602), + [anon_sym_LT_EQ2] = ACTIONS(1598), + [anon_sym_GT_EQ2] = ACTIONS(1598), + [anon_sym_EQ_TILDE2] = ACTIONS(1598), + [anon_sym_BANG_TILDE2] = ACTIONS(1598), + [anon_sym_like2] = ACTIONS(1598), + [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1598), + [anon_sym_SLASH2] = ACTIONS(1602), + [anon_sym_mod2] = ACTIONS(1598), + [anon_sym_SLASH_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1602), + [anon_sym_bit_DASHshl2] = ACTIONS(1598), + [anon_sym_bit_DASHshr2] = ACTIONS(1598), + [anon_sym_bit_DASHand2] = ACTIONS(1598), + [anon_sym_bit_DASHxor2] = ACTIONS(1598), + [anon_sym_bit_DASHor2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token1] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token3] = ACTIONS(1677), + [aux_sym__immediate_decimal_token4] = ACTIONS(1677), + [anon_sym_err_GT] = ACTIONS(1602), + [anon_sym_out_GT] = ACTIONS(1602), + [anon_sym_e_GT] = ACTIONS(1602), + [anon_sym_o_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT] = ACTIONS(1602), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [sym__unquoted_pattern] = ACTIONS(1635), [anon_sym_POUND] = ACTIONS(3), }, [STATE(415)] = { [sym_comment] = STATE(415), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_EQ_GT] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1450), + [anon_sym_DASH_EQ] = ACTIONS(1450), + [anon_sym_STAR_EQ] = ACTIONS(1450), + [anon_sym_SLASH_EQ] = ACTIONS(1450), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1450), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_STAR2] = ACTIONS(1448), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1448), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_QMARK2] = ACTIONS(1695), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), [anon_sym_POUND] = ACTIONS(3), }, [STATE(416)] = { - [sym__expr_parenthesized_immediate] = STATE(1343), - [sym__immediate_decimal] = STATE(1090), - [sym_val_variable] = STATE(1343), + [sym__expr_parenthesized_immediate] = STATE(730), + [sym__immediate_decimal] = STATE(904), + [sym_val_variable] = STATE(730), [sym_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [sym__unquoted_pattern] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1602), + [anon_sym_DASH2] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_STAR2] = ACTIONS(1602), + [anon_sym_and2] = ACTIONS(1598), + [anon_sym_xor2] = ACTIONS(1598), + [anon_sym_or2] = ACTIONS(1598), + [anon_sym_not_DASHin2] = ACTIONS(1598), + [anon_sym_has2] = ACTIONS(1598), + [anon_sym_not_DASHhas2] = ACTIONS(1598), + [anon_sym_starts_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), + [anon_sym_ends_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), + [anon_sym_EQ_EQ2] = ACTIONS(1598), + [anon_sym_BANG_EQ2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1602), + [anon_sym_LT_EQ2] = ACTIONS(1598), + [anon_sym_GT_EQ2] = ACTIONS(1598), + [anon_sym_EQ_TILDE2] = ACTIONS(1598), + [anon_sym_BANG_TILDE2] = ACTIONS(1598), + [anon_sym_like2] = ACTIONS(1598), + [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1598), + [anon_sym_SLASH2] = ACTIONS(1602), + [anon_sym_mod2] = ACTIONS(1598), + [anon_sym_SLASH_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1602), + [anon_sym_bit_DASHshl2] = ACTIONS(1598), + [anon_sym_bit_DASHshr2] = ACTIONS(1598), + [anon_sym_bit_DASHand2] = ACTIONS(1598), + [anon_sym_bit_DASHxor2] = ACTIONS(1598), + [anon_sym_bit_DASHor2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token1] = ACTIONS(1655), + [aux_sym__immediate_decimal_token2] = ACTIONS(1655), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1602), + [anon_sym_out_GT] = ACTIONS(1602), + [anon_sym_e_GT] = ACTIONS(1602), + [anon_sym_o_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT] = ACTIONS(1602), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, [STATE(417)] = { [sym_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [anon_sym_in] = ACTIONS(1529), + [sym__newline] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_err_GT_PIPE] = ACTIONS(1529), + [anon_sym_out_GT_PIPE] = ACTIONS(1529), + [anon_sym_e_GT_PIPE] = ACTIONS(1529), + [anon_sym_o_GT_PIPE] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1529), + [anon_sym_RPAREN] = ACTIONS(1529), + [anon_sym_GT2] = ACTIONS(1527), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_EQ_GT] = ACTIONS(1529), + [anon_sym_STAR2] = ACTIONS(1527), + [anon_sym_and2] = ACTIONS(1529), + [anon_sym_xor2] = ACTIONS(1529), + [anon_sym_or2] = ACTIONS(1529), + [anon_sym_not_DASHin2] = ACTIONS(1529), + [anon_sym_has2] = ACTIONS(1529), + [anon_sym_not_DASHhas2] = ACTIONS(1529), + [anon_sym_starts_DASHwith2] = ACTIONS(1529), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1529), + [anon_sym_ends_DASHwith2] = ACTIONS(1529), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1529), + [anon_sym_EQ_EQ2] = ACTIONS(1529), + [anon_sym_BANG_EQ2] = ACTIONS(1529), + [anon_sym_LT2] = ACTIONS(1527), + [anon_sym_LT_EQ2] = ACTIONS(1529), + [anon_sym_GT_EQ2] = ACTIONS(1529), + [anon_sym_EQ_TILDE2] = ACTIONS(1529), + [anon_sym_BANG_TILDE2] = ACTIONS(1529), + [anon_sym_like2] = ACTIONS(1529), + [anon_sym_not_DASHlike2] = ACTIONS(1529), + [anon_sym_STAR_STAR2] = ACTIONS(1529), + [anon_sym_PLUS_PLUS2] = ACTIONS(1529), + [anon_sym_SLASH2] = ACTIONS(1527), + [anon_sym_mod2] = ACTIONS(1529), + [anon_sym_SLASH_SLASH2] = ACTIONS(1529), + [anon_sym_PLUS2] = ACTIONS(1527), + [anon_sym_bit_DASHshl2] = ACTIONS(1529), + [anon_sym_bit_DASHshr2] = ACTIONS(1529), + [anon_sym_bit_DASHand2] = ACTIONS(1529), + [anon_sym_bit_DASHxor2] = ACTIONS(1529), + [anon_sym_bit_DASHor2] = ACTIONS(1529), + [anon_sym_DOT_DOT2] = ACTIONS(1527), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), + [anon_sym_COLON2] = ACTIONS(1529), + [anon_sym_QMARK2] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_DOT2] = ACTIONS(1527), + [anon_sym_err_GT] = ACTIONS(1527), + [anon_sym_out_GT] = ACTIONS(1527), + [anon_sym_e_GT] = ACTIONS(1527), + [anon_sym_o_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT] = ACTIONS(1527), + [anon_sym_err_GT_GT] = ACTIONS(1529), + [anon_sym_out_GT_GT] = ACTIONS(1529), + [anon_sym_e_GT_GT] = ACTIONS(1529), + [anon_sym_o_GT_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1529), [anon_sym_POUND] = ACTIONS(3), }, [STATE(418)] = { - [sym__expr_parenthesized_immediate] = STATE(1311), - [sym__immediate_decimal] = STATE(1068), - [sym_val_variable] = STATE(1311), + [sym__expr_parenthesized_immediate] = STATE(1279), + [sym__immediate_decimal] = STATE(1083), + [sym_val_variable] = STATE(1279), [sym_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), + [ts_builtin_sym_end] = ACTIONS(1651), + [anon_sym_in] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_like2] = ACTIONS(1651), + [anon_sym_not_DASHlike2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [aux_sym__immediate_decimal_token1] = ACTIONS(1697), + [aux_sym__immediate_decimal_token2] = ACTIONS(1697), + [aux_sym__immediate_decimal_token3] = ACTIONS(1699), + [aux_sym__immediate_decimal_token4] = ACTIONS(1699), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [sym__unquoted_pattern] = ACTIONS(1679), [anon_sym_POUND] = ACTIONS(3), }, [STATE(419)] = { - [sym__expr_parenthesized_immediate] = STATE(918), - [sym__immediate_decimal] = STATE(920), - [sym_val_variable] = STATE(918), + [sym__expr_parenthesized_immediate] = STATE(920), + [sym__immediate_decimal] = STATE(923), + [sym_val_variable] = STATE(920), [sym_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1687), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [ts_builtin_sym_end] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1641), + [anon_sym_DASH2] = ACTIONS(1641), + [anon_sym_STAR2] = ACTIONS(1641), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1641), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_like2] = ACTIONS(1639), + [anon_sym_not_DASHlike2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1641), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1641), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(1701), + [aux_sym__immediate_decimal_token1] = ACTIONS(1691), + [aux_sym__immediate_decimal_token2] = ACTIONS(1691), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [anon_sym_err_GT_GT] = ACTIONS(1639), + [anon_sym_out_GT_GT] = ACTIONS(1639), + [anon_sym_e_GT_GT] = ACTIONS(1639), + [anon_sym_o_GT_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(3), }, [STATE(420)] = { - [sym_path] = STATE(441), + [sym_cell_path] = STATE(496), + [sym_path] = STATE(458), [sym_comment] = STATE(420), - [aux_sym__where_predicate_lhs_repeat1] = STATE(420), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_EQ_GT] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1526), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1689), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = ACTIONS(1444), + [sym__newline] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_err_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_GT_PIPE] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_GT2] = ACTIONS(1442), + [anon_sym_DASH2] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_STAR2] = ACTIONS(1442), + [anon_sym_and2] = ACTIONS(1444), + [anon_sym_xor2] = ACTIONS(1444), + [anon_sym_or2] = ACTIONS(1444), + [anon_sym_not_DASHin2] = ACTIONS(1444), + [anon_sym_has2] = ACTIONS(1444), + [anon_sym_not_DASHhas2] = ACTIONS(1444), + [anon_sym_starts_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1444), + [anon_sym_ends_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1444), + [anon_sym_EQ_EQ2] = ACTIONS(1444), + [anon_sym_BANG_EQ2] = ACTIONS(1444), + [anon_sym_LT2] = ACTIONS(1442), + [anon_sym_LT_EQ2] = ACTIONS(1444), + [anon_sym_GT_EQ2] = ACTIONS(1444), + [anon_sym_EQ_TILDE2] = ACTIONS(1444), + [anon_sym_BANG_TILDE2] = ACTIONS(1444), + [anon_sym_like2] = ACTIONS(1444), + [anon_sym_not_DASHlike2] = ACTIONS(1444), + [anon_sym_STAR_STAR2] = ACTIONS(1444), + [anon_sym_PLUS_PLUS2] = ACTIONS(1444), + [anon_sym_SLASH2] = ACTIONS(1442), + [anon_sym_mod2] = ACTIONS(1444), + [anon_sym_SLASH_SLASH2] = ACTIONS(1444), + [anon_sym_PLUS2] = ACTIONS(1442), + [anon_sym_bit_DASHshl2] = ACTIONS(1444), + [anon_sym_bit_DASHshr2] = ACTIONS(1444), + [anon_sym_bit_DASHand2] = ACTIONS(1444), + [anon_sym_bit_DASHxor2] = ACTIONS(1444), + [anon_sym_bit_DASHor2] = ACTIONS(1444), + [anon_sym_DOT_DOT2] = ACTIONS(1442), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), + [anon_sym_DOT2] = ACTIONS(1649), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [anon_sym_o_GT] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT] = ACTIONS(1442), + [anon_sym_err_GT_GT] = ACTIONS(1444), + [anon_sym_out_GT_GT] = ACTIONS(1444), + [anon_sym_e_GT_GT] = ACTIONS(1444), + [anon_sym_o_GT_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), [anon_sym_POUND] = ACTIONS(3), }, [STATE(421)] = { [sym_comment] = STATE(421), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1692), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1694), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [anon_sym_in] = ACTIONS(1525), + [sym__newline] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_err_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_GT_PIPE] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(1525), + [anon_sym_GT2] = ACTIONS(1523), + [anon_sym_DASH2] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_EQ_GT] = ACTIONS(1525), + [anon_sym_STAR2] = ACTIONS(1523), + [anon_sym_and2] = ACTIONS(1525), + [anon_sym_xor2] = ACTIONS(1525), + [anon_sym_or2] = ACTIONS(1525), + [anon_sym_not_DASHin2] = ACTIONS(1525), + [anon_sym_has2] = ACTIONS(1525), + [anon_sym_not_DASHhas2] = ACTIONS(1525), + [anon_sym_starts_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1525), + [anon_sym_ends_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1525), + [anon_sym_EQ_EQ2] = ACTIONS(1525), + [anon_sym_BANG_EQ2] = ACTIONS(1525), + [anon_sym_LT2] = ACTIONS(1523), + [anon_sym_LT_EQ2] = ACTIONS(1525), + [anon_sym_GT_EQ2] = ACTIONS(1525), + [anon_sym_EQ_TILDE2] = ACTIONS(1525), + [anon_sym_BANG_TILDE2] = ACTIONS(1525), + [anon_sym_like2] = ACTIONS(1525), + [anon_sym_not_DASHlike2] = ACTIONS(1525), + [anon_sym_STAR_STAR2] = ACTIONS(1525), + [anon_sym_PLUS_PLUS2] = ACTIONS(1525), + [anon_sym_SLASH2] = ACTIONS(1523), + [anon_sym_mod2] = ACTIONS(1525), + [anon_sym_SLASH_SLASH2] = ACTIONS(1525), + [anon_sym_PLUS2] = ACTIONS(1523), + [anon_sym_bit_DASHshl2] = ACTIONS(1525), + [anon_sym_bit_DASHshr2] = ACTIONS(1525), + [anon_sym_bit_DASHand2] = ACTIONS(1525), + [anon_sym_bit_DASHxor2] = ACTIONS(1525), + [anon_sym_bit_DASHor2] = ACTIONS(1525), + [anon_sym_DOT_DOT2] = ACTIONS(1523), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1525), + [anon_sym_COLON2] = ACTIONS(1525), + [anon_sym_QMARK2] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_DOT2] = ACTIONS(1523), + [anon_sym_err_GT] = ACTIONS(1523), + [anon_sym_out_GT] = ACTIONS(1523), + [anon_sym_e_GT] = ACTIONS(1523), + [anon_sym_o_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT] = ACTIONS(1523), + [anon_sym_err_GT_GT] = ACTIONS(1525), + [anon_sym_out_GT_GT] = ACTIONS(1525), + [anon_sym_e_GT_GT] = ACTIONS(1525), + [anon_sym_o_GT_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1525), [anon_sym_POUND] = ACTIONS(3), }, [STATE(422)] = { @@ -80428,10 +81056,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(749), [anon_sym_bit_DASHor2] = ACTIONS(749), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1703), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1696), - [aux_sym__immediate_decimal_token5] = ACTIONS(1698), + [aux_sym__immediate_decimal_token5] = ACTIONS(1705), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -80454,768 +81082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(423)] = { - [sym_path] = STATE(441), [sym_comment] = STATE(423), - [aux_sym__where_predicate_lhs_repeat1] = STATE(420), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_EQ_GT] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1460), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_COLON2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(424)] = { - [sym_comment] = STATE(424), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_EQ_GT] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1545), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(425)] = { - [sym_comment] = STATE(425), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1700), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(426)] = { - [sym_comment] = STATE(426), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_EQ_GT] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(427)] = { - [sym_comment] = STATE(427), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_EQ_GT] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1472), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(428)] = { - [sym_comment] = STATE(428), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_EQ_GT] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1476), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(429)] = { - [sym_comment] = STATE(429), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_EQ_GT] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1516), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_COLON2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(430)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(934), - [sym_val_variable] = STATE(929), - [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1702), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(431)] = { - [sym_comment] = STATE(431), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1704), - [anon_sym_DASH_EQ] = ACTIONS(1704), - [anon_sym_STAR_EQ] = ACTIONS(1704), - [anon_sym_SLASH_EQ] = ACTIONS(1704), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1704), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(432)] = { - [sym_comment] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(433)] = { - [sym_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(741), @@ -81228,8 +81095,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(741), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(741), [anon_sym_xor2] = ACTIONS(741), @@ -81263,10 +81132,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(741), [anon_sym_bit_DASHor2] = ACTIONS(741), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1710), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1712), + [aux_sym__immediate_decimal_token1] = ACTIONS(1707), + [aux_sym__immediate_decimal_token5] = ACTIONS(1709), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -81288,687 +81157,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(434)] = { - [sym_comment] = STATE(434), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_PLUS_EQ] = ACTIONS(1716), - [anon_sym_DASH_EQ] = ACTIONS(1716), - [anon_sym_STAR_EQ] = ACTIONS(1716), - [anon_sym_SLASH_EQ] = ACTIONS(1716), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [STATE(424)] = { + [sym_comment] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(1549), + [anon_sym_EQ] = ACTIONS(1547), + [anon_sym_PLUS_EQ] = ACTIONS(1549), + [anon_sym_DASH_EQ] = ACTIONS(1549), + [anon_sym_STAR_EQ] = ACTIONS(1549), + [anon_sym_SLASH_EQ] = ACTIONS(1549), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1549), + [anon_sym_in] = ACTIONS(1549), + [sym__newline] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_err_GT_PIPE] = ACTIONS(1549), + [anon_sym_out_GT_PIPE] = ACTIONS(1549), + [anon_sym_e_GT_PIPE] = ACTIONS(1549), + [anon_sym_o_GT_PIPE] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), + [anon_sym_GT2] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_STAR2] = ACTIONS(1547), + [anon_sym_and2] = ACTIONS(1549), + [anon_sym_xor2] = ACTIONS(1549), + [anon_sym_or2] = ACTIONS(1549), + [anon_sym_not_DASHin2] = ACTIONS(1549), + [anon_sym_has2] = ACTIONS(1549), + [anon_sym_not_DASHhas2] = ACTIONS(1549), + [anon_sym_starts_DASHwith2] = ACTIONS(1549), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1549), + [anon_sym_ends_DASHwith2] = ACTIONS(1549), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1549), + [anon_sym_EQ_EQ2] = ACTIONS(1549), + [anon_sym_BANG_EQ2] = ACTIONS(1549), + [anon_sym_LT2] = ACTIONS(1547), + [anon_sym_LT_EQ2] = ACTIONS(1549), + [anon_sym_GT_EQ2] = ACTIONS(1549), + [anon_sym_EQ_TILDE2] = ACTIONS(1549), + [anon_sym_BANG_TILDE2] = ACTIONS(1549), + [anon_sym_like2] = ACTIONS(1549), + [anon_sym_not_DASHlike2] = ACTIONS(1549), + [anon_sym_STAR_STAR2] = ACTIONS(1549), + [anon_sym_PLUS_PLUS2] = ACTIONS(1547), + [anon_sym_SLASH2] = ACTIONS(1547), + [anon_sym_mod2] = ACTIONS(1549), + [anon_sym_SLASH_SLASH2] = ACTIONS(1549), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_bit_DASHshl2] = ACTIONS(1549), + [anon_sym_bit_DASHshr2] = ACTIONS(1549), + [anon_sym_bit_DASHand2] = ACTIONS(1549), + [anon_sym_bit_DASHxor2] = ACTIONS(1549), + [anon_sym_bit_DASHor2] = ACTIONS(1549), + [anon_sym_DOT_DOT2] = ACTIONS(1547), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), + [anon_sym_DOT2] = ACTIONS(1547), + [anon_sym_err_GT] = ACTIONS(1547), + [anon_sym_out_GT] = ACTIONS(1547), + [anon_sym_e_GT] = ACTIONS(1547), + [anon_sym_o_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT] = ACTIONS(1547), + [anon_sym_err_GT_GT] = ACTIONS(1549), + [anon_sym_out_GT_GT] = ACTIONS(1549), + [anon_sym_e_GT_GT] = ACTIONS(1549), + [anon_sym_o_GT_GT] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(435)] = { - [sym_comment] = STATE(435), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1718), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), + [STATE(425)] = { + [sym__expr_parenthesized_immediate] = STATE(1299), + [sym__immediate_decimal] = STATE(1062), + [sym_val_variable] = STATE(1299), + [sym_comment] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1602), + [anon_sym_DASH2] = ACTIONS(1602), + [anon_sym_STAR2] = ACTIONS(1602), + [anon_sym_and2] = ACTIONS(1598), + [anon_sym_xor2] = ACTIONS(1598), + [anon_sym_or2] = ACTIONS(1598), + [anon_sym_not_DASHin2] = ACTIONS(1598), + [anon_sym_has2] = ACTIONS(1598), + [anon_sym_not_DASHhas2] = ACTIONS(1598), + [anon_sym_starts_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), + [anon_sym_ends_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), + [anon_sym_EQ_EQ2] = ACTIONS(1598), + [anon_sym_BANG_EQ2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1602), + [anon_sym_LT_EQ2] = ACTIONS(1598), + [anon_sym_GT_EQ2] = ACTIONS(1598), + [anon_sym_EQ_TILDE2] = ACTIONS(1598), + [anon_sym_BANG_TILDE2] = ACTIONS(1598), + [anon_sym_like2] = ACTIONS(1598), + [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1598), + [anon_sym_SLASH2] = ACTIONS(1602), + [anon_sym_mod2] = ACTIONS(1598), + [anon_sym_SLASH_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1602), + [anon_sym_bit_DASHshl2] = ACTIONS(1598), + [anon_sym_bit_DASHshr2] = ACTIONS(1598), + [anon_sym_bit_DASHand2] = ACTIONS(1598), + [anon_sym_bit_DASHxor2] = ACTIONS(1598), + [anon_sym_bit_DASHor2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token1] = ACTIONS(1697), + [aux_sym__immediate_decimal_token2] = ACTIONS(1697), + [aux_sym__immediate_decimal_token3] = ACTIONS(1699), + [aux_sym__immediate_decimal_token4] = ACTIONS(1699), + [anon_sym_err_GT] = ACTIONS(1602), + [anon_sym_out_GT] = ACTIONS(1602), + [anon_sym_e_GT] = ACTIONS(1602), + [anon_sym_o_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT] = ACTIONS(1602), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [sym__unquoted_pattern] = ACTIONS(1635), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(436)] = { - [sym_comment] = STATE(436), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1694), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(437)] = { - [sym_comment] = STATE(437), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_EQ_GT] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1522), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(438)] = { - [sym_comment] = STATE(438), - [anon_sym_EQ] = ACTIONS(1720), - [anon_sym_PLUS_EQ] = ACTIONS(1722), - [anon_sym_DASH_EQ] = ACTIONS(1722), - [anon_sym_STAR_EQ] = ACTIONS(1722), - [anon_sym_SLASH_EQ] = ACTIONS(1722), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(439)] = { - [sym_comment] = STATE(439), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1704), - [anon_sym_DASH_EQ] = ACTIONS(1704), - [anon_sym_STAR_EQ] = ACTIONS(1704), - [anon_sym_SLASH_EQ] = ACTIONS(1704), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1704), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(440)] = { - [sym_comment] = STATE(440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(441)] = { - [sym_comment] = STATE(441), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_EQ_GT] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [STATE(426)] = { + [sym_comment] = STATE(426), + [anon_sym_in] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_GT2] = ACTIONS(1519), + [anon_sym_DASH2] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_EQ_GT] = ACTIONS(1521), + [anon_sym_STAR2] = ACTIONS(1519), + [anon_sym_and2] = ACTIONS(1521), + [anon_sym_xor2] = ACTIONS(1521), + [anon_sym_or2] = ACTIONS(1521), + [anon_sym_not_DASHin2] = ACTIONS(1521), + [anon_sym_has2] = ACTIONS(1521), + [anon_sym_not_DASHhas2] = ACTIONS(1521), + [anon_sym_starts_DASHwith2] = ACTIONS(1521), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1521), + [anon_sym_ends_DASHwith2] = ACTIONS(1521), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1521), + [anon_sym_EQ_EQ2] = ACTIONS(1521), + [anon_sym_BANG_EQ2] = ACTIONS(1521), + [anon_sym_LT2] = ACTIONS(1519), + [anon_sym_LT_EQ2] = ACTIONS(1521), + [anon_sym_GT_EQ2] = ACTIONS(1521), + [anon_sym_EQ_TILDE2] = ACTIONS(1521), + [anon_sym_BANG_TILDE2] = ACTIONS(1521), + [anon_sym_like2] = ACTIONS(1521), + [anon_sym_not_DASHlike2] = ACTIONS(1521), + [anon_sym_STAR_STAR2] = ACTIONS(1521), + [anon_sym_PLUS_PLUS2] = ACTIONS(1521), + [anon_sym_SLASH2] = ACTIONS(1519), + [anon_sym_mod2] = ACTIONS(1521), + [anon_sym_SLASH_SLASH2] = ACTIONS(1521), + [anon_sym_PLUS2] = ACTIONS(1519), + [anon_sym_bit_DASHshl2] = ACTIONS(1521), + [anon_sym_bit_DASHshr2] = ACTIONS(1521), + [anon_sym_bit_DASHand2] = ACTIONS(1521), + [anon_sym_bit_DASHxor2] = ACTIONS(1521), + [anon_sym_bit_DASHor2] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [anon_sym_COLON2] = ACTIONS(1521), + [anon_sym_QMARK2] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_DOT2] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(442)] = { - [sym_comment] = STATE(442), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(1730), - [aux_sym__immediate_decimal_token5] = ACTIONS(1732), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [STATE(427)] = { + [sym_path] = STATE(458), + [sym_comment] = STATE(427), + [aux_sym__where_predicate_lhs_repeat1] = STATE(437), + [anon_sym_in] = ACTIONS(1506), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_err_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_GT_PIPE] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), + [anon_sym_RPAREN] = ACTIONS(1506), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1506), + [anon_sym_xor2] = ACTIONS(1506), + [anon_sym_or2] = ACTIONS(1506), + [anon_sym_not_DASHin2] = ACTIONS(1506), + [anon_sym_has2] = ACTIONS(1506), + [anon_sym_not_DASHhas2] = ACTIONS(1506), + [anon_sym_starts_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), + [anon_sym_ends_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), + [anon_sym_EQ_EQ2] = ACTIONS(1506), + [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1506), + [anon_sym_GT_EQ2] = ACTIONS(1506), + [anon_sym_EQ_TILDE2] = ACTIONS(1506), + [anon_sym_BANG_TILDE2] = ACTIONS(1506), + [anon_sym_like2] = ACTIONS(1506), + [anon_sym_not_DASHlike2] = ACTIONS(1506), + [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1506), + [anon_sym_bit_DASHshr2] = ACTIONS(1506), + [anon_sym_bit_DASHand2] = ACTIONS(1506), + [anon_sym_bit_DASHxor2] = ACTIONS(1506), + [anon_sym_bit_DASHor2] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [anon_sym_COLON2] = ACTIONS(1506), + [anon_sym_DOT2] = ACTIONS(1649), + [anon_sym_err_GT] = ACTIONS(1504), + [anon_sym_out_GT] = ACTIONS(1504), + [anon_sym_e_GT] = ACTIONS(1504), + [anon_sym_o_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT] = ACTIONS(1504), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(443)] = { - [sym__expr_parenthesized_immediate] = STATE(1269), - [sym__immediate_decimal] = STATE(1271), - [sym_val_variable] = STATE(1269), - [sym_comment] = STATE(443), + [STATE(428)] = { + [sym_comment] = STATE(428), [ts_builtin_sym_end] = ACTIONS(1582), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1582), [anon_sym_in] = ACTIONS(1582), [sym__newline] = ACTIONS(1582), [anon_sym_SEMI] = ACTIONS(1582), @@ -81981,10 +81482,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_STAR2] = ACTIONS(1586), + [anon_sym_COLON] = ACTIONS(1582), + [anon_sym_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_STAR2] = ACTIONS(1580), [anon_sym_and2] = ACTIONS(1582), [anon_sym_xor2] = ACTIONS(1582), [anon_sym_or2] = ACTIONS(1582), @@ -81997,37 +81498,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), [anon_sym_EQ_EQ2] = ACTIONS(1582), [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), + [anon_sym_LT2] = ACTIONS(1580), [anon_sym_LT_EQ2] = ACTIONS(1582), [anon_sym_GT_EQ2] = ACTIONS(1582), [anon_sym_EQ_TILDE2] = ACTIONS(1582), [anon_sym_BANG_TILDE2] = ACTIONS(1582), [anon_sym_like2] = ACTIONS(1582), [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1651), [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), + [anon_sym_PLUS_PLUS2] = ACTIONS(1580), + [anon_sym_SLASH2] = ACTIONS(1580), [anon_sym_mod2] = ACTIONS(1582), [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), + [anon_sym_PLUS2] = ACTIONS(1580), [anon_sym_bit_DASHshl2] = ACTIONS(1582), [anon_sym_bit_DASHshr2] = ACTIONS(1582), [anon_sym_bit_DASHand2] = ACTIONS(1582), [anon_sym_bit_DASHxor2] = ACTIONS(1582), [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), + [anon_sym_DOT_DOT2] = ACTIONS(1580), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), [anon_sym_err_GT_GT] = ACTIONS(1582), [anon_sym_out_GT_GT] = ACTIONS(1582), [anon_sym_e_GT_GT] = ACTIONS(1582), @@ -82038,234 +81537,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(444)] = { - [sym_comment] = STATE(444), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1740), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(445)] = { - [sym_comment] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_PLUS_EQ] = ACTIONS(1746), - [anon_sym_DASH_EQ] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1746), - [anon_sym_SLASH_EQ] = ACTIONS(1746), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(446)] = { - [sym__expr_parenthesized_immediate] = STATE(4739), - [sym_comment] = STATE(446), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(1754), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), - [sym_filesize_unit] = ACTIONS(1758), - [sym_duration_unit] = ACTIONS(1760), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1762), + [STATE(429)] = { + [sym_comment] = STATE(429), + [anon_sym_in] = ACTIONS(1533), + [sym__newline] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_err_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_GT_PIPE] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1533), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_GT2] = ACTIONS(1531), + [anon_sym_DASH2] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_EQ_GT] = ACTIONS(1533), + [anon_sym_STAR2] = ACTIONS(1531), + [anon_sym_and2] = ACTIONS(1533), + [anon_sym_xor2] = ACTIONS(1533), + [anon_sym_or2] = ACTIONS(1533), + [anon_sym_not_DASHin2] = ACTIONS(1533), + [anon_sym_has2] = ACTIONS(1533), + [anon_sym_not_DASHhas2] = ACTIONS(1533), + [anon_sym_starts_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1533), + [anon_sym_ends_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1533), + [anon_sym_EQ_EQ2] = ACTIONS(1533), + [anon_sym_BANG_EQ2] = ACTIONS(1533), + [anon_sym_LT2] = ACTIONS(1531), + [anon_sym_LT_EQ2] = ACTIONS(1533), + [anon_sym_GT_EQ2] = ACTIONS(1533), + [anon_sym_EQ_TILDE2] = ACTIONS(1533), + [anon_sym_BANG_TILDE2] = ACTIONS(1533), + [anon_sym_like2] = ACTIONS(1533), + [anon_sym_not_DASHlike2] = ACTIONS(1533), + [anon_sym_STAR_STAR2] = ACTIONS(1533), + [anon_sym_PLUS_PLUS2] = ACTIONS(1533), + [anon_sym_SLASH2] = ACTIONS(1531), + [anon_sym_mod2] = ACTIONS(1533), + [anon_sym_SLASH_SLASH2] = ACTIONS(1533), + [anon_sym_PLUS2] = ACTIONS(1531), + [anon_sym_bit_DASHshl2] = ACTIONS(1533), + [anon_sym_bit_DASHshr2] = ACTIONS(1533), + [anon_sym_bit_DASHand2] = ACTIONS(1533), + [anon_sym_bit_DASHxor2] = ACTIONS(1533), + [anon_sym_bit_DASHor2] = ACTIONS(1533), + [anon_sym_DOT_DOT2] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), + [anon_sym_COLON2] = ACTIONS(1533), + [anon_sym_QMARK2] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1531), + [anon_sym_err_GT] = ACTIONS(1531), + [anon_sym_out_GT] = ACTIONS(1531), + [anon_sym_e_GT] = ACTIONS(1531), + [anon_sym_o_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT] = ACTIONS(1531), + [anon_sym_err_GT_GT] = ACTIONS(1533), + [anon_sym_out_GT_GT] = ACTIONS(1533), + [anon_sym_e_GT_GT] = ACTIONS(1533), + [anon_sym_o_GT_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1533), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(447)] = { - [sym_comment] = STATE(447), - [anon_sym_if] = ACTIONS(1537), + [STATE(430)] = { + [sym_comment] = STATE(430), [anon_sym_in] = ACTIONS(1537), [sym__newline] = ACTIONS(1537), [anon_sym_SEMI] = ACTIONS(1537), @@ -82319,6 +81668,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), [anon_sym_COLON2] = ACTIONS(1537), + [anon_sym_QMARK2] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1535), [anon_sym_DOT2] = ACTIONS(1535), [anon_sym_err_GT] = ACTIONS(1535), [anon_sym_out_GT] = ACTIONS(1535), @@ -82338,458 +81689,690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(448)] = { - [sym__expr_parenthesized_immediate] = STATE(1336), - [sym__immediate_decimal] = STATE(1337), - [sym_val_variable] = STATE(1336), - [sym_comment] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [sym__newline] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_err_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_GT_PIPE] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_has2] = ACTIONS(1667), - [anon_sym_not_DASHhas2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1667), - [anon_sym_GT_EQ2] = ACTIONS(1667), - [anon_sym_EQ_TILDE2] = ACTIONS(1667), - [anon_sym_BANG_TILDE2] = ACTIONS(1667), - [anon_sym_like2] = ACTIONS(1667), - [anon_sym_not_DASHlike2] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1667), - [anon_sym_bit_DASHshr2] = ACTIONS(1667), - [anon_sym_bit_DASHand2] = ACTIONS(1667), - [anon_sym_bit_DASHxor2] = ACTIONS(1667), - [anon_sym_bit_DASHor2] = ACTIONS(1667), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1667), - [anon_sym_out_GT_GT] = ACTIONS(1667), - [anon_sym_e_GT_GT] = ACTIONS(1667), - [anon_sym_o_GT_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), + [STATE(431)] = { + [sym_comment] = STATE(431), + [anon_sym_EQ] = ACTIONS(1612), + [anon_sym_PLUS_EQ] = ACTIONS(1711), + [anon_sym_DASH_EQ] = ACTIONS(1711), + [anon_sym_STAR_EQ] = ACTIONS(1711), + [anon_sym_SLASH_EQ] = ACTIONS(1711), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1614), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_COLON2] = ACTIONS(1715), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(449)] = { - [sym__expr_parenthesized_immediate] = STATE(1339), - [sym__immediate_decimal] = STATE(1340), - [sym_val_variable] = STATE(1339), - [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_has2] = ACTIONS(1671), - [anon_sym_not_DASHhas2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_like2] = ACTIONS(1671), - [anon_sym_not_DASHlike2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), + [STATE(432)] = { + [sym_comment] = STATE(432), + [anon_sym_in] = ACTIONS(1541), + [sym__newline] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_err_GT_PIPE] = ACTIONS(1541), + [anon_sym_out_GT_PIPE] = ACTIONS(1541), + [anon_sym_e_GT_PIPE] = ACTIONS(1541), + [anon_sym_o_GT_PIPE] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1541), + [anon_sym_RPAREN] = ACTIONS(1541), + [anon_sym_GT2] = ACTIONS(1539), + [anon_sym_DASH2] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_EQ_GT] = ACTIONS(1541), + [anon_sym_STAR2] = ACTIONS(1539), + [anon_sym_and2] = ACTIONS(1541), + [anon_sym_xor2] = ACTIONS(1541), + [anon_sym_or2] = ACTIONS(1541), + [anon_sym_not_DASHin2] = ACTIONS(1541), + [anon_sym_has2] = ACTIONS(1541), + [anon_sym_not_DASHhas2] = ACTIONS(1541), + [anon_sym_starts_DASHwith2] = ACTIONS(1541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1541), + [anon_sym_ends_DASHwith2] = ACTIONS(1541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1541), + [anon_sym_EQ_EQ2] = ACTIONS(1541), + [anon_sym_BANG_EQ2] = ACTIONS(1541), + [anon_sym_LT2] = ACTIONS(1539), + [anon_sym_LT_EQ2] = ACTIONS(1541), + [anon_sym_GT_EQ2] = ACTIONS(1541), + [anon_sym_EQ_TILDE2] = ACTIONS(1541), + [anon_sym_BANG_TILDE2] = ACTIONS(1541), + [anon_sym_like2] = ACTIONS(1541), + [anon_sym_not_DASHlike2] = ACTIONS(1541), + [anon_sym_STAR_STAR2] = ACTIONS(1541), + [anon_sym_PLUS_PLUS2] = ACTIONS(1541), + [anon_sym_SLASH2] = ACTIONS(1539), + [anon_sym_mod2] = ACTIONS(1541), + [anon_sym_SLASH_SLASH2] = ACTIONS(1541), + [anon_sym_PLUS2] = ACTIONS(1539), + [anon_sym_bit_DASHshl2] = ACTIONS(1541), + [anon_sym_bit_DASHshr2] = ACTIONS(1541), + [anon_sym_bit_DASHand2] = ACTIONS(1541), + [anon_sym_bit_DASHxor2] = ACTIONS(1541), + [anon_sym_bit_DASHor2] = ACTIONS(1541), + [anon_sym_DOT_DOT2] = ACTIONS(1539), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1541), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1541), + [anon_sym_COLON2] = ACTIONS(1541), + [anon_sym_QMARK2] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_DOT2] = ACTIONS(1539), + [anon_sym_err_GT] = ACTIONS(1539), + [anon_sym_out_GT] = ACTIONS(1539), + [anon_sym_e_GT] = ACTIONS(1539), + [anon_sym_o_GT] = ACTIONS(1539), + [anon_sym_err_PLUSout_GT] = ACTIONS(1539), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1539), + [anon_sym_o_PLUSe_GT] = ACTIONS(1539), + [anon_sym_e_PLUSo_GT] = ACTIONS(1539), + [anon_sym_err_GT_GT] = ACTIONS(1541), + [anon_sym_out_GT_GT] = ACTIONS(1541), + [anon_sym_e_GT_GT] = ACTIONS(1541), + [anon_sym_o_GT_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1541), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(450)] = { - [sym__expr_parenthesized_immediate] = STATE(1341), - [sym__immediate_decimal] = STATE(1342), - [sym_val_variable] = STATE(1341), - [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [STATE(433)] = { + [sym_comment] = STATE(433), + [ts_builtin_sym_end] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1564), + [anon_sym_in] = ACTIONS(1564), + [sym__newline] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_err_GT_PIPE] = ACTIONS(1564), + [anon_sym_out_GT_PIPE] = ACTIONS(1564), + [anon_sym_e_GT_PIPE] = ACTIONS(1564), + [anon_sym_o_GT_PIPE] = ACTIONS(1564), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1564), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1564), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1564), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1564), + [anon_sym_GT2] = ACTIONS(1562), + [anon_sym_DASH2] = ACTIONS(1562), + [anon_sym_STAR2] = ACTIONS(1562), + [anon_sym_and2] = ACTIONS(1564), + [anon_sym_xor2] = ACTIONS(1564), + [anon_sym_or2] = ACTIONS(1564), + [anon_sym_not_DASHin2] = ACTIONS(1564), + [anon_sym_has2] = ACTIONS(1564), + [anon_sym_not_DASHhas2] = ACTIONS(1564), + [anon_sym_starts_DASHwith2] = ACTIONS(1564), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1564), + [anon_sym_ends_DASHwith2] = ACTIONS(1564), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1564), + [anon_sym_EQ_EQ2] = ACTIONS(1564), + [anon_sym_BANG_EQ2] = ACTIONS(1564), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ2] = ACTIONS(1564), + [anon_sym_GT_EQ2] = ACTIONS(1564), + [anon_sym_EQ_TILDE2] = ACTIONS(1564), + [anon_sym_BANG_TILDE2] = ACTIONS(1564), + [anon_sym_like2] = ACTIONS(1564), + [anon_sym_not_DASHlike2] = ACTIONS(1564), + [anon_sym_STAR_STAR2] = ACTIONS(1564), + [anon_sym_PLUS_PLUS2] = ACTIONS(1562), + [anon_sym_SLASH2] = ACTIONS(1562), + [anon_sym_mod2] = ACTIONS(1564), + [anon_sym_SLASH_SLASH2] = ACTIONS(1564), + [anon_sym_PLUS2] = ACTIONS(1562), + [anon_sym_bit_DASHshl2] = ACTIONS(1564), + [anon_sym_bit_DASHshr2] = ACTIONS(1564), + [anon_sym_bit_DASHand2] = ACTIONS(1564), + [anon_sym_bit_DASHxor2] = ACTIONS(1564), + [anon_sym_bit_DASHor2] = ACTIONS(1564), + [anon_sym_DOT_DOT2] = ACTIONS(1562), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1564), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1564), + [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_err_GT] = ACTIONS(1562), + [anon_sym_out_GT] = ACTIONS(1562), + [anon_sym_e_GT] = ACTIONS(1562), + [anon_sym_o_GT] = ACTIONS(1562), + [anon_sym_err_PLUSout_GT] = ACTIONS(1562), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1562), + [anon_sym_o_PLUSe_GT] = ACTIONS(1562), + [anon_sym_e_PLUSo_GT] = ACTIONS(1562), + [anon_sym_err_GT_GT] = ACTIONS(1564), + [anon_sym_out_GT_GT] = ACTIONS(1564), + [anon_sym_e_GT_GT] = ACTIONS(1564), + [anon_sym_o_GT_GT] = ACTIONS(1564), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1564), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1564), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1564), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1564), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(451)] = { - [sym__expr_parenthesized_immediate] = STATE(1343), - [sym__immediate_decimal] = STATE(1344), - [sym_val_variable] = STATE(1343), - [sym_comment] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [STATE(434)] = { + [sym_comment] = STATE(434), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_EQ_GT] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1448), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1448), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_COLON2] = ACTIONS(1450), + [anon_sym_QMARK2] = ACTIONS(1717), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(452)] = { - [sym__expr_parenthesized_immediate] = STATE(1311), - [sym__immediate_decimal] = STATE(1318), - [sym_val_variable] = STATE(1311), - [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), + [STATE(435)] = { + [sym__expr_parenthesized_immediate] = STATE(929), + [sym__immediate_decimal] = STATE(935), + [sym_val_variable] = STATE(929), + [sym_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1602), + [anon_sym_DASH2] = ACTIONS(1602), + [anon_sym_STAR2] = ACTIONS(1602), + [anon_sym_and2] = ACTIONS(1598), + [anon_sym_xor2] = ACTIONS(1598), + [anon_sym_or2] = ACTIONS(1598), + [anon_sym_not_DASHin2] = ACTIONS(1598), + [anon_sym_has2] = ACTIONS(1598), + [anon_sym_not_DASHhas2] = ACTIONS(1598), + [anon_sym_starts_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), + [anon_sym_ends_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), + [anon_sym_EQ_EQ2] = ACTIONS(1598), + [anon_sym_BANG_EQ2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1602), + [anon_sym_LT_EQ2] = ACTIONS(1598), + [anon_sym_GT_EQ2] = ACTIONS(1598), + [anon_sym_EQ_TILDE2] = ACTIONS(1598), + [anon_sym_BANG_TILDE2] = ACTIONS(1598), + [anon_sym_like2] = ACTIONS(1598), + [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1598), + [anon_sym_SLASH2] = ACTIONS(1602), + [anon_sym_mod2] = ACTIONS(1598), + [anon_sym_SLASH_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1602), + [anon_sym_bit_DASHshl2] = ACTIONS(1598), + [anon_sym_bit_DASHshr2] = ACTIONS(1598), + [anon_sym_bit_DASHand2] = ACTIONS(1598), + [anon_sym_bit_DASHxor2] = ACTIONS(1598), + [anon_sym_bit_DASHor2] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1719), + [aux_sym__immediate_decimal_token1] = ACTIONS(1691), + [aux_sym__immediate_decimal_token2] = ACTIONS(1691), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1602), + [anon_sym_out_GT] = ACTIONS(1602), + [anon_sym_e_GT] = ACTIONS(1602), + [anon_sym_o_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT] = ACTIONS(1602), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(453)] = { - [sym_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [STATE(436)] = { + [sym_comment] = STATE(436), + [ts_builtin_sym_end] = ACTIONS(1498), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1498), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_has2] = ACTIONS(1498), + [anon_sym_not_DASHhas2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_like2] = ACTIONS(1498), + [anon_sym_not_DASHlike2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_DOT2] = ACTIONS(1496), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(454)] = { - [sym_comment] = STATE(454), + [STATE(437)] = { + [sym_path] = STATE(458), + [sym_comment] = STATE(437), + [aux_sym__where_predicate_lhs_repeat1] = STATE(437), + [anon_sym_in] = ACTIONS(1510), + [sym__newline] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_err_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_GT_PIPE] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), + [anon_sym_RPAREN] = ACTIONS(1510), + [anon_sym_GT2] = ACTIONS(1508), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_EQ_GT] = ACTIONS(1510), + [anon_sym_STAR2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1510), + [anon_sym_xor2] = ACTIONS(1510), + [anon_sym_or2] = ACTIONS(1510), + [anon_sym_not_DASHin2] = ACTIONS(1510), + [anon_sym_has2] = ACTIONS(1510), + [anon_sym_not_DASHhas2] = ACTIONS(1510), + [anon_sym_starts_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), + [anon_sym_ends_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), + [anon_sym_EQ_EQ2] = ACTIONS(1510), + [anon_sym_BANG_EQ2] = ACTIONS(1510), + [anon_sym_LT2] = ACTIONS(1508), + [anon_sym_LT_EQ2] = ACTIONS(1510), + [anon_sym_GT_EQ2] = ACTIONS(1510), + [anon_sym_EQ_TILDE2] = ACTIONS(1510), + [anon_sym_BANG_TILDE2] = ACTIONS(1510), + [anon_sym_like2] = ACTIONS(1510), + [anon_sym_not_DASHlike2] = ACTIONS(1510), + [anon_sym_STAR_STAR2] = ACTIONS(1510), + [anon_sym_PLUS_PLUS2] = ACTIONS(1510), + [anon_sym_SLASH2] = ACTIONS(1508), + [anon_sym_mod2] = ACTIONS(1510), + [anon_sym_SLASH_SLASH2] = ACTIONS(1510), + [anon_sym_PLUS2] = ACTIONS(1508), + [anon_sym_bit_DASHshl2] = ACTIONS(1510), + [anon_sym_bit_DASHshr2] = ACTIONS(1510), + [anon_sym_bit_DASHand2] = ACTIONS(1510), + [anon_sym_bit_DASHxor2] = ACTIONS(1510), + [anon_sym_bit_DASHor2] = ACTIONS(1510), + [anon_sym_DOT_DOT2] = ACTIONS(1508), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), + [anon_sym_COLON2] = ACTIONS(1510), + [anon_sym_DOT2] = ACTIONS(1721), + [anon_sym_err_GT] = ACTIONS(1508), + [anon_sym_out_GT] = ACTIONS(1508), + [anon_sym_e_GT] = ACTIONS(1508), + [anon_sym_o_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT] = ACTIONS(1508), + [anon_sym_err_GT_GT] = ACTIONS(1510), + [anon_sym_out_GT_GT] = ACTIONS(1510), + [anon_sym_e_GT_GT] = ACTIONS(1510), + [anon_sym_o_GT_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(438)] = { + [sym__expr_parenthesized_immediate] = STATE(4801), + [sym_comment] = STATE(438), + [anon_sym_in] = ACTIONS(886), + [sym__newline] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(886), + [anon_sym_err_GT_PIPE] = ACTIONS(886), + [anon_sym_out_GT_PIPE] = ACTIONS(886), + [anon_sym_e_GT_PIPE] = ACTIONS(886), + [anon_sym_o_GT_PIPE] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(886), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(886), + [anon_sym_RBRACE] = ACTIONS(886), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(886), + [anon_sym_xor2] = ACTIONS(886), + [anon_sym_or2] = ACTIONS(886), + [anon_sym_not_DASHin2] = ACTIONS(886), + [anon_sym_has2] = ACTIONS(886), + [anon_sym_not_DASHhas2] = ACTIONS(886), + [anon_sym_starts_DASHwith2] = ACTIONS(886), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(886), + [anon_sym_ends_DASHwith2] = ACTIONS(886), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(886), + [anon_sym_EQ_EQ2] = ACTIONS(886), + [anon_sym_BANG_EQ2] = ACTIONS(886), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(886), + [anon_sym_GT_EQ2] = ACTIONS(886), + [anon_sym_EQ_TILDE2] = ACTIONS(886), + [anon_sym_BANG_TILDE2] = ACTIONS(886), + [anon_sym_like2] = ACTIONS(886), + [anon_sym_not_DASHlike2] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(886), + [anon_sym_PLUS_PLUS2] = ACTIONS(886), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(886), + [anon_sym_SLASH_SLASH2] = ACTIONS(886), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(886), + [anon_sym_bit_DASHshr2] = ACTIONS(886), + [anon_sym_bit_DASHand2] = ACTIONS(886), + [anon_sym_bit_DASHxor2] = ACTIONS(886), + [anon_sym_bit_DASHor2] = ACTIONS(886), + [anon_sym_DOT_DOT2] = ACTIONS(1726), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1728), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1728), + [sym_filesize_unit] = ACTIONS(1730), + [sym_duration_unit] = ACTIONS(1732), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(886), + [anon_sym_out_GT_GT] = ACTIONS(886), + [anon_sym_e_GT_GT] = ACTIONS(886), + [anon_sym_o_GT_GT] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), + [sym__unquoted_pattern] = ACTIONS(1734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(439)] = { + [sym_comment] = STATE(439), + [anon_sym_EQ] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1738), + [anon_sym_DASH_EQ] = ACTIONS(1738), + [anon_sym_STAR_EQ] = ACTIONS(1738), + [anon_sym_SLASH_EQ] = ACTIONS(1738), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_RPAREN] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1614), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1614), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(440)] = { + [sym_comment] = STATE(440), [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), @@ -82838,10 +82421,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(749), [anon_sym_bit_DASHor2] = ACTIONS(749), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1740), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1764), - [aux_sym__immediate_decimal_token5] = ACTIONS(1766), + [aux_sym__immediate_decimal_token5] = ACTIONS(1742), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -82863,896 +82446,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(455)] = { - [sym_cmd_identifier] = STATE(4308), - [sym__match_pattern_record_body] = STATE(5085), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4048), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(455), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(456)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4796), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(456), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(457)] = { - [sym_cmd_identifier] = STATE(4308), - [sym__match_pattern_record_body] = STATE(4816), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4048), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(457), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(458)] = { - [sym_cmd_identifier] = STATE(4308), - [sym__match_pattern_record_body] = STATE(5190), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4048), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(458), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(459)] = { - [sym_comment] = STATE(459), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(1806), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(460)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(460), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1808), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(461)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5191), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(461), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [STATE(441)] = { + [sym_comment] = STATE(441), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [anon_sym_DOT_DOT2] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1748), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1744), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1744), + [aux_sym__immediate_decimal_token5] = ACTIONS(1750), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [sym__unquoted_pattern] = ACTIONS(1746), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(462)] = { - [sym_comment] = STATE(462), - [anon_sym_in] = ACTIONS(851), - [sym__newline] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_err_GT_PIPE] = ACTIONS(851), - [anon_sym_out_GT_PIPE] = ACTIONS(851), - [anon_sym_e_GT_PIPE] = ACTIONS(851), - [anon_sym_o_GT_PIPE] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(851), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(851), - [anon_sym_RBRACE] = ACTIONS(851), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(851), - [anon_sym_xor2] = ACTIONS(851), - [anon_sym_or2] = ACTIONS(851), - [anon_sym_not_DASHin2] = ACTIONS(851), - [anon_sym_has2] = ACTIONS(851), - [anon_sym_not_DASHhas2] = ACTIONS(851), - [anon_sym_starts_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(851), - [anon_sym_ends_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(851), - [anon_sym_EQ_EQ2] = ACTIONS(851), - [anon_sym_BANG_EQ2] = ACTIONS(851), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(851), - [anon_sym_GT_EQ2] = ACTIONS(851), - [anon_sym_EQ_TILDE2] = ACTIONS(851), - [anon_sym_BANG_TILDE2] = ACTIONS(851), - [anon_sym_like2] = ACTIONS(851), - [anon_sym_not_DASHlike2] = ACTIONS(851), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_STAR_STAR2] = ACTIONS(851), - [anon_sym_PLUS_PLUS2] = ACTIONS(851), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(851), - [anon_sym_SLASH_SLASH2] = ACTIONS(851), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(851), - [anon_sym_bit_DASHshr2] = ACTIONS(851), - [anon_sym_bit_DASHand2] = ACTIONS(851), - [anon_sym_bit_DASHxor2] = ACTIONS(851), - [anon_sym_bit_DASHor2] = ACTIONS(851), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(851), - [anon_sym_out_GT_GT] = ACTIONS(851), - [anon_sym_e_GT_GT] = ACTIONS(851), - [anon_sym_o_GT_GT] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(851), - [sym__unquoted_pattern] = ACTIONS(849), + [STATE(442)] = { + [sym_comment] = STATE(442), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_EQ_GT] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1448), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1448), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_COLON2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(463)] = { - [sym__expr_parenthesized_immediate] = STATE(4775), - [sym_comment] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(1812), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1814), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1814), - [sym_filesize_unit] = ACTIONS(1816), - [sym_duration_unit] = ACTIONS(1818), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1820), + [STATE(443)] = { + [sym_comment] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(741), + [sym__newline] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_err_GT_PIPE] = ACTIONS(741), + [anon_sym_out_GT_PIPE] = ACTIONS(741), + [anon_sym_e_GT_PIPE] = ACTIONS(741), + [anon_sym_o_GT_PIPE] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(741), + [anon_sym_xor2] = ACTIONS(741), + [anon_sym_or2] = ACTIONS(741), + [anon_sym_not_DASHin2] = ACTIONS(741), + [anon_sym_has2] = ACTIONS(741), + [anon_sym_not_DASHhas2] = ACTIONS(741), + [anon_sym_starts_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), + [anon_sym_ends_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), + [anon_sym_EQ_EQ2] = ACTIONS(741), + [anon_sym_BANG_EQ2] = ACTIONS(741), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(741), + [anon_sym_GT_EQ2] = ACTIONS(741), + [anon_sym_EQ_TILDE2] = ACTIONS(741), + [anon_sym_BANG_TILDE2] = ACTIONS(741), + [anon_sym_like2] = ACTIONS(741), + [anon_sym_not_DASHlike2] = ACTIONS(741), + [anon_sym_LPAREN2] = ACTIONS(741), + [anon_sym_STAR_STAR2] = ACTIONS(741), + [anon_sym_PLUS_PLUS2] = ACTIONS(741), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(741), + [anon_sym_SLASH_SLASH2] = ACTIONS(741), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(741), + [anon_sym_bit_DASHshr2] = ACTIONS(741), + [anon_sym_bit_DASHand2] = ACTIONS(741), + [anon_sym_bit_DASHxor2] = ACTIONS(741), + [anon_sym_bit_DASHor2] = ACTIONS(741), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(1754), + [aux_sym__immediate_decimal_token5] = ACTIONS(1756), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(741), + [anon_sym_out_GT_GT] = ACTIONS(741), + [anon_sym_e_GT_GT] = ACTIONS(741), + [anon_sym_o_GT_GT] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), + [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(464)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4583), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(464), - [aux_sym__types_body_repeat1] = STATE(2117), - [aux_sym_list_body_repeat1] = STATE(630), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [STATE(444)] = { + [sym_comment] = STATE(444), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_in] = ACTIONS(1564), [sym__newline] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(465)] = { - [sym_comment] = STATE(465), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_COLON2] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_err_GT_PIPE] = ACTIONS(1564), + [anon_sym_out_GT_PIPE] = ACTIONS(1564), + [anon_sym_e_GT_PIPE] = ACTIONS(1564), + [anon_sym_o_GT_PIPE] = ACTIONS(1564), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1564), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1564), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1564), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_GT2] = ACTIONS(1562), + [anon_sym_DASH2] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_EQ_GT] = ACTIONS(1564), + [anon_sym_STAR2] = ACTIONS(1562), + [anon_sym_and2] = ACTIONS(1564), + [anon_sym_xor2] = ACTIONS(1564), + [anon_sym_or2] = ACTIONS(1564), + [anon_sym_not_DASHin2] = ACTIONS(1564), + [anon_sym_has2] = ACTIONS(1564), + [anon_sym_not_DASHhas2] = ACTIONS(1564), + [anon_sym_starts_DASHwith2] = ACTIONS(1564), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1564), + [anon_sym_ends_DASHwith2] = ACTIONS(1564), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1564), + [anon_sym_EQ_EQ2] = ACTIONS(1564), + [anon_sym_BANG_EQ2] = ACTIONS(1564), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ2] = ACTIONS(1564), + [anon_sym_GT_EQ2] = ACTIONS(1564), + [anon_sym_EQ_TILDE2] = ACTIONS(1564), + [anon_sym_BANG_TILDE2] = ACTIONS(1564), + [anon_sym_like2] = ACTIONS(1564), + [anon_sym_not_DASHlike2] = ACTIONS(1564), + [anon_sym_STAR_STAR2] = ACTIONS(1564), + [anon_sym_PLUS_PLUS2] = ACTIONS(1564), + [anon_sym_SLASH2] = ACTIONS(1562), + [anon_sym_mod2] = ACTIONS(1564), + [anon_sym_SLASH_SLASH2] = ACTIONS(1564), + [anon_sym_PLUS2] = ACTIONS(1562), + [anon_sym_bit_DASHshl2] = ACTIONS(1564), + [anon_sym_bit_DASHshr2] = ACTIONS(1564), + [anon_sym_bit_DASHand2] = ACTIONS(1564), + [anon_sym_bit_DASHxor2] = ACTIONS(1564), + [anon_sym_bit_DASHor2] = ACTIONS(1564), + [anon_sym_DOT_DOT2] = ACTIONS(1562), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1564), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1564), + [anon_sym_COLON2] = ACTIONS(1564), + [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_err_GT] = ACTIONS(1562), + [anon_sym_out_GT] = ACTIONS(1562), + [anon_sym_e_GT] = ACTIONS(1562), + [anon_sym_o_GT] = ACTIONS(1562), + [anon_sym_err_PLUSout_GT] = ACTIONS(1562), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1562), + [anon_sym_o_PLUSe_GT] = ACTIONS(1562), + [anon_sym_e_PLUSo_GT] = ACTIONS(1562), + [anon_sym_err_GT_GT] = ACTIONS(1564), + [anon_sym_out_GT_GT] = ACTIONS(1564), + [anon_sym_e_GT_GT] = ACTIONS(1564), + [anon_sym_o_GT_GT] = ACTIONS(1564), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1564), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1564), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1564), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1564), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(466)] = { - [sym_comment] = STATE(466), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_err_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_GT_PIPE] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_RPAREN] = ACTIONS(1822), - [anon_sym_GT2] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_EQ_GT] = ACTIONS(1822), - [anon_sym_STAR2] = ACTIONS(1824), - [anon_sym_and2] = ACTIONS(1822), - [anon_sym_xor2] = ACTIONS(1822), - [anon_sym_or2] = ACTIONS(1822), - [anon_sym_not_DASHin2] = ACTIONS(1822), - [anon_sym_has2] = ACTIONS(1822), - [anon_sym_not_DASHhas2] = ACTIONS(1822), - [anon_sym_starts_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1822), - [anon_sym_ends_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1822), - [anon_sym_EQ_EQ2] = ACTIONS(1822), - [anon_sym_BANG_EQ2] = ACTIONS(1822), - [anon_sym_LT2] = ACTIONS(1824), - [anon_sym_LT_EQ2] = ACTIONS(1822), - [anon_sym_GT_EQ2] = ACTIONS(1822), - [anon_sym_EQ_TILDE2] = ACTIONS(1822), - [anon_sym_BANG_TILDE2] = ACTIONS(1822), - [anon_sym_like2] = ACTIONS(1822), - [anon_sym_not_DASHlike2] = ACTIONS(1822), - [anon_sym_STAR_STAR2] = ACTIONS(1822), - [anon_sym_PLUS_PLUS2] = ACTIONS(1822), - [anon_sym_SLASH2] = ACTIONS(1824), - [anon_sym_mod2] = ACTIONS(1822), - [anon_sym_SLASH_SLASH2] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_bit_DASHshl2] = ACTIONS(1822), - [anon_sym_bit_DASHshr2] = ACTIONS(1822), - [anon_sym_bit_DASHand2] = ACTIONS(1822), - [anon_sym_bit_DASHxor2] = ACTIONS(1822), - [anon_sym_bit_DASHor2] = ACTIONS(1822), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), - [anon_sym_COLON2] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [STATE(445)] = { + [sym__expr_parenthesized_immediate] = STATE(1315), + [sym__immediate_decimal] = STATE(1340), + [sym_val_variable] = STATE(1315), + [sym_comment] = STATE(445), + [ts_builtin_sym_end] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1641), + [anon_sym_DASH2] = ACTIONS(1641), + [anon_sym_STAR2] = ACTIONS(1641), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1641), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_like2] = ACTIONS(1639), + [anon_sym_not_DASHlike2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1641), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1641), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [aux_sym__immediate_decimal_token1] = ACTIONS(1758), + [aux_sym__immediate_decimal_token2] = ACTIONS(1758), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [anon_sym_err_GT_GT] = ACTIONS(1639), + [anon_sym_out_GT_GT] = ACTIONS(1639), + [anon_sym_e_GT_GT] = ACTIONS(1639), + [anon_sym_o_GT_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(467)] = { - [sym_comment] = STATE(467), + [STATE(446)] = { + [sym_comment] = STATE(446), [anon_sym_in] = ACTIONS(773), [sym__newline] = ACTIONS(773), [anon_sym_SEMI] = ACTIONS(773), @@ -83804,6 +82874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1760), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -83825,30 +82896,930 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(468)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5015), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(468), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(447)] = { + [sym_comment] = STATE(447), + [ts_builtin_sym_end] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1614), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1614), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(448)] = { + [sym_comment] = STATE(448), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_EQ_GT] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_has2] = ACTIONS(1498), + [anon_sym_not_DASHhas2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_like2] = ACTIONS(1498), + [anon_sym_not_DASHlike2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1498), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_COLON2] = ACTIONS(1498), + [anon_sym_DOT2] = ACTIONS(1496), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(449)] = { + [sym_comment] = STATE(449), + [anon_sym_in] = ACTIONS(749), + [sym__newline] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_err_GT_PIPE] = ACTIONS(749), + [anon_sym_out_GT_PIPE] = ACTIONS(749), + [anon_sym_e_GT_PIPE] = ACTIONS(749), + [anon_sym_o_GT_PIPE] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(749), + [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(749), + [anon_sym_xor2] = ACTIONS(749), + [anon_sym_or2] = ACTIONS(749), + [anon_sym_not_DASHin2] = ACTIONS(749), + [anon_sym_has2] = ACTIONS(749), + [anon_sym_not_DASHhas2] = ACTIONS(749), + [anon_sym_starts_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), + [anon_sym_ends_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), + [anon_sym_EQ_EQ2] = ACTIONS(749), + [anon_sym_BANG_EQ2] = ACTIONS(749), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(749), + [anon_sym_GT_EQ2] = ACTIONS(749), + [anon_sym_EQ_TILDE2] = ACTIONS(749), + [anon_sym_BANG_TILDE2] = ACTIONS(749), + [anon_sym_like2] = ACTIONS(749), + [anon_sym_not_DASHlike2] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(749), + [anon_sym_STAR_STAR2] = ACTIONS(749), + [anon_sym_PLUS_PLUS2] = ACTIONS(749), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(749), + [anon_sym_SLASH_SLASH2] = ACTIONS(749), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(749), + [anon_sym_bit_DASHshr2] = ACTIONS(749), + [anon_sym_bit_DASHand2] = ACTIONS(749), + [anon_sym_bit_DASHxor2] = ACTIONS(749), + [anon_sym_bit_DASHor2] = ACTIONS(749), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1705), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(749), + [anon_sym_out_GT_GT] = ACTIONS(749), + [anon_sym_e_GT_GT] = ACTIONS(749), + [anon_sym_o_GT_GT] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), + [sym__unquoted_pattern] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(450)] = { + [sym__expr_parenthesized_immediate] = STATE(1337), + [sym__immediate_decimal] = STATE(1339), + [sym_val_variable] = STATE(1337), + [sym_comment] = STATE(450), + [ts_builtin_sym_end] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [sym__newline] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_err_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_GT_PIPE] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1667), + [anon_sym_xor2] = ACTIONS(1667), + [anon_sym_or2] = ACTIONS(1667), + [anon_sym_not_DASHin2] = ACTIONS(1667), + [anon_sym_has2] = ACTIONS(1667), + [anon_sym_not_DASHhas2] = ACTIONS(1667), + [anon_sym_starts_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), + [anon_sym_ends_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), + [anon_sym_EQ_EQ2] = ACTIONS(1667), + [anon_sym_BANG_EQ2] = ACTIONS(1667), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1667), + [anon_sym_GT_EQ2] = ACTIONS(1667), + [anon_sym_EQ_TILDE2] = ACTIONS(1667), + [anon_sym_BANG_TILDE2] = ACTIONS(1667), + [anon_sym_like2] = ACTIONS(1667), + [anon_sym_not_DASHlike2] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1667), + [anon_sym_PLUS_PLUS2] = ACTIONS(1667), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1667), + [anon_sym_SLASH_SLASH2] = ACTIONS(1667), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1667), + [anon_sym_bit_DASHshr2] = ACTIONS(1667), + [anon_sym_bit_DASHand2] = ACTIONS(1667), + [anon_sym_bit_DASHxor2] = ACTIONS(1667), + [anon_sym_bit_DASHor2] = ACTIONS(1667), + [aux_sym__immediate_decimal_token1] = ACTIONS(1758), + [aux_sym__immediate_decimal_token2] = ACTIONS(1758), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1667), + [anon_sym_out_GT_GT] = ACTIONS(1667), + [anon_sym_e_GT_GT] = ACTIONS(1667), + [anon_sym_o_GT_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(451)] = { + [sym_comment] = STATE(451), + [anon_sym_EQ] = ACTIONS(1612), + [anon_sym_PLUS_EQ] = ACTIONS(1711), + [anon_sym_DASH_EQ] = ACTIONS(1711), + [anon_sym_STAR_EQ] = ACTIONS(1711), + [anon_sym_SLASH_EQ] = ACTIONS(1711), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1614), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(452)] = { + [sym__expr_parenthesized_immediate] = STATE(1342), + [sym__immediate_decimal] = STATE(1350), + [sym_val_variable] = STATE(1342), + [sym_comment] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(1681), + [anon_sym_in] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1683), + [anon_sym_STAR2] = ACTIONS(1683), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_has2] = ACTIONS(1681), + [anon_sym_not_DASHhas2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1683), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_like2] = ACTIONS(1681), + [anon_sym_not_DASHlike2] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1683), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1683), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [aux_sym__immediate_decimal_token1] = ACTIONS(1758), + [aux_sym__immediate_decimal_token2] = ACTIONS(1758), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1683), + [anon_sym_out_GT] = ACTIONS(1683), + [anon_sym_e_GT] = ACTIONS(1683), + [anon_sym_o_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT] = ACTIONS(1683), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(453)] = { + [sym_comment] = STATE(453), + [anon_sym_in] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_STAR2] = ACTIONS(1772), + [anon_sym_and2] = ACTIONS(1770), + [anon_sym_xor2] = ACTIONS(1770), + [anon_sym_or2] = ACTIONS(1770), + [anon_sym_not_DASHin2] = ACTIONS(1770), + [anon_sym_has2] = ACTIONS(1770), + [anon_sym_not_DASHhas2] = ACTIONS(1770), + [anon_sym_starts_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), + [anon_sym_ends_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), + [anon_sym_EQ_EQ2] = ACTIONS(1770), + [anon_sym_BANG_EQ2] = ACTIONS(1770), + [anon_sym_LT2] = ACTIONS(1772), + [anon_sym_LT_EQ2] = ACTIONS(1770), + [anon_sym_GT_EQ2] = ACTIONS(1770), + [anon_sym_EQ_TILDE2] = ACTIONS(1770), + [anon_sym_BANG_TILDE2] = ACTIONS(1770), + [anon_sym_like2] = ACTIONS(1770), + [anon_sym_not_DASHlike2] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_STAR_STAR2] = ACTIONS(1770), + [anon_sym_PLUS_PLUS2] = ACTIONS(1770), + [anon_sym_SLASH2] = ACTIONS(1772), + [anon_sym_mod2] = ACTIONS(1770), + [anon_sym_SLASH_SLASH2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_bit_DASHshl2] = ACTIONS(1770), + [anon_sym_bit_DASHshr2] = ACTIONS(1770), + [anon_sym_bit_DASHand2] = ACTIONS(1770), + [anon_sym_bit_DASHxor2] = ACTIONS(1770), + [anon_sym_bit_DASHor2] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(1774), + [aux_sym__immediate_decimal_token5] = ACTIONS(1776), + [anon_sym_err_GT] = ACTIONS(1772), + [anon_sym_out_GT] = ACTIONS(1772), + [anon_sym_e_GT] = ACTIONS(1772), + [anon_sym_o_GT] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT] = ACTIONS(1772), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [sym__unquoted_pattern] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(454)] = { + [sym_comment] = STATE(454), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_PLUS_EQ] = ACTIONS(1780), + [anon_sym_DASH_EQ] = ACTIONS(1780), + [anon_sym_STAR_EQ] = ACTIONS(1780), + [anon_sym_SLASH_EQ] = ACTIONS(1780), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_RPAREN] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1614), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1614), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(455)] = { + [sym__expr_parenthesized_immediate] = STATE(1352), + [sym__immediate_decimal] = STATE(1278), + [sym_val_variable] = STATE(1352), + [sym_comment] = STATE(455), + [ts_builtin_sym_end] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1665), + [anon_sym_DASH2] = ACTIONS(1665), + [anon_sym_STAR2] = ACTIONS(1665), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_has2] = ACTIONS(1663), + [anon_sym_not_DASHhas2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1665), + [anon_sym_LT_EQ2] = ACTIONS(1663), + [anon_sym_GT_EQ2] = ACTIONS(1663), + [anon_sym_EQ_TILDE2] = ACTIONS(1663), + [anon_sym_BANG_TILDE2] = ACTIONS(1663), + [anon_sym_like2] = ACTIONS(1663), + [anon_sym_not_DASHlike2] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1665), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1665), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(1758), + [aux_sym__immediate_decimal_token2] = ACTIONS(1758), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1665), + [anon_sym_out_GT] = ACTIONS(1665), + [anon_sym_e_GT] = ACTIONS(1665), + [anon_sym_o_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT] = ACTIONS(1665), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(456)] = { + [sym__expr_parenthesized_immediate] = STATE(1279), + [sym__immediate_decimal] = STATE(1282), + [sym_val_variable] = STATE(1279), + [sym_comment] = STATE(456), + [ts_builtin_sym_end] = ACTIONS(1651), + [anon_sym_in] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_like2] = ACTIONS(1651), + [anon_sym_not_DASHlike2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [aux_sym__immediate_decimal_token1] = ACTIONS(1758), + [aux_sym__immediate_decimal_token2] = ACTIONS(1758), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(457)] = { + [sym__expr_parenthesized_immediate] = STATE(1299), + [sym__immediate_decimal] = STATE(1312), + [sym_val_variable] = STATE(1299), + [sym_comment] = STATE(457), + [ts_builtin_sym_end] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1602), + [anon_sym_DASH2] = ACTIONS(1602), + [anon_sym_STAR2] = ACTIONS(1602), + [anon_sym_and2] = ACTIONS(1598), + [anon_sym_xor2] = ACTIONS(1598), + [anon_sym_or2] = ACTIONS(1598), + [anon_sym_not_DASHin2] = ACTIONS(1598), + [anon_sym_has2] = ACTIONS(1598), + [anon_sym_not_DASHhas2] = ACTIONS(1598), + [anon_sym_starts_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), + [anon_sym_ends_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), + [anon_sym_EQ_EQ2] = ACTIONS(1598), + [anon_sym_BANG_EQ2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1602), + [anon_sym_LT_EQ2] = ACTIONS(1598), + [anon_sym_GT_EQ2] = ACTIONS(1598), + [anon_sym_EQ_TILDE2] = ACTIONS(1598), + [anon_sym_BANG_TILDE2] = ACTIONS(1598), + [anon_sym_like2] = ACTIONS(1598), + [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1598), + [anon_sym_SLASH2] = ACTIONS(1602), + [anon_sym_mod2] = ACTIONS(1598), + [anon_sym_SLASH_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1602), + [anon_sym_bit_DASHshl2] = ACTIONS(1598), + [anon_sym_bit_DASHshr2] = ACTIONS(1598), + [anon_sym_bit_DASHand2] = ACTIONS(1598), + [anon_sym_bit_DASHxor2] = ACTIONS(1598), + [anon_sym_bit_DASHor2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token1] = ACTIONS(1758), + [aux_sym__immediate_decimal_token2] = ACTIONS(1758), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1602), + [anon_sym_out_GT] = ACTIONS(1602), + [anon_sym_e_GT] = ACTIONS(1602), + [anon_sym_o_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT] = ACTIONS(1602), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(458)] = { + [sym_comment] = STATE(458), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_in] = ACTIONS(1549), + [sym__newline] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_err_GT_PIPE] = ACTIONS(1549), + [anon_sym_out_GT_PIPE] = ACTIONS(1549), + [anon_sym_e_GT_PIPE] = ACTIONS(1549), + [anon_sym_o_GT_PIPE] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_GT2] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_EQ_GT] = ACTIONS(1549), + [anon_sym_STAR2] = ACTIONS(1547), + [anon_sym_and2] = ACTIONS(1549), + [anon_sym_xor2] = ACTIONS(1549), + [anon_sym_or2] = ACTIONS(1549), + [anon_sym_not_DASHin2] = ACTIONS(1549), + [anon_sym_has2] = ACTIONS(1549), + [anon_sym_not_DASHhas2] = ACTIONS(1549), + [anon_sym_starts_DASHwith2] = ACTIONS(1549), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1549), + [anon_sym_ends_DASHwith2] = ACTIONS(1549), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1549), + [anon_sym_EQ_EQ2] = ACTIONS(1549), + [anon_sym_BANG_EQ2] = ACTIONS(1549), + [anon_sym_LT2] = ACTIONS(1547), + [anon_sym_LT_EQ2] = ACTIONS(1549), + [anon_sym_GT_EQ2] = ACTIONS(1549), + [anon_sym_EQ_TILDE2] = ACTIONS(1549), + [anon_sym_BANG_TILDE2] = ACTIONS(1549), + [anon_sym_like2] = ACTIONS(1549), + [anon_sym_not_DASHlike2] = ACTIONS(1549), + [anon_sym_STAR_STAR2] = ACTIONS(1549), + [anon_sym_PLUS_PLUS2] = ACTIONS(1549), + [anon_sym_SLASH2] = ACTIONS(1547), + [anon_sym_mod2] = ACTIONS(1549), + [anon_sym_SLASH_SLASH2] = ACTIONS(1549), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_bit_DASHshl2] = ACTIONS(1549), + [anon_sym_bit_DASHshr2] = ACTIONS(1549), + [anon_sym_bit_DASHand2] = ACTIONS(1549), + [anon_sym_bit_DASHxor2] = ACTIONS(1549), + [anon_sym_bit_DASHor2] = ACTIONS(1549), + [anon_sym_DOT_DOT2] = ACTIONS(1547), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), + [anon_sym_COLON2] = ACTIONS(1549), + [anon_sym_DOT2] = ACTIONS(1547), + [anon_sym_err_GT] = ACTIONS(1547), + [anon_sym_out_GT] = ACTIONS(1547), + [anon_sym_e_GT] = ACTIONS(1547), + [anon_sym_o_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT] = ACTIONS(1547), + [anon_sym_err_GT_GT] = ACTIONS(1549), + [anon_sym_out_GT_GT] = ACTIONS(1549), + [anon_sym_e_GT_GT] = ACTIONS(1549), + [anon_sym_o_GT_GT] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(459)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5161), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(459), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83869,39 +83840,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1806), }, - [STATE(469)] = { - [sym_comment] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(741), + [STATE(460)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5220), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(460), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_record_body_repeat1] = STATE(813), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(461)] = { + [sym_comment] = STATE(461), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(741), @@ -83914,8 +83958,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(741), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(741), [anon_sym_xor2] = ACTIONS(741), @@ -83951,7 +83997,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1712), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -83973,157 +84018,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(470)] = { - [sym_comment] = STATE(470), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [STATE(462)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5116), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(462), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_record_body_repeat1] = STATE(813), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), }, - [STATE(471)] = { - [sym_comment] = STATE(471), - [anon_sym_EQ] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1830), - [anon_sym_DASH_EQ] = ACTIONS(1830), - [anon_sym_STAR_EQ] = ACTIONS(1830), - [anon_sym_SLASH_EQ] = ACTIONS(1830), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1830), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [STATE(463)] = { + [sym__expr_parenthesized_immediate] = STATE(4881), + [sym_comment] = STATE(463), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_in] = ACTIONS(886), + [sym__newline] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(886), + [anon_sym_err_GT_PIPE] = ACTIONS(886), + [anon_sym_out_GT_PIPE] = ACTIONS(886), + [anon_sym_e_GT_PIPE] = ACTIONS(886), + [anon_sym_o_GT_PIPE] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(886), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(886), + [anon_sym_xor2] = ACTIONS(886), + [anon_sym_or2] = ACTIONS(886), + [anon_sym_not_DASHin2] = ACTIONS(886), + [anon_sym_has2] = ACTIONS(886), + [anon_sym_not_DASHhas2] = ACTIONS(886), + [anon_sym_starts_DASHwith2] = ACTIONS(886), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(886), + [anon_sym_ends_DASHwith2] = ACTIONS(886), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(886), + [anon_sym_EQ_EQ2] = ACTIONS(886), + [anon_sym_BANG_EQ2] = ACTIONS(886), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(886), + [anon_sym_GT_EQ2] = ACTIONS(886), + [anon_sym_EQ_TILDE2] = ACTIONS(886), + [anon_sym_BANG_TILDE2] = ACTIONS(886), + [anon_sym_like2] = ACTIONS(886), + [anon_sym_not_DASHlike2] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(886), + [anon_sym_PLUS_PLUS2] = ACTIONS(886), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(886), + [anon_sym_SLASH_SLASH2] = ACTIONS(886), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(886), + [anon_sym_bit_DASHshr2] = ACTIONS(886), + [anon_sym_bit_DASHand2] = ACTIONS(886), + [anon_sym_bit_DASHxor2] = ACTIONS(886), + [anon_sym_bit_DASHor2] = ACTIONS(886), + [anon_sym_DOT_DOT2] = ACTIONS(1812), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1814), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1814), + [sym_filesize_unit] = ACTIONS(1816), + [sym_duration_unit] = ACTIONS(1818), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(886), + [anon_sym_out_GT_GT] = ACTIONS(886), + [anon_sym_e_GT_GT] = ACTIONS(886), + [anon_sym_o_GT_GT] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), + [sym__unquoted_pattern] = ACTIONS(1820), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(472)] = { - [sym_comment] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(773), + [STATE(464)] = { + [sym_comment] = STATE(464), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [anon_sym_DOT_DOT2] = ACTIONS(1746), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1744), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1744), + [aux_sym__immediate_decimal_token5] = ACTIONS(1750), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [sym__unquoted_pattern] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(465)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_val_entry] = STATE(4777), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(465), + [aux_sym__types_body_repeat1] = STATE(2153), + [aux_sym_list_body_repeat1] = STATE(530), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [sym__newline] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(466)] = { + [sym_comment] = STATE(466), [anon_sym_in] = ACTIONS(773), [sym__newline] = ACTIONS(773), [anon_sym_SEMI] = ACTIONS(773), @@ -84136,8 +84328,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(773), [anon_sym_xor2] = ACTIONS(773), @@ -84173,7 +84367,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1832), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -84195,8 +84388,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(473)] = { - [sym_comment] = STATE(473), + [STATE(467)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5088), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(467), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_record_body_repeat1] = STATE(813), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(468)] = { + [sym_comment] = STATE(468), + [anon_sym_in] = ACTIONS(862), + [sym__newline] = ACTIONS(862), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_PIPE] = ACTIONS(862), + [anon_sym_err_GT_PIPE] = ACTIONS(862), + [anon_sym_out_GT_PIPE] = ACTIONS(862), + [anon_sym_e_GT_PIPE] = ACTIONS(862), + [anon_sym_o_GT_PIPE] = ACTIONS(862), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(862), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(862), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(862), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(862), + [anon_sym_RPAREN] = ACTIONS(862), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(862), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(862), + [anon_sym_xor2] = ACTIONS(862), + [anon_sym_or2] = ACTIONS(862), + [anon_sym_not_DASHin2] = ACTIONS(862), + [anon_sym_has2] = ACTIONS(862), + [anon_sym_not_DASHhas2] = ACTIONS(862), + [anon_sym_starts_DASHwith2] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(862), + [anon_sym_ends_DASHwith2] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(862), + [anon_sym_EQ_EQ2] = ACTIONS(862), + [anon_sym_BANG_EQ2] = ACTIONS(862), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(862), + [anon_sym_GT_EQ2] = ACTIONS(862), + [anon_sym_EQ_TILDE2] = ACTIONS(862), + [anon_sym_BANG_TILDE2] = ACTIONS(862), + [anon_sym_like2] = ACTIONS(862), + [anon_sym_not_DASHlike2] = ACTIONS(862), + [anon_sym_LPAREN2] = ACTIONS(862), + [anon_sym_STAR_STAR2] = ACTIONS(862), + [anon_sym_PLUS_PLUS2] = ACTIONS(862), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(862), + [anon_sym_SLASH_SLASH2] = ACTIONS(862), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(862), + [anon_sym_bit_DASHshr2] = ACTIONS(862), + [anon_sym_bit_DASHand2] = ACTIONS(862), + [anon_sym_bit_DASHxor2] = ACTIONS(862), + [anon_sym_bit_DASHor2] = ACTIONS(862), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(862), + [anon_sym_out_GT_GT] = ACTIONS(862), + [anon_sym_e_GT_GT] = ACTIONS(862), + [anon_sym_o_GT_GT] = ACTIONS(862), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(862), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(862), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(862), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(862), + [sym__unquoted_pattern] = ACTIONS(860), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(469)] = { + [sym_comment] = STATE(469), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), [anon_sym_SEMI] = ACTIONS(749), @@ -84209,10 +84551,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(749), [anon_sym_xor2] = ACTIONS(749), @@ -84248,6 +84588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1742), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -84269,104 +84610,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(474)] = { - [sym_comment] = STATE(474), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1836), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [STATE(470)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5202), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(470), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_record_body_repeat1] = STATE(813), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), }, - [STATE(475)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5053), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(475), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(471)] = { + [sym_comment] = STATE(471), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_in] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_GT2] = ACTIONS(1647), + [anon_sym_DASH2] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_EQ_GT] = ACTIONS(1645), + [anon_sym_STAR2] = ACTIONS(1647), + [anon_sym_and2] = ACTIONS(1645), + [anon_sym_xor2] = ACTIONS(1645), + [anon_sym_or2] = ACTIONS(1645), + [anon_sym_not_DASHin2] = ACTIONS(1645), + [anon_sym_has2] = ACTIONS(1645), + [anon_sym_not_DASHhas2] = ACTIONS(1645), + [anon_sym_starts_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1645), + [anon_sym_ends_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1645), + [anon_sym_EQ_EQ2] = ACTIONS(1645), + [anon_sym_BANG_EQ2] = ACTIONS(1645), + [anon_sym_LT2] = ACTIONS(1647), + [anon_sym_LT_EQ2] = ACTIONS(1645), + [anon_sym_GT_EQ2] = ACTIONS(1645), + [anon_sym_EQ_TILDE2] = ACTIONS(1645), + [anon_sym_BANG_TILDE2] = ACTIONS(1645), + [anon_sym_like2] = ACTIONS(1645), + [anon_sym_not_DASHlike2] = ACTIONS(1645), + [anon_sym_STAR_STAR2] = ACTIONS(1645), + [anon_sym_PLUS_PLUS2] = ACTIONS(1645), + [anon_sym_SLASH2] = ACTIONS(1647), + [anon_sym_mod2] = ACTIONS(1645), + [anon_sym_SLASH_SLASH2] = ACTIONS(1645), + [anon_sym_PLUS2] = ACTIONS(1647), + [anon_sym_bit_DASHshl2] = ACTIONS(1645), + [anon_sym_bit_DASHshr2] = ACTIONS(1645), + [anon_sym_bit_DASHand2] = ACTIONS(1645), + [anon_sym_bit_DASHxor2] = ACTIONS(1645), + [anon_sym_bit_DASHor2] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1647), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [anon_sym_COLON2] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1647), + [anon_sym_out_GT] = ACTIONS(1647), + [anon_sym_e_GT] = ACTIONS(1647), + [anon_sym_o_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT] = ACTIONS(1647), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(472)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(4977), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(472), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84387,38 +84802,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1826), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1806), }, - [STATE(476)] = { - [sym_comment] = STATE(476), + [STATE(473)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5359), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(473), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_record_body_repeat1] = STATE(813), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(474)] = { + [sym_comment] = STATE(474), [ts_builtin_sym_end] = ACTIONS(773), [anon_sym_in] = ACTIONS(773), [sym__newline] = ACTIONS(773), @@ -84469,6 +84958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1830), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -84490,595 +84980,601 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(477)] = { - [sym_comment] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(1840), - [aux_sym__immediate_decimal_token5] = ACTIONS(1842), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(478)] = { - [sym_cell_path] = STATE(935), - [sym_path] = STATE(783), - [sym_comment] = STATE(478), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(479)] = { - [sym_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(480)] = { - [sym_comment] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(481)] = { - [sym_comment] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1846), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(482)] = { - [sym_comment] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1476), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(483)] = { - [sym_comment] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1516), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [STATE(475)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5216), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(475), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_record_body_repeat1] = STATE(813), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), }, - [STATE(484)] = { - [sym_cell_path] = STATE(923), - [sym_path] = STATE(441), - [sym_comment] = STATE(484), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1850), - [sym__newline] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_err_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_GT_PIPE] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1850), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_GT2] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(1850), - [anon_sym_STAR2] = ACTIONS(1853), - [anon_sym_and2] = ACTIONS(1850), - [anon_sym_xor2] = ACTIONS(1850), - [anon_sym_or2] = ACTIONS(1850), - [anon_sym_not_DASHin2] = ACTIONS(1850), - [anon_sym_has2] = ACTIONS(1850), - [anon_sym_not_DASHhas2] = ACTIONS(1850), - [anon_sym_starts_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1850), - [anon_sym_ends_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1850), - [anon_sym_EQ_EQ2] = ACTIONS(1850), - [anon_sym_BANG_EQ2] = ACTIONS(1850), - [anon_sym_LT2] = ACTIONS(1853), - [anon_sym_LT_EQ2] = ACTIONS(1850), - [anon_sym_GT_EQ2] = ACTIONS(1850), - [anon_sym_EQ_TILDE2] = ACTIONS(1850), - [anon_sym_BANG_TILDE2] = ACTIONS(1850), - [anon_sym_like2] = ACTIONS(1850), - [anon_sym_not_DASHlike2] = ACTIONS(1850), - [anon_sym_STAR_STAR2] = ACTIONS(1850), - [anon_sym_PLUS_PLUS2] = ACTIONS(1850), - [anon_sym_SLASH2] = ACTIONS(1853), - [anon_sym_mod2] = ACTIONS(1850), - [anon_sym_SLASH_SLASH2] = ACTIONS(1850), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_bit_DASHshl2] = ACTIONS(1850), - [anon_sym_bit_DASHshr2] = ACTIONS(1850), - [anon_sym_bit_DASHand2] = ACTIONS(1850), - [anon_sym_bit_DASHxor2] = ACTIONS(1850), - [anon_sym_bit_DASHor2] = ACTIONS(1850), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1853), - [anon_sym_out_GT] = ACTIONS(1853), - [anon_sym_e_GT] = ACTIONS(1853), - [anon_sym_o_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT] = ACTIONS(1853), - [anon_sym_err_GT_GT] = ACTIONS(1850), - [anon_sym_out_GT_GT] = ACTIONS(1850), - [anon_sym_e_GT_GT] = ACTIONS(1850), - [anon_sym_o_GT_GT] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), + [STATE(476)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(4962), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(476), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_record_body_repeat1] = STATE(813), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), }, - [STATE(485)] = { - [sym_cell_path] = STATE(936), - [sym_path] = STATE(441), - [sym_comment] = STATE(485), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [STATE(477)] = { + [sym_cmd_identifier] = STATE(4276), + [sym__match_pattern_record_body] = STATE(5370), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(4438), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4659), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(477), + [aux_sym__types_body_repeat1] = STATE(529), + [aux_sym__match_pattern_record_body_repeat1] = STATE(793), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(478)] = { + [sym_comment] = STATE(478), + [anon_sym_EQ] = ACTIONS(1840), + [anon_sym_PLUS_EQ] = ACTIONS(1842), + [anon_sym_DASH_EQ] = ACTIONS(1842), + [anon_sym_STAR_EQ] = ACTIONS(1842), + [anon_sym_SLASH_EQ] = ACTIONS(1842), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1842), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1614), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1614), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(479)] = { + [sym_cmd_identifier] = STATE(4276), + [sym__match_pattern_record_body] = STATE(5155), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(4438), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4659), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(479), + [aux_sym__types_body_repeat1] = STATE(529), + [aux_sym__match_pattern_record_body_repeat1] = STATE(793), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(480)] = { + [sym_cmd_identifier] = STATE(4276), + [sym__match_pattern_record_body] = STATE(5091), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(4438), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4659), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(480), + [aux_sym__types_body_repeat1] = STATE(529), + [aux_sym__match_pattern_record_body_repeat1] = STATE(793), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(481)] = { + [sym_comment] = STATE(481), + [anon_sym_EQ] = ACTIONS(1848), + [anon_sym_PLUS_EQ] = ACTIONS(1850), + [anon_sym_DASH_EQ] = ACTIONS(1850), + [anon_sym_STAR_EQ] = ACTIONS(1850), + [anon_sym_SLASH_EQ] = ACTIONS(1850), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1850), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1614), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1614), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(482)] = { + [sym_comment] = STATE(482), + [anon_sym_in] = ACTIONS(1852), + [sym__newline] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_err_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_GT_PIPE] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_GT2] = ACTIONS(1854), + [anon_sym_DASH2] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_STAR2] = ACTIONS(1854), + [anon_sym_and2] = ACTIONS(1852), + [anon_sym_xor2] = ACTIONS(1852), + [anon_sym_or2] = ACTIONS(1852), + [anon_sym_not_DASHin2] = ACTIONS(1852), + [anon_sym_has2] = ACTIONS(1852), + [anon_sym_not_DASHhas2] = ACTIONS(1852), + [anon_sym_starts_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), + [anon_sym_ends_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), + [anon_sym_EQ_EQ2] = ACTIONS(1852), + [anon_sym_BANG_EQ2] = ACTIONS(1852), + [anon_sym_LT2] = ACTIONS(1854), + [anon_sym_LT_EQ2] = ACTIONS(1852), + [anon_sym_GT_EQ2] = ACTIONS(1852), + [anon_sym_EQ_TILDE2] = ACTIONS(1852), + [anon_sym_BANG_TILDE2] = ACTIONS(1852), + [anon_sym_like2] = ACTIONS(1852), + [anon_sym_not_DASHlike2] = ACTIONS(1852), + [anon_sym_LPAREN2] = ACTIONS(1852), + [anon_sym_STAR_STAR2] = ACTIONS(1852), + [anon_sym_PLUS_PLUS2] = ACTIONS(1852), + [anon_sym_SLASH2] = ACTIONS(1854), + [anon_sym_mod2] = ACTIONS(1852), + [anon_sym_SLASH_SLASH2] = ACTIONS(1852), + [anon_sym_PLUS2] = ACTIONS(1854), + [anon_sym_bit_DASHshl2] = ACTIONS(1852), + [anon_sym_bit_DASHshr2] = ACTIONS(1852), + [anon_sym_bit_DASHand2] = ACTIONS(1852), + [anon_sym_bit_DASHxor2] = ACTIONS(1852), + [anon_sym_bit_DASHor2] = ACTIONS(1852), + [anon_sym_DOT_DOT2] = ACTIONS(1854), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1852), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1852), + [aux_sym__immediate_decimal_token5] = ACTIONS(1856), + [anon_sym_err_GT] = ACTIONS(1854), + [anon_sym_out_GT] = ACTIONS(1854), + [anon_sym_e_GT] = ACTIONS(1854), + [anon_sym_o_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT] = ACTIONS(1854), + [anon_sym_err_GT_GT] = ACTIONS(1852), + [anon_sym_out_GT_GT] = ACTIONS(1852), + [anon_sym_e_GT_GT] = ACTIONS(1852), + [anon_sym_o_GT_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), + [sym__unquoted_pattern] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(483)] = { + [sym_comment] = STATE(483), + [anon_sym_if] = ACTIONS(1858), [anon_sym_in] = ACTIONS(1858), [sym__newline] = ACTIONS(1858), [anon_sym_SEMI] = ACTIONS(1858), @@ -85128,7 +85624,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1858), [anon_sym_bit_DASHxor2] = ACTIONS(1858), [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1858), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1858), + [anon_sym_COLON2] = ACTIONS(1858), [anon_sym_err_GT] = ACTIONS(1860), [anon_sym_out_GT] = ACTIONS(1860), [anon_sym_e_GT] = ACTIONS(1860), @@ -85147,11 +85646,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(486)] = { - [sym_cell_path] = STATE(724), - [sym_path] = STATE(441), - [sym_comment] = STATE(486), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [STATE(484)] = { + [sym_comment] = STATE(484), + [ts_builtin_sym_end] = ACTIONS(1537), + [anon_sym_in] = ACTIONS(1537), + [sym__newline] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_err_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_GT_PIPE] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), + [anon_sym_GT2] = ACTIONS(1535), + [anon_sym_DASH2] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_STAR2] = ACTIONS(1535), + [anon_sym_and2] = ACTIONS(1537), + [anon_sym_xor2] = ACTIONS(1537), + [anon_sym_or2] = ACTIONS(1537), + [anon_sym_not_DASHin2] = ACTIONS(1537), + [anon_sym_has2] = ACTIONS(1537), + [anon_sym_not_DASHhas2] = ACTIONS(1537), + [anon_sym_starts_DASHwith2] = ACTIONS(1537), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), + [anon_sym_ends_DASHwith2] = ACTIONS(1537), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), + [anon_sym_EQ_EQ2] = ACTIONS(1537), + [anon_sym_BANG_EQ2] = ACTIONS(1537), + [anon_sym_LT2] = ACTIONS(1535), + [anon_sym_LT_EQ2] = ACTIONS(1537), + [anon_sym_GT_EQ2] = ACTIONS(1537), + [anon_sym_EQ_TILDE2] = ACTIONS(1537), + [anon_sym_BANG_TILDE2] = ACTIONS(1537), + [anon_sym_like2] = ACTIONS(1537), + [anon_sym_not_DASHlike2] = ACTIONS(1537), + [anon_sym_STAR_STAR2] = ACTIONS(1537), + [anon_sym_PLUS_PLUS2] = ACTIONS(1537), + [anon_sym_SLASH2] = ACTIONS(1535), + [anon_sym_mod2] = ACTIONS(1537), + [anon_sym_SLASH_SLASH2] = ACTIONS(1537), + [anon_sym_PLUS2] = ACTIONS(1535), + [anon_sym_bit_DASHshl2] = ACTIONS(1537), + [anon_sym_bit_DASHshr2] = ACTIONS(1537), + [anon_sym_bit_DASHand2] = ACTIONS(1537), + [anon_sym_bit_DASHxor2] = ACTIONS(1537), + [anon_sym_bit_DASHor2] = ACTIONS(1537), + [anon_sym_DOT_DOT2] = ACTIONS(1535), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), + [anon_sym_QMARK2] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1535), + [anon_sym_err_GT] = ACTIONS(1535), + [anon_sym_out_GT] = ACTIONS(1535), + [anon_sym_e_GT] = ACTIONS(1535), + [anon_sym_o_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT] = ACTIONS(1535), + [anon_sym_err_GT_GT] = ACTIONS(1537), + [anon_sym_out_GT_GT] = ACTIONS(1537), + [anon_sym_e_GT_GT] = ACTIONS(1537), + [anon_sym_o_GT_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(485)] = { + [sym_cell_path] = STATE(949), + [sym_path] = STATE(458), + [sym_comment] = STATE(485), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), [anon_sym_in] = ACTIONS(1862), [sym__newline] = ACTIONS(1862), [anon_sym_SEMI] = ACTIONS(1862), @@ -85201,7 +85773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1862), [anon_sym_bit_DASHxor2] = ACTIONS(1862), [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(1856), + [anon_sym_DOT2] = ACTIONS(1866), [anon_sym_err_GT] = ACTIONS(1864), [anon_sym_out_GT] = ACTIONS(1864), [anon_sym_e_GT] = ACTIONS(1864), @@ -85220,227 +85792,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(486)] = { + [sym_cell_path] = STATE(972), + [sym_path] = STATE(720), + [sym_comment] = STATE(486), + [aux_sym__where_predicate_lhs_repeat1] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(1444), + [anon_sym_in] = ACTIONS(1444), + [sym__newline] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_err_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_GT_PIPE] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1444), + [anon_sym_GT2] = ACTIONS(1442), + [anon_sym_DASH2] = ACTIONS(1444), + [anon_sym_STAR2] = ACTIONS(1442), + [anon_sym_and2] = ACTIONS(1444), + [anon_sym_xor2] = ACTIONS(1444), + [anon_sym_or2] = ACTIONS(1444), + [anon_sym_not_DASHin2] = ACTIONS(1444), + [anon_sym_has2] = ACTIONS(1444), + [anon_sym_not_DASHhas2] = ACTIONS(1444), + [anon_sym_starts_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1444), + [anon_sym_ends_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1444), + [anon_sym_EQ_EQ2] = ACTIONS(1444), + [anon_sym_BANG_EQ2] = ACTIONS(1444), + [anon_sym_LT2] = ACTIONS(1442), + [anon_sym_LT_EQ2] = ACTIONS(1444), + [anon_sym_GT_EQ2] = ACTIONS(1444), + [anon_sym_EQ_TILDE2] = ACTIONS(1444), + [anon_sym_BANG_TILDE2] = ACTIONS(1444), + [anon_sym_like2] = ACTIONS(1444), + [anon_sym_not_DASHlike2] = ACTIONS(1444), + [anon_sym_STAR_STAR2] = ACTIONS(1444), + [anon_sym_PLUS_PLUS2] = ACTIONS(1444), + [anon_sym_SLASH2] = ACTIONS(1442), + [anon_sym_mod2] = ACTIONS(1444), + [anon_sym_SLASH_SLASH2] = ACTIONS(1444), + [anon_sym_PLUS2] = ACTIONS(1442), + [anon_sym_bit_DASHshl2] = ACTIONS(1444), + [anon_sym_bit_DASHshr2] = ACTIONS(1444), + [anon_sym_bit_DASHand2] = ACTIONS(1444), + [anon_sym_bit_DASHxor2] = ACTIONS(1444), + [anon_sym_bit_DASHor2] = ACTIONS(1444), + [anon_sym_DOT_DOT2] = ACTIONS(1442), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), + [anon_sym_DOT2] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [anon_sym_o_GT] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT] = ACTIONS(1442), + [anon_sym_err_GT_GT] = ACTIONS(1444), + [anon_sym_out_GT_GT] = ACTIONS(1444), + [anon_sym_e_GT_GT] = ACTIONS(1444), + [anon_sym_o_GT_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(487)] = { [sym_comment] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1545), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), + [ts_builtin_sym_end] = ACTIONS(1541), + [anon_sym_in] = ACTIONS(1541), + [sym__newline] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_err_GT_PIPE] = ACTIONS(1541), + [anon_sym_out_GT_PIPE] = ACTIONS(1541), + [anon_sym_e_GT_PIPE] = ACTIONS(1541), + [anon_sym_o_GT_PIPE] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1541), + [anon_sym_GT2] = ACTIONS(1539), + [anon_sym_DASH2] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_STAR2] = ACTIONS(1539), + [anon_sym_and2] = ACTIONS(1541), + [anon_sym_xor2] = ACTIONS(1541), + [anon_sym_or2] = ACTIONS(1541), + [anon_sym_not_DASHin2] = ACTIONS(1541), + [anon_sym_has2] = ACTIONS(1541), + [anon_sym_not_DASHhas2] = ACTIONS(1541), + [anon_sym_starts_DASHwith2] = ACTIONS(1541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1541), + [anon_sym_ends_DASHwith2] = ACTIONS(1541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1541), + [anon_sym_EQ_EQ2] = ACTIONS(1541), + [anon_sym_BANG_EQ2] = ACTIONS(1541), + [anon_sym_LT2] = ACTIONS(1539), + [anon_sym_LT_EQ2] = ACTIONS(1541), + [anon_sym_GT_EQ2] = ACTIONS(1541), + [anon_sym_EQ_TILDE2] = ACTIONS(1541), + [anon_sym_BANG_TILDE2] = ACTIONS(1541), + [anon_sym_like2] = ACTIONS(1541), + [anon_sym_not_DASHlike2] = ACTIONS(1541), + [anon_sym_STAR_STAR2] = ACTIONS(1541), + [anon_sym_PLUS_PLUS2] = ACTIONS(1541), + [anon_sym_SLASH2] = ACTIONS(1539), + [anon_sym_mod2] = ACTIONS(1541), + [anon_sym_SLASH_SLASH2] = ACTIONS(1541), + [anon_sym_PLUS2] = ACTIONS(1539), + [anon_sym_bit_DASHshl2] = ACTIONS(1541), + [anon_sym_bit_DASHshr2] = ACTIONS(1541), + [anon_sym_bit_DASHand2] = ACTIONS(1541), + [anon_sym_bit_DASHxor2] = ACTIONS(1541), + [anon_sym_bit_DASHor2] = ACTIONS(1541), + [anon_sym_DOT_DOT2] = ACTIONS(1539), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1541), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1541), + [anon_sym_QMARK2] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_DOT2] = ACTIONS(1539), + [anon_sym_err_GT] = ACTIONS(1539), + [anon_sym_out_GT] = ACTIONS(1539), + [anon_sym_e_GT] = ACTIONS(1539), + [anon_sym_o_GT] = ACTIONS(1539), + [anon_sym_err_PLUSout_GT] = ACTIONS(1539), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1539), + [anon_sym_o_PLUSe_GT] = ACTIONS(1539), + [anon_sym_e_PLUSo_GT] = ACTIONS(1539), + [anon_sym_err_GT_GT] = ACTIONS(1541), + [anon_sym_out_GT_GT] = ACTIONS(1541), + [anon_sym_e_GT_GT] = ACTIONS(1541), + [anon_sym_o_GT_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1541), [anon_sym_POUND] = ACTIONS(3), }, [STATE(488)] = { [sym_comment] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1472), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(489)] = { - [sym_cell_path] = STATE(899), - [sym_path] = STATE(441), - [sym_comment] = STATE(489), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(490)] = { - [sym_comment] = STATE(490), [anon_sym_in] = ACTIONS(1870), [sym__newline] = ACTIONS(1870), [anon_sym_SEMI] = ACTIONS(1870), @@ -85512,157 +86011,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(491)] = { - [sym_comment] = STATE(491), - [anon_sym_if] = ACTIONS(1874), - [anon_sym_in] = ACTIONS(1874), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1874), - [anon_sym_GT2] = ACTIONS(1876), - [anon_sym_DASH2] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_EQ_GT] = ACTIONS(1874), - [anon_sym_STAR2] = ACTIONS(1876), - [anon_sym_and2] = ACTIONS(1874), - [anon_sym_xor2] = ACTIONS(1874), - [anon_sym_or2] = ACTIONS(1874), - [anon_sym_not_DASHin2] = ACTIONS(1874), - [anon_sym_has2] = ACTIONS(1874), - [anon_sym_not_DASHhas2] = ACTIONS(1874), - [anon_sym_starts_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), - [anon_sym_ends_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), - [anon_sym_EQ_EQ2] = ACTIONS(1874), - [anon_sym_BANG_EQ2] = ACTIONS(1874), - [anon_sym_LT2] = ACTIONS(1876), - [anon_sym_LT_EQ2] = ACTIONS(1874), - [anon_sym_GT_EQ2] = ACTIONS(1874), - [anon_sym_EQ_TILDE2] = ACTIONS(1874), - [anon_sym_BANG_TILDE2] = ACTIONS(1874), - [anon_sym_like2] = ACTIONS(1874), - [anon_sym_not_DASHlike2] = ACTIONS(1874), - [anon_sym_STAR_STAR2] = ACTIONS(1874), - [anon_sym_PLUS_PLUS2] = ACTIONS(1874), - [anon_sym_SLASH2] = ACTIONS(1876), - [anon_sym_mod2] = ACTIONS(1874), - [anon_sym_SLASH_SLASH2] = ACTIONS(1874), - [anon_sym_PLUS2] = ACTIONS(1876), - [anon_sym_bit_DASHshl2] = ACTIONS(1874), - [anon_sym_bit_DASHshr2] = ACTIONS(1874), - [anon_sym_bit_DASHand2] = ACTIONS(1874), - [anon_sym_bit_DASHxor2] = ACTIONS(1874), - [anon_sym_bit_DASHor2] = ACTIONS(1874), - [anon_sym_DOT_DOT2] = ACTIONS(1876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1876), - [anon_sym_out_GT] = ACTIONS(1876), - [anon_sym_e_GT] = ACTIONS(1876), - [anon_sym_o_GT] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT] = ACTIONS(1876), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [STATE(489)] = { + [sym_comment] = STATE(489), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(741), + [sym__newline] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_err_GT_PIPE] = ACTIONS(741), + [anon_sym_out_GT_PIPE] = ACTIONS(741), + [anon_sym_e_GT_PIPE] = ACTIONS(741), + [anon_sym_o_GT_PIPE] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(741), + [anon_sym_xor2] = ACTIONS(741), + [anon_sym_or2] = ACTIONS(741), + [anon_sym_not_DASHin2] = ACTIONS(741), + [anon_sym_has2] = ACTIONS(741), + [anon_sym_not_DASHhas2] = ACTIONS(741), + [anon_sym_starts_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), + [anon_sym_ends_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), + [anon_sym_EQ_EQ2] = ACTIONS(741), + [anon_sym_BANG_EQ2] = ACTIONS(741), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(741), + [anon_sym_GT_EQ2] = ACTIONS(741), + [anon_sym_EQ_TILDE2] = ACTIONS(741), + [anon_sym_BANG_TILDE2] = ACTIONS(741), + [anon_sym_like2] = ACTIONS(741), + [anon_sym_not_DASHlike2] = ACTIONS(741), + [anon_sym_LPAREN2] = ACTIONS(741), + [anon_sym_STAR_STAR2] = ACTIONS(741), + [anon_sym_PLUS_PLUS2] = ACTIONS(741), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(741), + [anon_sym_SLASH_SLASH2] = ACTIONS(741), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(741), + [anon_sym_bit_DASHshr2] = ACTIONS(741), + [anon_sym_bit_DASHand2] = ACTIONS(741), + [anon_sym_bit_DASHxor2] = ACTIONS(741), + [anon_sym_bit_DASHor2] = ACTIONS(741), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(741), + [anon_sym_out_GT_GT] = ACTIONS(741), + [anon_sym_e_GT_GT] = ACTIONS(741), + [anon_sym_o_GT_GT] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), + [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(492)] = { - [sym_comment] = STATE(492), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_EQ_GT] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1558), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [STATE(490)] = { + [sym__path_suffix] = STATE(712), + [sym_comment] = STATE(490), + [ts_builtin_sym_end] = ACTIONS(1458), + [anon_sym_in] = ACTIONS(1458), + [sym__newline] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_err_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_GT_PIPE] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), + [anon_sym_GT2] = ACTIONS(1456), + [anon_sym_DASH2] = ACTIONS(1458), + [anon_sym_STAR2] = ACTIONS(1456), + [anon_sym_and2] = ACTIONS(1458), + [anon_sym_xor2] = ACTIONS(1458), + [anon_sym_or2] = ACTIONS(1458), + [anon_sym_not_DASHin2] = ACTIONS(1458), + [anon_sym_has2] = ACTIONS(1458), + [anon_sym_not_DASHhas2] = ACTIONS(1458), + [anon_sym_starts_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1458), + [anon_sym_ends_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), + [anon_sym_EQ_EQ2] = ACTIONS(1458), + [anon_sym_BANG_EQ2] = ACTIONS(1458), + [anon_sym_LT2] = ACTIONS(1456), + [anon_sym_LT_EQ2] = ACTIONS(1458), + [anon_sym_GT_EQ2] = ACTIONS(1458), + [anon_sym_EQ_TILDE2] = ACTIONS(1458), + [anon_sym_BANG_TILDE2] = ACTIONS(1458), + [anon_sym_like2] = ACTIONS(1458), + [anon_sym_not_DASHlike2] = ACTIONS(1458), + [anon_sym_STAR_STAR2] = ACTIONS(1458), + [anon_sym_PLUS_PLUS2] = ACTIONS(1458), + [anon_sym_SLASH2] = ACTIONS(1456), + [anon_sym_mod2] = ACTIONS(1458), + [anon_sym_SLASH_SLASH2] = ACTIONS(1458), + [anon_sym_PLUS2] = ACTIONS(1456), + [anon_sym_bit_DASHshl2] = ACTIONS(1458), + [anon_sym_bit_DASHshr2] = ACTIONS(1458), + [anon_sym_bit_DASHand2] = ACTIONS(1458), + [anon_sym_bit_DASHxor2] = ACTIONS(1458), + [anon_sym_bit_DASHor2] = ACTIONS(1458), + [anon_sym_DOT_DOT2] = ACTIONS(1456), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), + [anon_sym_QMARK2] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_DOT2] = ACTIONS(1456), + [anon_sym_err_GT] = ACTIONS(1456), + [anon_sym_out_GT] = ACTIONS(1456), + [anon_sym_e_GT] = ACTIONS(1456), + [anon_sym_o_GT] = ACTIONS(1456), + [anon_sym_err_PLUSout_GT] = ACTIONS(1456), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1456), + [anon_sym_o_PLUSe_GT] = ACTIONS(1456), + [anon_sym_e_PLUSo_GT] = ACTIONS(1456), + [anon_sym_err_GT_GT] = ACTIONS(1458), + [anon_sym_out_GT_GT] = ACTIONS(1458), + [anon_sym_e_GT_GT] = ACTIONS(1458), + [anon_sym_o_GT_GT] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(493)] = { - [sym_cell_path] = STATE(735), - [sym_path] = STATE(441), - [sym_comment] = STATE(493), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [STATE(491)] = { + [sym_comment] = STATE(491), + [anon_sym_if] = ACTIONS(1878), [anon_sym_in] = ACTIONS(1878), [sym__newline] = ACTIONS(1878), [anon_sym_SEMI] = ACTIONS(1878), @@ -85712,7 +86209,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1878), [anon_sym_bit_DASHxor2] = ACTIONS(1878), [anon_sym_bit_DASHor2] = ACTIONS(1878), - [anon_sym_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1880), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1878), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1878), [anon_sym_err_GT] = ACTIONS(1880), [anon_sym_out_GT] = ACTIONS(1880), [anon_sym_e_GT] = ACTIONS(1880), @@ -85731,230 +86230,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(494)] = { - [sym_cell_path] = STATE(932), - [sym_path] = STATE(783), - [sym_comment] = STATE(494), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(1679), - [sym__newline] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_err_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_GT_PIPE] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1679), - [anon_sym_xor2] = ACTIONS(1679), - [anon_sym_or2] = ACTIONS(1679), - [anon_sym_not_DASHin2] = ACTIONS(1679), - [anon_sym_has2] = ACTIONS(1679), - [anon_sym_not_DASHhas2] = ACTIONS(1679), - [anon_sym_starts_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1679), - [anon_sym_ends_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1679), - [anon_sym_EQ_EQ2] = ACTIONS(1679), - [anon_sym_BANG_EQ2] = ACTIONS(1679), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1679), - [anon_sym_GT_EQ2] = ACTIONS(1679), - [anon_sym_EQ_TILDE2] = ACTIONS(1679), - [anon_sym_BANG_TILDE2] = ACTIONS(1679), - [anon_sym_like2] = ACTIONS(1679), - [anon_sym_not_DASHlike2] = ACTIONS(1679), - [anon_sym_STAR_STAR2] = ACTIONS(1679), - [anon_sym_PLUS_PLUS2] = ACTIONS(1679), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1679), - [anon_sym_SLASH_SLASH2] = ACTIONS(1679), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1679), - [anon_sym_bit_DASHshr2] = ACTIONS(1679), - [anon_sym_bit_DASHand2] = ACTIONS(1679), - [anon_sym_bit_DASHxor2] = ACTIONS(1679), - [anon_sym_bit_DASHor2] = ACTIONS(1679), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1679), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1679), - [anon_sym_out_GT_GT] = ACTIONS(1679), - [anon_sym_e_GT_GT] = ACTIONS(1679), - [anon_sym_o_GT_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(495)] = { - [sym_comment] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(496)] = { - [sym_cell_path] = STATE(933), - [sym_path] = STATE(783), - [sym_comment] = STATE(496), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1434), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), + [STATE(492)] = { + [sym_cell_path] = STATE(963), + [sym_path] = STATE(720), + [sym_comment] = STATE(492), + [aux_sym__where_predicate_lhs_repeat1] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(1657), + [anon_sym_in] = ACTIONS(1657), + [sym__newline] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_err_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_GT_PIPE] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1659), + [anon_sym_DASH2] = ACTIONS(1657), + [anon_sym_STAR2] = ACTIONS(1659), + [anon_sym_and2] = ACTIONS(1657), + [anon_sym_xor2] = ACTIONS(1657), + [anon_sym_or2] = ACTIONS(1657), + [anon_sym_not_DASHin2] = ACTIONS(1657), + [anon_sym_has2] = ACTIONS(1657), + [anon_sym_not_DASHhas2] = ACTIONS(1657), + [anon_sym_starts_DASHwith2] = ACTIONS(1657), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1657), + [anon_sym_ends_DASHwith2] = ACTIONS(1657), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1657), + [anon_sym_EQ_EQ2] = ACTIONS(1657), + [anon_sym_BANG_EQ2] = ACTIONS(1657), + [anon_sym_LT2] = ACTIONS(1659), + [anon_sym_LT_EQ2] = ACTIONS(1657), + [anon_sym_GT_EQ2] = ACTIONS(1657), + [anon_sym_EQ_TILDE2] = ACTIONS(1657), + [anon_sym_BANG_TILDE2] = ACTIONS(1657), + [anon_sym_like2] = ACTIONS(1657), + [anon_sym_not_DASHlike2] = ACTIONS(1657), + [anon_sym_STAR_STAR2] = ACTIONS(1657), + [anon_sym_PLUS_PLUS2] = ACTIONS(1657), + [anon_sym_SLASH2] = ACTIONS(1659), + [anon_sym_mod2] = ACTIONS(1657), + [anon_sym_SLASH_SLASH2] = ACTIONS(1657), + [anon_sym_PLUS2] = ACTIONS(1659), + [anon_sym_bit_DASHshl2] = ACTIONS(1657), + [anon_sym_bit_DASHshr2] = ACTIONS(1657), + [anon_sym_bit_DASHand2] = ACTIONS(1657), + [anon_sym_bit_DASHxor2] = ACTIONS(1657), + [anon_sym_bit_DASHor2] = ACTIONS(1657), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1657), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1657), + [anon_sym_DOT2] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1657), + [anon_sym_out_GT_GT] = ACTIONS(1657), + [anon_sym_e_GT_GT] = ACTIONS(1657), + [anon_sym_o_GT_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(497)] = { - [sym_cell_path] = STATE(930), - [sym_path] = STATE(441), - [sym_comment] = STATE(497), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [STATE(493)] = { + [sym_cell_path] = STATE(932), + [sym_path] = STATE(458), + [sym_comment] = STATE(493), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), [anon_sym_in] = ACTIONS(1882), [sym__newline] = ACTIONS(1882), [anon_sym_SEMI] = ACTIONS(1882), @@ -85968,12 +86321,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_GT2] = ACTIONS(1884), + [anon_sym_GT2] = ACTIONS(1885), [anon_sym_DASH2] = ACTIONS(1882), [anon_sym_LBRACE] = ACTIONS(1882), [anon_sym_RBRACE] = ACTIONS(1882), [anon_sym_EQ_GT] = ACTIONS(1882), - [anon_sym_STAR2] = ACTIONS(1884), + [anon_sym_STAR2] = ACTIONS(1885), [anon_sym_and2] = ACTIONS(1882), [anon_sym_xor2] = ACTIONS(1882), [anon_sym_or2] = ACTIONS(1882), @@ -85986,7 +86339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), [anon_sym_EQ_EQ2] = ACTIONS(1882), [anon_sym_BANG_EQ2] = ACTIONS(1882), - [anon_sym_LT2] = ACTIONS(1884), + [anon_sym_LT2] = ACTIONS(1885), [anon_sym_LT_EQ2] = ACTIONS(1882), [anon_sym_GT_EQ2] = ACTIONS(1882), [anon_sym_EQ_TILDE2] = ACTIONS(1882), @@ -85995,24 +86348,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(1882), [anon_sym_STAR_STAR2] = ACTIONS(1882), [anon_sym_PLUS_PLUS2] = ACTIONS(1882), - [anon_sym_SLASH2] = ACTIONS(1884), + [anon_sym_SLASH2] = ACTIONS(1885), [anon_sym_mod2] = ACTIONS(1882), [anon_sym_SLASH_SLASH2] = ACTIONS(1882), - [anon_sym_PLUS2] = ACTIONS(1884), + [anon_sym_PLUS2] = ACTIONS(1885), [anon_sym_bit_DASHshl2] = ACTIONS(1882), [anon_sym_bit_DASHshr2] = ACTIONS(1882), [anon_sym_bit_DASHand2] = ACTIONS(1882), [anon_sym_bit_DASHxor2] = ACTIONS(1882), [anon_sym_bit_DASHor2] = ACTIONS(1882), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1884), - [anon_sym_out_GT] = ACTIONS(1884), - [anon_sym_e_GT] = ACTIONS(1884), - [anon_sym_o_GT] = ACTIONS(1884), - [anon_sym_err_PLUSout_GT] = ACTIONS(1884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), - [anon_sym_o_PLUSe_GT] = ACTIONS(1884), - [anon_sym_e_PLUSo_GT] = ACTIONS(1884), + [anon_sym_DOT2] = ACTIONS(1866), + [anon_sym_err_GT] = ACTIONS(1885), + [anon_sym_out_GT] = ACTIONS(1885), + [anon_sym_e_GT] = ACTIONS(1885), + [anon_sym_o_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT] = ACTIONS(1885), [anon_sym_err_GT_GT] = ACTIONS(1882), [anon_sym_out_GT_GT] = ACTIONS(1882), [anon_sym_e_GT_GT] = ACTIONS(1882), @@ -86023,249 +86376,1271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(494)] = { + [sym_cell_path] = STATE(938), + [sym_path] = STATE(720), + [sym_comment] = STATE(494), + [aux_sym__where_predicate_lhs_repeat1] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_in] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_GT2] = ACTIONS(1647), + [anon_sym_DASH2] = ACTIONS(1645), + [anon_sym_STAR2] = ACTIONS(1647), + [anon_sym_and2] = ACTIONS(1645), + [anon_sym_xor2] = ACTIONS(1645), + [anon_sym_or2] = ACTIONS(1645), + [anon_sym_not_DASHin2] = ACTIONS(1645), + [anon_sym_has2] = ACTIONS(1645), + [anon_sym_not_DASHhas2] = ACTIONS(1645), + [anon_sym_starts_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1645), + [anon_sym_ends_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1645), + [anon_sym_EQ_EQ2] = ACTIONS(1645), + [anon_sym_BANG_EQ2] = ACTIONS(1645), + [anon_sym_LT2] = ACTIONS(1647), + [anon_sym_LT_EQ2] = ACTIONS(1645), + [anon_sym_GT_EQ2] = ACTIONS(1645), + [anon_sym_EQ_TILDE2] = ACTIONS(1645), + [anon_sym_BANG_TILDE2] = ACTIONS(1645), + [anon_sym_like2] = ACTIONS(1645), + [anon_sym_not_DASHlike2] = ACTIONS(1645), + [anon_sym_STAR_STAR2] = ACTIONS(1645), + [anon_sym_PLUS_PLUS2] = ACTIONS(1645), + [anon_sym_SLASH2] = ACTIONS(1647), + [anon_sym_mod2] = ACTIONS(1645), + [anon_sym_SLASH_SLASH2] = ACTIONS(1645), + [anon_sym_PLUS2] = ACTIONS(1647), + [anon_sym_bit_DASHshl2] = ACTIONS(1645), + [anon_sym_bit_DASHshr2] = ACTIONS(1645), + [anon_sym_bit_DASHand2] = ACTIONS(1645), + [anon_sym_bit_DASHxor2] = ACTIONS(1645), + [anon_sym_bit_DASHor2] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1647), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [anon_sym_DOT2] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1647), + [anon_sym_out_GT] = ACTIONS(1647), + [anon_sym_e_GT] = ACTIONS(1647), + [anon_sym_o_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT] = ACTIONS(1647), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(495)] = { + [sym_cell_path] = STATE(731), + [sym_path] = STATE(458), + [sym_comment] = STATE(495), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = ACTIONS(1888), + [sym__newline] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_err_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_GT_PIPE] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_GT2] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_EQ_GT] = ACTIONS(1888), + [anon_sym_STAR2] = ACTIONS(1890), + [anon_sym_and2] = ACTIONS(1888), + [anon_sym_xor2] = ACTIONS(1888), + [anon_sym_or2] = ACTIONS(1888), + [anon_sym_not_DASHin2] = ACTIONS(1888), + [anon_sym_has2] = ACTIONS(1888), + [anon_sym_not_DASHhas2] = ACTIONS(1888), + [anon_sym_starts_DASHwith2] = ACTIONS(1888), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1888), + [anon_sym_ends_DASHwith2] = ACTIONS(1888), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1888), + [anon_sym_EQ_EQ2] = ACTIONS(1888), + [anon_sym_BANG_EQ2] = ACTIONS(1888), + [anon_sym_LT2] = ACTIONS(1890), + [anon_sym_LT_EQ2] = ACTIONS(1888), + [anon_sym_GT_EQ2] = ACTIONS(1888), + [anon_sym_EQ_TILDE2] = ACTIONS(1888), + [anon_sym_BANG_TILDE2] = ACTIONS(1888), + [anon_sym_like2] = ACTIONS(1888), + [anon_sym_not_DASHlike2] = ACTIONS(1888), + [anon_sym_STAR_STAR2] = ACTIONS(1888), + [anon_sym_PLUS_PLUS2] = ACTIONS(1888), + [anon_sym_SLASH2] = ACTIONS(1890), + [anon_sym_mod2] = ACTIONS(1888), + [anon_sym_SLASH_SLASH2] = ACTIONS(1888), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_bit_DASHshl2] = ACTIONS(1888), + [anon_sym_bit_DASHshr2] = ACTIONS(1888), + [anon_sym_bit_DASHand2] = ACTIONS(1888), + [anon_sym_bit_DASHxor2] = ACTIONS(1888), + [anon_sym_bit_DASHor2] = ACTIONS(1888), + [anon_sym_DOT2] = ACTIONS(1866), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1888), + [anon_sym_out_GT_GT] = ACTIONS(1888), + [anon_sym_e_GT_GT] = ACTIONS(1888), + [anon_sym_o_GT_GT] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(496)] = { + [sym_comment] = STATE(496), + [anon_sym_in] = ACTIONS(1582), + [sym__newline] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_err_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_GT_PIPE] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_EQ_GT] = ACTIONS(1582), + [anon_sym_STAR2] = ACTIONS(1580), + [anon_sym_and2] = ACTIONS(1582), + [anon_sym_xor2] = ACTIONS(1582), + [anon_sym_or2] = ACTIONS(1582), + [anon_sym_not_DASHin2] = ACTIONS(1582), + [anon_sym_has2] = ACTIONS(1582), + [anon_sym_not_DASHhas2] = ACTIONS(1582), + [anon_sym_starts_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), + [anon_sym_ends_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), + [anon_sym_EQ_EQ2] = ACTIONS(1582), + [anon_sym_BANG_EQ2] = ACTIONS(1582), + [anon_sym_LT2] = ACTIONS(1580), + [anon_sym_LT_EQ2] = ACTIONS(1582), + [anon_sym_GT_EQ2] = ACTIONS(1582), + [anon_sym_EQ_TILDE2] = ACTIONS(1582), + [anon_sym_BANG_TILDE2] = ACTIONS(1582), + [anon_sym_like2] = ACTIONS(1582), + [anon_sym_not_DASHlike2] = ACTIONS(1582), + [anon_sym_STAR_STAR2] = ACTIONS(1582), + [anon_sym_PLUS_PLUS2] = ACTIONS(1582), + [anon_sym_SLASH2] = ACTIONS(1580), + [anon_sym_mod2] = ACTIONS(1582), + [anon_sym_SLASH_SLASH2] = ACTIONS(1582), + [anon_sym_PLUS2] = ACTIONS(1580), + [anon_sym_bit_DASHshl2] = ACTIONS(1582), + [anon_sym_bit_DASHshr2] = ACTIONS(1582), + [anon_sym_bit_DASHand2] = ACTIONS(1582), + [anon_sym_bit_DASHxor2] = ACTIONS(1582), + [anon_sym_bit_DASHor2] = ACTIONS(1582), + [anon_sym_DOT_DOT2] = ACTIONS(1580), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), + [anon_sym_COLON2] = ACTIONS(1582), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), + [anon_sym_err_GT_GT] = ACTIONS(1582), + [anon_sym_out_GT_GT] = ACTIONS(1582), + [anon_sym_e_GT_GT] = ACTIONS(1582), + [anon_sym_o_GT_GT] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(497)] = { + [sym_comment] = STATE(497), + [anon_sym_in] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_STAR2] = ACTIONS(1772), + [anon_sym_and2] = ACTIONS(1770), + [anon_sym_xor2] = ACTIONS(1770), + [anon_sym_or2] = ACTIONS(1770), + [anon_sym_not_DASHin2] = ACTIONS(1770), + [anon_sym_has2] = ACTIONS(1770), + [anon_sym_not_DASHhas2] = ACTIONS(1770), + [anon_sym_starts_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), + [anon_sym_ends_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), + [anon_sym_EQ_EQ2] = ACTIONS(1770), + [anon_sym_BANG_EQ2] = ACTIONS(1770), + [anon_sym_LT2] = ACTIONS(1772), + [anon_sym_LT_EQ2] = ACTIONS(1770), + [anon_sym_GT_EQ2] = ACTIONS(1770), + [anon_sym_EQ_TILDE2] = ACTIONS(1770), + [anon_sym_BANG_TILDE2] = ACTIONS(1770), + [anon_sym_like2] = ACTIONS(1770), + [anon_sym_not_DASHlike2] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_STAR_STAR2] = ACTIONS(1770), + [anon_sym_PLUS_PLUS2] = ACTIONS(1770), + [anon_sym_SLASH2] = ACTIONS(1772), + [anon_sym_mod2] = ACTIONS(1770), + [anon_sym_SLASH_SLASH2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_bit_DASHshl2] = ACTIONS(1770), + [anon_sym_bit_DASHshr2] = ACTIONS(1770), + [anon_sym_bit_DASHand2] = ACTIONS(1770), + [anon_sym_bit_DASHxor2] = ACTIONS(1770), + [anon_sym_bit_DASHor2] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1772), + [anon_sym_out_GT] = ACTIONS(1772), + [anon_sym_e_GT] = ACTIONS(1772), + [anon_sym_o_GT] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT] = ACTIONS(1772), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [sym__unquoted_pattern] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(498)] = { [sym_comment] = STATE(498), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1886), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_GT2] = ACTIONS(1888), - [anon_sym_DASH2] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_EQ_GT] = ACTIONS(1886), - [anon_sym_STAR2] = ACTIONS(1888), - [anon_sym_and2] = ACTIONS(1886), - [anon_sym_xor2] = ACTIONS(1886), - [anon_sym_or2] = ACTIONS(1886), - [anon_sym_not_DASHin2] = ACTIONS(1886), - [anon_sym_has2] = ACTIONS(1886), - [anon_sym_not_DASHhas2] = ACTIONS(1886), - [anon_sym_starts_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1886), - [anon_sym_ends_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1886), - [anon_sym_EQ_EQ2] = ACTIONS(1886), - [anon_sym_BANG_EQ2] = ACTIONS(1886), - [anon_sym_LT2] = ACTIONS(1888), - [anon_sym_LT_EQ2] = ACTIONS(1886), - [anon_sym_GT_EQ2] = ACTIONS(1886), - [anon_sym_EQ_TILDE2] = ACTIONS(1886), - [anon_sym_BANG_TILDE2] = ACTIONS(1886), - [anon_sym_like2] = ACTIONS(1886), - [anon_sym_not_DASHlike2] = ACTIONS(1886), - [anon_sym_STAR_STAR2] = ACTIONS(1886), - [anon_sym_PLUS_PLUS2] = ACTIONS(1886), - [anon_sym_SLASH2] = ACTIONS(1888), - [anon_sym_mod2] = ACTIONS(1886), - [anon_sym_SLASH_SLASH2] = ACTIONS(1886), - [anon_sym_PLUS2] = ACTIONS(1888), - [anon_sym_bit_DASHshl2] = ACTIONS(1886), - [anon_sym_bit_DASHshr2] = ACTIONS(1886), - [anon_sym_bit_DASHand2] = ACTIONS(1886), - [anon_sym_bit_DASHxor2] = ACTIONS(1886), - [anon_sym_bit_DASHor2] = ACTIONS(1886), - [anon_sym_DOT_DOT2] = ACTIONS(1888), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1888), - [anon_sym_out_GT] = ACTIONS(1888), - [anon_sym_e_GT] = ACTIONS(1888), - [anon_sym_o_GT] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT] = ACTIONS(1888), - [anon_sym_err_GT_GT] = ACTIONS(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_in] = ACTIONS(1892), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_GT2] = ACTIONS(1894), + [anon_sym_DASH2] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_EQ_GT] = ACTIONS(1892), + [anon_sym_STAR2] = ACTIONS(1894), + [anon_sym_and2] = ACTIONS(1892), + [anon_sym_xor2] = ACTIONS(1892), + [anon_sym_or2] = ACTIONS(1892), + [anon_sym_not_DASHin2] = ACTIONS(1892), + [anon_sym_has2] = ACTIONS(1892), + [anon_sym_not_DASHhas2] = ACTIONS(1892), + [anon_sym_starts_DASHwith2] = ACTIONS(1892), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1892), + [anon_sym_ends_DASHwith2] = ACTIONS(1892), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1892), + [anon_sym_EQ_EQ2] = ACTIONS(1892), + [anon_sym_BANG_EQ2] = ACTIONS(1892), + [anon_sym_LT2] = ACTIONS(1894), + [anon_sym_LT_EQ2] = ACTIONS(1892), + [anon_sym_GT_EQ2] = ACTIONS(1892), + [anon_sym_EQ_TILDE2] = ACTIONS(1892), + [anon_sym_BANG_TILDE2] = ACTIONS(1892), + [anon_sym_like2] = ACTIONS(1892), + [anon_sym_not_DASHlike2] = ACTIONS(1892), + [anon_sym_STAR_STAR2] = ACTIONS(1892), + [anon_sym_PLUS_PLUS2] = ACTIONS(1892), + [anon_sym_SLASH2] = ACTIONS(1894), + [anon_sym_mod2] = ACTIONS(1892), + [anon_sym_SLASH_SLASH2] = ACTIONS(1892), + [anon_sym_PLUS2] = ACTIONS(1894), + [anon_sym_bit_DASHshl2] = ACTIONS(1892), + [anon_sym_bit_DASHshr2] = ACTIONS(1892), + [anon_sym_bit_DASHand2] = ACTIONS(1892), + [anon_sym_bit_DASHxor2] = ACTIONS(1892), + [anon_sym_bit_DASHor2] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1894), + [anon_sym_out_GT] = ACTIONS(1894), + [anon_sym_e_GT] = ACTIONS(1894), + [anon_sym_o_GT] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT] = ACTIONS(1894), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), [anon_sym_POUND] = ACTIONS(3), }, [STATE(499)] = { [sym_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(851), - [sym__newline] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_err_GT_PIPE] = ACTIONS(851), - [anon_sym_out_GT_PIPE] = ACTIONS(851), - [anon_sym_e_GT_PIPE] = ACTIONS(851), - [anon_sym_o_GT_PIPE] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(851), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(851), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(851), - [anon_sym_xor2] = ACTIONS(851), - [anon_sym_or2] = ACTIONS(851), - [anon_sym_not_DASHin2] = ACTIONS(851), - [anon_sym_has2] = ACTIONS(851), - [anon_sym_not_DASHhas2] = ACTIONS(851), - [anon_sym_starts_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(851), - [anon_sym_ends_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(851), - [anon_sym_EQ_EQ2] = ACTIONS(851), - [anon_sym_BANG_EQ2] = ACTIONS(851), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(851), - [anon_sym_GT_EQ2] = ACTIONS(851), - [anon_sym_EQ_TILDE2] = ACTIONS(851), - [anon_sym_BANG_TILDE2] = ACTIONS(851), - [anon_sym_like2] = ACTIONS(851), - [anon_sym_not_DASHlike2] = ACTIONS(851), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_STAR_STAR2] = ACTIONS(851), - [anon_sym_PLUS_PLUS2] = ACTIONS(851), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(851), - [anon_sym_SLASH_SLASH2] = ACTIONS(851), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(851), - [anon_sym_bit_DASHshr2] = ACTIONS(851), - [anon_sym_bit_DASHand2] = ACTIONS(851), - [anon_sym_bit_DASHxor2] = ACTIONS(851), - [anon_sym_bit_DASHor2] = ACTIONS(851), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(851), - [anon_sym_out_GT_GT] = ACTIONS(851), - [anon_sym_e_GT_GT] = ACTIONS(851), - [anon_sym_o_GT_GT] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(851), - [sym__unquoted_pattern] = ACTIONS(849), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_in] = ACTIONS(773), + [sym__newline] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_err_GT_PIPE] = ACTIONS(773), + [anon_sym_out_GT_PIPE] = ACTIONS(773), + [anon_sym_e_GT_PIPE] = ACTIONS(773), + [anon_sym_o_GT_PIPE] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(773), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(773), + [anon_sym_xor2] = ACTIONS(773), + [anon_sym_or2] = ACTIONS(773), + [anon_sym_not_DASHin2] = ACTIONS(773), + [anon_sym_has2] = ACTIONS(773), + [anon_sym_not_DASHhas2] = ACTIONS(773), + [anon_sym_starts_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), + [anon_sym_ends_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), + [anon_sym_EQ_EQ2] = ACTIONS(773), + [anon_sym_BANG_EQ2] = ACTIONS(773), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(773), + [anon_sym_GT_EQ2] = ACTIONS(773), + [anon_sym_EQ_TILDE2] = ACTIONS(773), + [anon_sym_BANG_TILDE2] = ACTIONS(773), + [anon_sym_like2] = ACTIONS(773), + [anon_sym_not_DASHlike2] = ACTIONS(773), + [anon_sym_LPAREN2] = ACTIONS(773), + [anon_sym_STAR_STAR2] = ACTIONS(773), + [anon_sym_PLUS_PLUS2] = ACTIONS(773), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(773), + [anon_sym_SLASH_SLASH2] = ACTIONS(773), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(773), + [anon_sym_bit_DASHshr2] = ACTIONS(773), + [anon_sym_bit_DASHand2] = ACTIONS(773), + [anon_sym_bit_DASHxor2] = ACTIONS(773), + [anon_sym_bit_DASHor2] = ACTIONS(773), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(773), + [anon_sym_out_GT_GT] = ACTIONS(773), + [anon_sym_e_GT_GT] = ACTIONS(773), + [anon_sym_o_GT_GT] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), + [sym__unquoted_pattern] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(3), }, [STATE(500)] = { [sym_comment] = STATE(500), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [ts_builtin_sym_end] = ACTIONS(1529), + [anon_sym_in] = ACTIONS(1529), + [sym__newline] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_err_GT_PIPE] = ACTIONS(1529), + [anon_sym_out_GT_PIPE] = ACTIONS(1529), + [anon_sym_e_GT_PIPE] = ACTIONS(1529), + [anon_sym_o_GT_PIPE] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1529), + [anon_sym_GT2] = ACTIONS(1527), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_STAR2] = ACTIONS(1527), + [anon_sym_and2] = ACTIONS(1529), + [anon_sym_xor2] = ACTIONS(1529), + [anon_sym_or2] = ACTIONS(1529), + [anon_sym_not_DASHin2] = ACTIONS(1529), + [anon_sym_has2] = ACTIONS(1529), + [anon_sym_not_DASHhas2] = ACTIONS(1529), + [anon_sym_starts_DASHwith2] = ACTIONS(1529), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1529), + [anon_sym_ends_DASHwith2] = ACTIONS(1529), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1529), + [anon_sym_EQ_EQ2] = ACTIONS(1529), + [anon_sym_BANG_EQ2] = ACTIONS(1529), + [anon_sym_LT2] = ACTIONS(1527), + [anon_sym_LT_EQ2] = ACTIONS(1529), + [anon_sym_GT_EQ2] = ACTIONS(1529), + [anon_sym_EQ_TILDE2] = ACTIONS(1529), + [anon_sym_BANG_TILDE2] = ACTIONS(1529), + [anon_sym_like2] = ACTIONS(1529), + [anon_sym_not_DASHlike2] = ACTIONS(1529), + [anon_sym_STAR_STAR2] = ACTIONS(1529), + [anon_sym_PLUS_PLUS2] = ACTIONS(1529), + [anon_sym_SLASH2] = ACTIONS(1527), + [anon_sym_mod2] = ACTIONS(1529), + [anon_sym_SLASH_SLASH2] = ACTIONS(1529), + [anon_sym_PLUS2] = ACTIONS(1527), + [anon_sym_bit_DASHshl2] = ACTIONS(1529), + [anon_sym_bit_DASHshr2] = ACTIONS(1529), + [anon_sym_bit_DASHand2] = ACTIONS(1529), + [anon_sym_bit_DASHxor2] = ACTIONS(1529), + [anon_sym_bit_DASHor2] = ACTIONS(1529), + [anon_sym_DOT_DOT2] = ACTIONS(1527), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), + [anon_sym_QMARK2] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_DOT2] = ACTIONS(1527), + [anon_sym_err_GT] = ACTIONS(1527), + [anon_sym_out_GT] = ACTIONS(1527), + [anon_sym_e_GT] = ACTIONS(1527), + [anon_sym_o_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT] = ACTIONS(1527), + [anon_sym_err_GT_GT] = ACTIONS(1529), + [anon_sym_out_GT_GT] = ACTIONS(1529), + [anon_sym_e_GT_GT] = ACTIONS(1529), + [anon_sym_o_GT_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1529), [anon_sym_POUND] = ACTIONS(3), }, [STATE(501)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4298), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4450), - [sym__record_key] = STATE(4971), [sym_comment] = STATE(501), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym__match_pattern_record_body_repeat1] = STATE(836), - [aux_sym_record_body_repeat1] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(862), + [anon_sym_in] = ACTIONS(862), + [sym__newline] = ACTIONS(862), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_PIPE] = ACTIONS(862), + [anon_sym_err_GT_PIPE] = ACTIONS(862), + [anon_sym_out_GT_PIPE] = ACTIONS(862), + [anon_sym_e_GT_PIPE] = ACTIONS(862), + [anon_sym_o_GT_PIPE] = ACTIONS(862), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(862), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(862), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(862), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(862), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(862), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(862), + [anon_sym_xor2] = ACTIONS(862), + [anon_sym_or2] = ACTIONS(862), + [anon_sym_not_DASHin2] = ACTIONS(862), + [anon_sym_has2] = ACTIONS(862), + [anon_sym_not_DASHhas2] = ACTIONS(862), + [anon_sym_starts_DASHwith2] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(862), + [anon_sym_ends_DASHwith2] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(862), + [anon_sym_EQ_EQ2] = ACTIONS(862), + [anon_sym_BANG_EQ2] = ACTIONS(862), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(862), + [anon_sym_GT_EQ2] = ACTIONS(862), + [anon_sym_EQ_TILDE2] = ACTIONS(862), + [anon_sym_BANG_TILDE2] = ACTIONS(862), + [anon_sym_like2] = ACTIONS(862), + [anon_sym_not_DASHlike2] = ACTIONS(862), + [anon_sym_LPAREN2] = ACTIONS(862), + [anon_sym_STAR_STAR2] = ACTIONS(862), + [anon_sym_PLUS_PLUS2] = ACTIONS(862), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(862), + [anon_sym_SLASH_SLASH2] = ACTIONS(862), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(862), + [anon_sym_bit_DASHshr2] = ACTIONS(862), + [anon_sym_bit_DASHand2] = ACTIONS(862), + [anon_sym_bit_DASHxor2] = ACTIONS(862), + [anon_sym_bit_DASHor2] = ACTIONS(862), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(862), + [anon_sym_out_GT_GT] = ACTIONS(862), + [anon_sym_e_GT_GT] = ACTIONS(862), + [anon_sym_o_GT_GT] = ACTIONS(862), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(862), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(862), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(862), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(862), + [sym__unquoted_pattern] = ACTIONS(860), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(502)] = { + [sym_comment] = STATE(502), + [ts_builtin_sym_end] = ACTIONS(1521), + [anon_sym_in] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_GT2] = ACTIONS(1519), + [anon_sym_DASH2] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_STAR2] = ACTIONS(1519), + [anon_sym_and2] = ACTIONS(1521), + [anon_sym_xor2] = ACTIONS(1521), + [anon_sym_or2] = ACTIONS(1521), + [anon_sym_not_DASHin2] = ACTIONS(1521), + [anon_sym_has2] = ACTIONS(1521), + [anon_sym_not_DASHhas2] = ACTIONS(1521), + [anon_sym_starts_DASHwith2] = ACTIONS(1521), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1521), + [anon_sym_ends_DASHwith2] = ACTIONS(1521), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1521), + [anon_sym_EQ_EQ2] = ACTIONS(1521), + [anon_sym_BANG_EQ2] = ACTIONS(1521), + [anon_sym_LT2] = ACTIONS(1519), + [anon_sym_LT_EQ2] = ACTIONS(1521), + [anon_sym_GT_EQ2] = ACTIONS(1521), + [anon_sym_EQ_TILDE2] = ACTIONS(1521), + [anon_sym_BANG_TILDE2] = ACTIONS(1521), + [anon_sym_like2] = ACTIONS(1521), + [anon_sym_not_DASHlike2] = ACTIONS(1521), + [anon_sym_STAR_STAR2] = ACTIONS(1521), + [anon_sym_PLUS_PLUS2] = ACTIONS(1521), + [anon_sym_SLASH2] = ACTIONS(1519), + [anon_sym_mod2] = ACTIONS(1521), + [anon_sym_SLASH_SLASH2] = ACTIONS(1521), + [anon_sym_PLUS2] = ACTIONS(1519), + [anon_sym_bit_DASHshl2] = ACTIONS(1521), + [anon_sym_bit_DASHshr2] = ACTIONS(1521), + [anon_sym_bit_DASHand2] = ACTIONS(1521), + [anon_sym_bit_DASHxor2] = ACTIONS(1521), + [anon_sym_bit_DASHor2] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [anon_sym_QMARK2] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_DOT2] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(503)] = { + [sym_cell_path] = STATE(741), + [sym_path] = STATE(458), + [sym_comment] = STATE(503), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = ACTIONS(1896), + [sym__newline] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_err_GT_PIPE] = ACTIONS(1896), + [anon_sym_out_GT_PIPE] = ACTIONS(1896), + [anon_sym_e_GT_PIPE] = ACTIONS(1896), + [anon_sym_o_GT_PIPE] = ACTIONS(1896), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1896), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1896), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1896), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1896), + [anon_sym_RPAREN] = ACTIONS(1896), + [anon_sym_GT2] = ACTIONS(1898), + [anon_sym_DASH2] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_EQ_GT] = ACTIONS(1896), + [anon_sym_STAR2] = ACTIONS(1898), + [anon_sym_and2] = ACTIONS(1896), + [anon_sym_xor2] = ACTIONS(1896), + [anon_sym_or2] = ACTIONS(1896), + [anon_sym_not_DASHin2] = ACTIONS(1896), + [anon_sym_has2] = ACTIONS(1896), + [anon_sym_not_DASHhas2] = ACTIONS(1896), + [anon_sym_starts_DASHwith2] = ACTIONS(1896), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1896), + [anon_sym_ends_DASHwith2] = ACTIONS(1896), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1896), + [anon_sym_EQ_EQ2] = ACTIONS(1896), + [anon_sym_BANG_EQ2] = ACTIONS(1896), + [anon_sym_LT2] = ACTIONS(1898), + [anon_sym_LT_EQ2] = ACTIONS(1896), + [anon_sym_GT_EQ2] = ACTIONS(1896), + [anon_sym_EQ_TILDE2] = ACTIONS(1896), + [anon_sym_BANG_TILDE2] = ACTIONS(1896), + [anon_sym_like2] = ACTIONS(1896), + [anon_sym_not_DASHlike2] = ACTIONS(1896), + [anon_sym_STAR_STAR2] = ACTIONS(1896), + [anon_sym_PLUS_PLUS2] = ACTIONS(1896), + [anon_sym_SLASH2] = ACTIONS(1898), + [anon_sym_mod2] = ACTIONS(1896), + [anon_sym_SLASH_SLASH2] = ACTIONS(1896), + [anon_sym_PLUS2] = ACTIONS(1898), + [anon_sym_bit_DASHshl2] = ACTIONS(1896), + [anon_sym_bit_DASHshr2] = ACTIONS(1896), + [anon_sym_bit_DASHand2] = ACTIONS(1896), + [anon_sym_bit_DASHxor2] = ACTIONS(1896), + [anon_sym_bit_DASHor2] = ACTIONS(1896), + [anon_sym_DOT2] = ACTIONS(1866), + [anon_sym_err_GT] = ACTIONS(1898), + [anon_sym_out_GT] = ACTIONS(1898), + [anon_sym_e_GT] = ACTIONS(1898), + [anon_sym_o_GT] = ACTIONS(1898), + [anon_sym_err_PLUSout_GT] = ACTIONS(1898), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1898), + [anon_sym_o_PLUSe_GT] = ACTIONS(1898), + [anon_sym_e_PLUSo_GT] = ACTIONS(1898), + [anon_sym_err_GT_GT] = ACTIONS(1896), + [anon_sym_out_GT_GT] = ACTIONS(1896), + [anon_sym_e_GT_GT] = ACTIONS(1896), + [anon_sym_o_GT_GT] = ACTIONS(1896), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1896), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1896), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1896), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(504)] = { + [sym_comment] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [sym__newline] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_err_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_GT_PIPE] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1525), + [anon_sym_GT2] = ACTIONS(1523), + [anon_sym_DASH2] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_STAR2] = ACTIONS(1523), + [anon_sym_and2] = ACTIONS(1525), + [anon_sym_xor2] = ACTIONS(1525), + [anon_sym_or2] = ACTIONS(1525), + [anon_sym_not_DASHin2] = ACTIONS(1525), + [anon_sym_has2] = ACTIONS(1525), + [anon_sym_not_DASHhas2] = ACTIONS(1525), + [anon_sym_starts_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1525), + [anon_sym_ends_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1525), + [anon_sym_EQ_EQ2] = ACTIONS(1525), + [anon_sym_BANG_EQ2] = ACTIONS(1525), + [anon_sym_LT2] = ACTIONS(1523), + [anon_sym_LT_EQ2] = ACTIONS(1525), + [anon_sym_GT_EQ2] = ACTIONS(1525), + [anon_sym_EQ_TILDE2] = ACTIONS(1525), + [anon_sym_BANG_TILDE2] = ACTIONS(1525), + [anon_sym_like2] = ACTIONS(1525), + [anon_sym_not_DASHlike2] = ACTIONS(1525), + [anon_sym_STAR_STAR2] = ACTIONS(1525), + [anon_sym_PLUS_PLUS2] = ACTIONS(1525), + [anon_sym_SLASH2] = ACTIONS(1523), + [anon_sym_mod2] = ACTIONS(1525), + [anon_sym_SLASH_SLASH2] = ACTIONS(1525), + [anon_sym_PLUS2] = ACTIONS(1523), + [anon_sym_bit_DASHshl2] = ACTIONS(1525), + [anon_sym_bit_DASHshr2] = ACTIONS(1525), + [anon_sym_bit_DASHand2] = ACTIONS(1525), + [anon_sym_bit_DASHxor2] = ACTIONS(1525), + [anon_sym_bit_DASHor2] = ACTIONS(1525), + [anon_sym_DOT_DOT2] = ACTIONS(1523), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1525), + [anon_sym_QMARK2] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_DOT2] = ACTIONS(1523), + [anon_sym_err_GT] = ACTIONS(1523), + [anon_sym_out_GT] = ACTIONS(1523), + [anon_sym_e_GT] = ACTIONS(1523), + [anon_sym_o_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT] = ACTIONS(1523), + [anon_sym_err_GT_GT] = ACTIONS(1525), + [anon_sym_out_GT_GT] = ACTIONS(1525), + [anon_sym_e_GT_GT] = ACTIONS(1525), + [anon_sym_o_GT_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(505)] = { + [sym_cell_path] = STATE(939), + [sym_path] = STATE(458), + [sym_comment] = STATE(505), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = ACTIONS(1900), + [sym__newline] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_err_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_GT_PIPE] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1900), + [anon_sym_RPAREN] = ACTIONS(1900), + [anon_sym_GT2] = ACTIONS(1902), + [anon_sym_DASH2] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_EQ_GT] = ACTIONS(1900), + [anon_sym_STAR2] = ACTIONS(1902), + [anon_sym_and2] = ACTIONS(1900), + [anon_sym_xor2] = ACTIONS(1900), + [anon_sym_or2] = ACTIONS(1900), + [anon_sym_not_DASHin2] = ACTIONS(1900), + [anon_sym_has2] = ACTIONS(1900), + [anon_sym_not_DASHhas2] = ACTIONS(1900), + [anon_sym_starts_DASHwith2] = ACTIONS(1900), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1900), + [anon_sym_ends_DASHwith2] = ACTIONS(1900), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1900), + [anon_sym_EQ_EQ2] = ACTIONS(1900), + [anon_sym_BANG_EQ2] = ACTIONS(1900), + [anon_sym_LT2] = ACTIONS(1902), + [anon_sym_LT_EQ2] = ACTIONS(1900), + [anon_sym_GT_EQ2] = ACTIONS(1900), + [anon_sym_EQ_TILDE2] = ACTIONS(1900), + [anon_sym_BANG_TILDE2] = ACTIONS(1900), + [anon_sym_like2] = ACTIONS(1900), + [anon_sym_not_DASHlike2] = ACTIONS(1900), + [anon_sym_STAR_STAR2] = ACTIONS(1900), + [anon_sym_PLUS_PLUS2] = ACTIONS(1900), + [anon_sym_SLASH2] = ACTIONS(1902), + [anon_sym_mod2] = ACTIONS(1900), + [anon_sym_SLASH_SLASH2] = ACTIONS(1900), + [anon_sym_PLUS2] = ACTIONS(1902), + [anon_sym_bit_DASHshl2] = ACTIONS(1900), + [anon_sym_bit_DASHshr2] = ACTIONS(1900), + [anon_sym_bit_DASHand2] = ACTIONS(1900), + [anon_sym_bit_DASHxor2] = ACTIONS(1900), + [anon_sym_bit_DASHor2] = ACTIONS(1900), + [anon_sym_DOT2] = ACTIONS(1866), + [anon_sym_err_GT] = ACTIONS(1902), + [anon_sym_out_GT] = ACTIONS(1902), + [anon_sym_e_GT] = ACTIONS(1902), + [anon_sym_o_GT] = ACTIONS(1902), + [anon_sym_err_PLUSout_GT] = ACTIONS(1902), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1902), + [anon_sym_o_PLUSe_GT] = ACTIONS(1902), + [anon_sym_e_PLUSo_GT] = ACTIONS(1902), + [anon_sym_err_GT_GT] = ACTIONS(1900), + [anon_sym_out_GT_GT] = ACTIONS(1900), + [anon_sym_e_GT_GT] = ACTIONS(1900), + [anon_sym_o_GT_GT] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(506)] = { + [sym_comment] = STATE(506), + [ts_builtin_sym_end] = ACTIONS(1533), + [anon_sym_in] = ACTIONS(1533), + [sym__newline] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_err_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_GT_PIPE] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1533), + [anon_sym_GT2] = ACTIONS(1531), + [anon_sym_DASH2] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_STAR2] = ACTIONS(1531), + [anon_sym_and2] = ACTIONS(1533), + [anon_sym_xor2] = ACTIONS(1533), + [anon_sym_or2] = ACTIONS(1533), + [anon_sym_not_DASHin2] = ACTIONS(1533), + [anon_sym_has2] = ACTIONS(1533), + [anon_sym_not_DASHhas2] = ACTIONS(1533), + [anon_sym_starts_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1533), + [anon_sym_ends_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1533), + [anon_sym_EQ_EQ2] = ACTIONS(1533), + [anon_sym_BANG_EQ2] = ACTIONS(1533), + [anon_sym_LT2] = ACTIONS(1531), + [anon_sym_LT_EQ2] = ACTIONS(1533), + [anon_sym_GT_EQ2] = ACTIONS(1533), + [anon_sym_EQ_TILDE2] = ACTIONS(1533), + [anon_sym_BANG_TILDE2] = ACTIONS(1533), + [anon_sym_like2] = ACTIONS(1533), + [anon_sym_not_DASHlike2] = ACTIONS(1533), + [anon_sym_STAR_STAR2] = ACTIONS(1533), + [anon_sym_PLUS_PLUS2] = ACTIONS(1533), + [anon_sym_SLASH2] = ACTIONS(1531), + [anon_sym_mod2] = ACTIONS(1533), + [anon_sym_SLASH_SLASH2] = ACTIONS(1533), + [anon_sym_PLUS2] = ACTIONS(1531), + [anon_sym_bit_DASHshl2] = ACTIONS(1533), + [anon_sym_bit_DASHshr2] = ACTIONS(1533), + [anon_sym_bit_DASHand2] = ACTIONS(1533), + [anon_sym_bit_DASHxor2] = ACTIONS(1533), + [anon_sym_bit_DASHor2] = ACTIONS(1533), + [anon_sym_DOT_DOT2] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), + [anon_sym_QMARK2] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1531), + [anon_sym_err_GT] = ACTIONS(1531), + [anon_sym_out_GT] = ACTIONS(1531), + [anon_sym_e_GT] = ACTIONS(1531), + [anon_sym_o_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT] = ACTIONS(1531), + [anon_sym_err_GT_GT] = ACTIONS(1533), + [anon_sym_out_GT_GT] = ACTIONS(1533), + [anon_sym_e_GT_GT] = ACTIONS(1533), + [anon_sym_o_GT_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(507)] = { + [sym_comment] = STATE(507), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1770), + [anon_sym_STAR2] = ACTIONS(1772), + [anon_sym_and2] = ACTIONS(1770), + [anon_sym_xor2] = ACTIONS(1770), + [anon_sym_or2] = ACTIONS(1770), + [anon_sym_not_DASHin2] = ACTIONS(1770), + [anon_sym_has2] = ACTIONS(1770), + [anon_sym_not_DASHhas2] = ACTIONS(1770), + [anon_sym_starts_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), + [anon_sym_ends_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), + [anon_sym_EQ_EQ2] = ACTIONS(1770), + [anon_sym_BANG_EQ2] = ACTIONS(1770), + [anon_sym_LT2] = ACTIONS(1772), + [anon_sym_LT_EQ2] = ACTIONS(1770), + [anon_sym_GT_EQ2] = ACTIONS(1770), + [anon_sym_EQ_TILDE2] = ACTIONS(1770), + [anon_sym_BANG_TILDE2] = ACTIONS(1770), + [anon_sym_like2] = ACTIONS(1770), + [anon_sym_not_DASHlike2] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_STAR_STAR2] = ACTIONS(1770), + [anon_sym_PLUS_PLUS2] = ACTIONS(1770), + [anon_sym_SLASH2] = ACTIONS(1772), + [anon_sym_mod2] = ACTIONS(1770), + [anon_sym_SLASH_SLASH2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_bit_DASHshl2] = ACTIONS(1770), + [anon_sym_bit_DASHshr2] = ACTIONS(1770), + [anon_sym_bit_DASHand2] = ACTIONS(1770), + [anon_sym_bit_DASHxor2] = ACTIONS(1770), + [anon_sym_bit_DASHor2] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(1904), + [aux_sym__immediate_decimal_token5] = ACTIONS(1906), + [anon_sym_err_GT] = ACTIONS(1772), + [anon_sym_out_GT] = ACTIONS(1772), + [anon_sym_e_GT] = ACTIONS(1772), + [anon_sym_o_GT] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT] = ACTIONS(1772), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [sym__unquoted_pattern] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(508)] = { + [sym_comment] = STATE(508), + [ts_builtin_sym_end] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [anon_sym_DOT_DOT2] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1744), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1744), + [aux_sym__immediate_decimal_token5] = ACTIONS(1910), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [sym__unquoted_pattern] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(509)] = { + [sym_cell_path] = STATE(906), + [sym_path] = STATE(458), + [sym_comment] = STATE(509), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = ACTIONS(1912), + [sym__newline] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_err_GT_PIPE] = ACTIONS(1912), + [anon_sym_out_GT_PIPE] = ACTIONS(1912), + [anon_sym_e_GT_PIPE] = ACTIONS(1912), + [anon_sym_o_GT_PIPE] = ACTIONS(1912), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1912), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1912), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1912), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1912), + [anon_sym_GT2] = ACTIONS(1914), + [anon_sym_DASH2] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_EQ_GT] = ACTIONS(1912), + [anon_sym_STAR2] = ACTIONS(1914), + [anon_sym_and2] = ACTIONS(1912), + [anon_sym_xor2] = ACTIONS(1912), + [anon_sym_or2] = ACTIONS(1912), + [anon_sym_not_DASHin2] = ACTIONS(1912), + [anon_sym_has2] = ACTIONS(1912), + [anon_sym_not_DASHhas2] = ACTIONS(1912), + [anon_sym_starts_DASHwith2] = ACTIONS(1912), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1912), + [anon_sym_ends_DASHwith2] = ACTIONS(1912), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1912), + [anon_sym_EQ_EQ2] = ACTIONS(1912), + [anon_sym_BANG_EQ2] = ACTIONS(1912), + [anon_sym_LT2] = ACTIONS(1914), + [anon_sym_LT_EQ2] = ACTIONS(1912), + [anon_sym_GT_EQ2] = ACTIONS(1912), + [anon_sym_EQ_TILDE2] = ACTIONS(1912), + [anon_sym_BANG_TILDE2] = ACTIONS(1912), + [anon_sym_like2] = ACTIONS(1912), + [anon_sym_not_DASHlike2] = ACTIONS(1912), + [anon_sym_STAR_STAR2] = ACTIONS(1912), + [anon_sym_PLUS_PLUS2] = ACTIONS(1912), + [anon_sym_SLASH2] = ACTIONS(1914), + [anon_sym_mod2] = ACTIONS(1912), + [anon_sym_SLASH_SLASH2] = ACTIONS(1912), + [anon_sym_PLUS2] = ACTIONS(1914), + [anon_sym_bit_DASHshl2] = ACTIONS(1912), + [anon_sym_bit_DASHshr2] = ACTIONS(1912), + [anon_sym_bit_DASHand2] = ACTIONS(1912), + [anon_sym_bit_DASHxor2] = ACTIONS(1912), + [anon_sym_bit_DASHor2] = ACTIONS(1912), + [anon_sym_DOT2] = ACTIONS(1866), + [anon_sym_err_GT] = ACTIONS(1914), + [anon_sym_out_GT] = ACTIONS(1914), + [anon_sym_e_GT] = ACTIONS(1914), + [anon_sym_o_GT] = ACTIONS(1914), + [anon_sym_err_PLUSout_GT] = ACTIONS(1914), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1914), + [anon_sym_o_PLUSe_GT] = ACTIONS(1914), + [anon_sym_e_PLUSo_GT] = ACTIONS(1914), + [anon_sym_err_GT_GT] = ACTIONS(1912), + [anon_sym_out_GT_GT] = ACTIONS(1912), + [anon_sym_e_GT_GT] = ACTIONS(1912), + [anon_sym_o_GT_GT] = ACTIONS(1912), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1912), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1912), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1912), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(510)] = { + [sym_comment] = STATE(510), + [anon_sym_in] = ACTIONS(1852), + [sym__newline] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_err_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_GT_PIPE] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_GT2] = ACTIONS(1854), + [anon_sym_DASH2] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_STAR2] = ACTIONS(1854), + [anon_sym_and2] = ACTIONS(1852), + [anon_sym_xor2] = ACTIONS(1852), + [anon_sym_or2] = ACTIONS(1852), + [anon_sym_not_DASHin2] = ACTIONS(1852), + [anon_sym_has2] = ACTIONS(1852), + [anon_sym_not_DASHhas2] = ACTIONS(1852), + [anon_sym_starts_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), + [anon_sym_ends_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), + [anon_sym_EQ_EQ2] = ACTIONS(1852), + [anon_sym_BANG_EQ2] = ACTIONS(1852), + [anon_sym_LT2] = ACTIONS(1854), + [anon_sym_LT_EQ2] = ACTIONS(1852), + [anon_sym_GT_EQ2] = ACTIONS(1852), + [anon_sym_EQ_TILDE2] = ACTIONS(1852), + [anon_sym_BANG_TILDE2] = ACTIONS(1852), + [anon_sym_like2] = ACTIONS(1852), + [anon_sym_not_DASHlike2] = ACTIONS(1852), + [anon_sym_LPAREN2] = ACTIONS(1852), + [anon_sym_STAR_STAR2] = ACTIONS(1852), + [anon_sym_PLUS_PLUS2] = ACTIONS(1852), + [anon_sym_SLASH2] = ACTIONS(1854), + [anon_sym_mod2] = ACTIONS(1852), + [anon_sym_SLASH_SLASH2] = ACTIONS(1852), + [anon_sym_PLUS2] = ACTIONS(1854), + [anon_sym_bit_DASHshl2] = ACTIONS(1852), + [anon_sym_bit_DASHshr2] = ACTIONS(1852), + [anon_sym_bit_DASHand2] = ACTIONS(1852), + [anon_sym_bit_DASHxor2] = ACTIONS(1852), + [anon_sym_bit_DASHor2] = ACTIONS(1852), + [anon_sym_DOT_DOT2] = ACTIONS(1854), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1852), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1852), + [anon_sym_err_GT] = ACTIONS(1854), + [anon_sym_out_GT] = ACTIONS(1854), + [anon_sym_e_GT] = ACTIONS(1854), + [anon_sym_o_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT] = ACTIONS(1854), + [anon_sym_err_GT_GT] = ACTIONS(1852), + [anon_sym_out_GT_GT] = ACTIONS(1852), + [anon_sym_e_GT_GT] = ACTIONS(1852), + [anon_sym_o_GT_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), + [sym__unquoted_pattern] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(511)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(4345), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4587), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(511), + [aux_sym__types_body_repeat1] = STATE(1516), + [aux_sym__match_pattern_record_body_repeat1] = STATE(838), + [aux_sym_record_body_repeat1] = STATE(867), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -86286,10584 +87661,9862 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1836), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(502)] = { - [sym__path_suffix] = STATE(784), - [sym_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(503)] = { - [sym_comment] = STATE(503), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), }, - [STATE(504)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1588), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(504), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(512)] = { + [aux_sym__repeat_newline] = STATE(513), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2063), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(831), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(512), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(505)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2046), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(505), + [STATE(513)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2094), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(859), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(513), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(506)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2048), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(506), + [STATE(514)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2096), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(860), + [sym__unquoted_with_expr] = STATE(1077), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(514), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(507)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2050), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(507), + [STATE(515)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1079), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(515), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(508)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2052), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(508), + [STATE(516)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2098), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(516), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(509)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2054), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(509), + [STATE(517)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2100), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1086), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(517), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(510)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2056), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(510), + [STATE(518)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2102), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(864), + [sym__unquoted_with_expr] = STATE(1088), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(518), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(511)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2058), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(511), + [STATE(519)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2104), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(865), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(519), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(512)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(512), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(520)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1255), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(807), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(520), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(513)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2060), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(513), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(521)] = { + [aux_sym__repeat_newline] = STATE(666), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1093), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(782), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(521), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(514)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2062), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(514), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(522)] = { + [aux_sym__repeat_newline] = STATE(673), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1248), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(522), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(515)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2064), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(515), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(523)] = { + [aux_sym__repeat_newline] = STATE(520), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1250), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(785), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(523), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(516)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2066), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(516), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(524)] = { + [aux_sym__repeat_newline] = STATE(609), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1173), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(775), + [sym__unquoted_with_expr] = STATE(1037), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(524), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(517)] = { - [sym_path] = STATE(783), - [sym_comment] = STATE(517), - [aux_sym__where_predicate_lhs_repeat1] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1526), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1934), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(518)] = { - [sym_path] = STATE(783), - [sym_comment] = STATE(518), - [aux_sym__where_predicate_lhs_repeat1] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1460), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(519)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1187), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(519), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(525)] = { + [aux_sym__repeat_newline] = STATE(610), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1177), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(776), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(525), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(520)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1156), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(520), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(526)] = { + [sym_comment] = STATE(526), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1960), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [anon_sym_DOT_DOT2] = ACTIONS(1962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1964), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [sym__unquoted_pattern] = ACTIONS(1635), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(527)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(527), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_catch] = ACTIONS(1966), + [anon_sym_in] = ACTIONS(1966), + [sym__newline] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_err_GT_PIPE] = ACTIONS(1966), + [anon_sym_out_GT_PIPE] = ACTIONS(1966), + [anon_sym_e_GT_PIPE] = ACTIONS(1966), + [anon_sym_o_GT_PIPE] = ACTIONS(1966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1966), + [anon_sym_COLON] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_RPAREN] = ACTIONS(1966), + [anon_sym_GT2] = ACTIONS(1971), + [anon_sym_DASH2] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_STAR2] = ACTIONS(1971), + [anon_sym_and2] = ACTIONS(1966), + [anon_sym_xor2] = ACTIONS(1966), + [anon_sym_or2] = ACTIONS(1966), + [anon_sym_not_DASHin2] = ACTIONS(1966), + [anon_sym_has2] = ACTIONS(1966), + [anon_sym_not_DASHhas2] = ACTIONS(1966), + [anon_sym_starts_DASHwith2] = ACTIONS(1966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1966), + [anon_sym_ends_DASHwith2] = ACTIONS(1966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1966), + [anon_sym_EQ_EQ2] = ACTIONS(1966), + [anon_sym_BANG_EQ2] = ACTIONS(1966), + [anon_sym_LT2] = ACTIONS(1971), + [anon_sym_LT_EQ2] = ACTIONS(1966), + [anon_sym_GT_EQ2] = ACTIONS(1966), + [anon_sym_EQ_TILDE2] = ACTIONS(1966), + [anon_sym_BANG_TILDE2] = ACTIONS(1966), + [anon_sym_like2] = ACTIONS(1966), + [anon_sym_not_DASHlike2] = ACTIONS(1966), + [anon_sym_STAR_STAR2] = ACTIONS(1966), + [anon_sym_PLUS_PLUS2] = ACTIONS(1966), + [anon_sym_SLASH2] = ACTIONS(1971), + [anon_sym_mod2] = ACTIONS(1966), + [anon_sym_SLASH_SLASH2] = ACTIONS(1966), + [anon_sym_PLUS2] = ACTIONS(1971), + [anon_sym_bit_DASHshl2] = ACTIONS(1966), + [anon_sym_bit_DASHshr2] = ACTIONS(1966), + [anon_sym_bit_DASHand2] = ACTIONS(1966), + [anon_sym_bit_DASHxor2] = ACTIONS(1966), + [anon_sym_bit_DASHor2] = ACTIONS(1966), + [anon_sym_err_GT] = ACTIONS(1971), + [anon_sym_out_GT] = ACTIONS(1971), + [anon_sym_e_GT] = ACTIONS(1971), + [anon_sym_o_GT] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT] = ACTIONS(1971), + [anon_sym_err_GT_GT] = ACTIONS(1966), + [anon_sym_out_GT_GT] = ACTIONS(1966), + [anon_sym_e_GT_GT] = ACTIONS(1966), + [anon_sym_o_GT_GT] = ACTIONS(1966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1966), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(528)] = { + [sym_comment] = STATE(528), + [anon_sym_in] = ACTIONS(1973), + [sym__newline] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_err_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_GT_PIPE] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1973), + [anon_sym_GT2] = ACTIONS(1975), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_STAR2] = ACTIONS(1975), + [anon_sym_and2] = ACTIONS(1973), + [anon_sym_xor2] = ACTIONS(1973), + [anon_sym_or2] = ACTIONS(1973), + [anon_sym_not_DASHin2] = ACTIONS(1973), + [anon_sym_has2] = ACTIONS(1973), + [anon_sym_not_DASHhas2] = ACTIONS(1973), + [anon_sym_starts_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), + [anon_sym_ends_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), + [anon_sym_EQ_EQ2] = ACTIONS(1973), + [anon_sym_BANG_EQ2] = ACTIONS(1973), + [anon_sym_LT2] = ACTIONS(1975), + [anon_sym_LT_EQ2] = ACTIONS(1973), + [anon_sym_GT_EQ2] = ACTIONS(1973), + [anon_sym_EQ_TILDE2] = ACTIONS(1973), + [anon_sym_BANG_TILDE2] = ACTIONS(1973), + [anon_sym_like2] = ACTIONS(1973), + [anon_sym_not_DASHlike2] = ACTIONS(1973), + [anon_sym_LPAREN2] = ACTIONS(1977), + [anon_sym_STAR_STAR2] = ACTIONS(1973), + [anon_sym_PLUS_PLUS2] = ACTIONS(1973), + [anon_sym_SLASH2] = ACTIONS(1975), + [anon_sym_mod2] = ACTIONS(1973), + [anon_sym_SLASH_SLASH2] = ACTIONS(1973), + [anon_sym_PLUS2] = ACTIONS(1975), + [anon_sym_bit_DASHshl2] = ACTIONS(1973), + [anon_sym_bit_DASHshr2] = ACTIONS(1973), + [anon_sym_bit_DASHand2] = ACTIONS(1973), + [anon_sym_bit_DASHxor2] = ACTIONS(1973), + [anon_sym_bit_DASHor2] = ACTIONS(1973), + [anon_sym_DOT_DOT2] = ACTIONS(1979), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1981), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1981), + [anon_sym_err_GT] = ACTIONS(1975), + [anon_sym_out_GT] = ACTIONS(1975), + [anon_sym_e_GT] = ACTIONS(1975), + [anon_sym_o_GT] = ACTIONS(1975), + [anon_sym_err_PLUSout_GT] = ACTIONS(1975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), + [anon_sym_o_PLUSe_GT] = ACTIONS(1975), + [anon_sym_e_PLUSo_GT] = ACTIONS(1975), + [anon_sym_err_GT_GT] = ACTIONS(1973), + [anon_sym_out_GT_GT] = ACTIONS(1973), + [anon_sym_e_GT_GT] = ACTIONS(1973), + [anon_sym_o_GT_GT] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), + [sym__unquoted_pattern] = ACTIONS(1983), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(529)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(4345), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4701), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(529), + [aux_sym__types_body_repeat1] = STATE(1516), + [aux_sym__match_pattern_record_body_repeat1] = STATE(838), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(530)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_val_entry] = STATE(4549), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(530), + [aux_sym_list_body_repeat1] = STATE(532), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(531)] = { + [aux_sym__repeat_newline] = STATE(612), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1251), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(786), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(531), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(521)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1193), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(521), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(532)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_val_entry] = STATE(4830), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(532), + [aux_sym_list_body_repeat1] = STATE(532), + [anon_sym_true] = ACTIONS(1985), + [anon_sym_false] = ACTIONS(1985), + [anon_sym_null] = ACTIONS(1988), + [aux_sym_cmd_identifier_token3] = ACTIONS(1991), + [aux_sym_cmd_identifier_token4] = ACTIONS(1991), + [aux_sym_cmd_identifier_token5] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_DOT_DOT] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2009), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2012), + [anon_sym_DOT_DOT_LT] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2021), + [aux_sym__val_number_decimal_token3] = ACTIONS(2024), + [aux_sym__val_number_decimal_token4] = ACTIONS(2024), + [aux_sym__val_number_token1] = ACTIONS(2027), + [aux_sym__val_number_token2] = ACTIONS(2027), + [aux_sym__val_number_token3] = ACTIONS(2027), + [anon_sym_0b] = ACTIONS(2030), + [anon_sym_0o] = ACTIONS(2033), + [anon_sym_0x] = ACTIONS(2033), + [sym_val_date] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2039), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_BQUOTE] = ACTIONS(2045), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2048), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2054), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2060), + }, + [STATE(533)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1194), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(853), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(533), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(522)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1168), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(522), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(534)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1199), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(854), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(534), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(523)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1180), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(523), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(535)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1202), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(855), + [sym__unquoted_with_expr] = STATE(1065), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(535), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(524)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1197), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(524), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(536)] = { + [aux_sym__repeat_newline] = STATE(613), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1254), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(536), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(525)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1234), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(525), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(537)] = { + [aux_sym__repeat_newline] = STATE(607), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1159), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(772), + [sym__unquoted_with_expr] = STATE(1020), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(537), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(526)] = { - [aux_sym__repeat_newline] = STATE(616), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1982), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(526), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(538)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1204), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(856), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(538), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(527)] = { - [aux_sym__repeat_newline] = STATE(598), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1226), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(527), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(539)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1207), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(857), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(539), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(528)] = { - [aux_sym__repeat_newline] = STATE(599), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1235), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(528), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(540)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1209), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(858), + [sym__unquoted_with_expr] = STATE(1072), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(540), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(529)] = { - [aux_sym__repeat_newline] = STATE(617), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1983), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(529), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(541)] = { + [aux_sym__repeat_newline] = STATE(611), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1195), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(778), + [sym__unquoted_with_expr] = STATE(1057), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(541), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(530)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1261), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(530), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(542)] = { + [aux_sym__repeat_newline] = STATE(556), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1568), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(772), + [sym__unquoted_with_expr] = STATE(1020), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(542), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(531)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(531), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(543)] = { + [aux_sym__repeat_newline] = STATE(557), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1569), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(543), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(532)] = { - [aux_sym__repeat_newline] = STATE(619), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1984), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(532), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(533)] = { - [aux_sym__repeat_newline] = STATE(620), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1985), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(533), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(534)] = { - [aux_sym__repeat_newline] = STATE(621), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1986), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(534), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(535)] = { - [aux_sym__repeat_newline] = STATE(600), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1241), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(535), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(536)] = { - [aux_sym__repeat_newline] = STATE(622), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1987), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(536), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(537)] = { - [aux_sym__repeat_newline] = STATE(623), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1988), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(537), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(538)] = { - [aux_sym__repeat_newline] = STATE(624), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1989), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(538), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(539)] = { - [aux_sym__repeat_newline] = STATE(626), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(539), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(540)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(540), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1955), - [sym__newline] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_GT2] = ACTIONS(1960), - [anon_sym_DASH2] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_STAR2] = ACTIONS(1960), - [anon_sym_and2] = ACTIONS(1955), - [anon_sym_xor2] = ACTIONS(1955), - [anon_sym_or2] = ACTIONS(1955), - [anon_sym_not_DASHin2] = ACTIONS(1955), - [anon_sym_has2] = ACTIONS(1955), - [anon_sym_not_DASHhas2] = ACTIONS(1955), - [anon_sym_starts_DASHwith2] = ACTIONS(1955), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1955), - [anon_sym_ends_DASHwith2] = ACTIONS(1955), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1955), - [anon_sym_EQ_EQ2] = ACTIONS(1955), - [anon_sym_BANG_EQ2] = ACTIONS(1955), - [anon_sym_LT2] = ACTIONS(1960), - [anon_sym_LT_EQ2] = ACTIONS(1955), - [anon_sym_GT_EQ2] = ACTIONS(1955), - [anon_sym_EQ_TILDE2] = ACTIONS(1955), - [anon_sym_BANG_TILDE2] = ACTIONS(1955), - [anon_sym_like2] = ACTIONS(1955), - [anon_sym_not_DASHlike2] = ACTIONS(1955), - [anon_sym_STAR_STAR2] = ACTIONS(1955), - [anon_sym_PLUS_PLUS2] = ACTIONS(1955), - [anon_sym_SLASH2] = ACTIONS(1960), - [anon_sym_mod2] = ACTIONS(1955), - [anon_sym_SLASH_SLASH2] = ACTIONS(1955), - [anon_sym_PLUS2] = ACTIONS(1960), - [anon_sym_bit_DASHshl2] = ACTIONS(1955), - [anon_sym_bit_DASHshr2] = ACTIONS(1955), - [anon_sym_bit_DASHand2] = ACTIONS(1955), - [anon_sym_bit_DASHxor2] = ACTIONS(1955), - [anon_sym_bit_DASHor2] = ACTIONS(1955), - [anon_sym_err_GT] = ACTIONS(1960), - [anon_sym_out_GT] = ACTIONS(1960), - [anon_sym_e_GT] = ACTIONS(1960), - [anon_sym_o_GT] = ACTIONS(1960), - [anon_sym_err_PLUSout_GT] = ACTIONS(1960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), - [anon_sym_o_PLUSe_GT] = ACTIONS(1960), - [anon_sym_e_PLUSo_GT] = ACTIONS(1960), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(541)] = { - [aux_sym__repeat_newline] = STATE(556), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1564), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(541), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(542)] = { - [aux_sym__repeat_newline] = STATE(557), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1565), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(542), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(543)] = { - [aux_sym__repeat_newline] = STATE(558), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1566), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(543), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(544)] = { - [aux_sym__repeat_newline] = STATE(559), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1567), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(558), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1570), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(775), + [sym__unquoted_with_expr] = STATE(1037), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(544), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(545)] = { - [aux_sym__repeat_newline] = STATE(560), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1568), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(559), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1571), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(776), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(545), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(546)] = { - [aux_sym__repeat_newline] = STATE(504), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1569), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(560), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1572), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(778), + [sym__unquoted_with_expr] = STATE(1057), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(546), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(547)] = { - [aux_sym__repeat_newline] = STATE(562), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1570), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(561), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1573), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(547), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(548)] = { - [aux_sym__repeat_newline] = STATE(563), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1571), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(562), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1574), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1071), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(548), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(549)] = { - [aux_sym__repeat_newline] = STATE(564), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(563), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1575), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1092), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(549), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(550)] = { - [aux_sym__repeat_newline] = STATE(565), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1572), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(564), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1093), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(782), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(550), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(551)] = { - [aux_sym__repeat_newline] = STATE(566), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1573), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(565), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1576), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(551), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(552)] = { - [aux_sym__repeat_newline] = STATE(567), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1574), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(566), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1577), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(785), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(552), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(553)] = { - [aux_sym__repeat_newline] = STATE(568), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1575), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(567), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1578), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(786), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(553), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(554)] = { - [aux_sym__repeat_newline] = STATE(601), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1245), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(568), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1579), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(554), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(555)] = { - [aux_sym__repeat_newline] = STATE(627), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1991), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1270), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(859), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(555), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(556)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1578), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1581), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(556), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(557)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1580), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1583), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(986), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(557), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(558)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1582), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1585), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(798), + [sym__unquoted_with_expr] = STATE(988), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(558), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(559)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1584), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1587), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(992), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(559), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(560)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1586), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1589), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(802), + [sym__unquoted_with_expr] = STATE(994), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(560), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(561)] = { - [aux_sym__repeat_newline] = STATE(530), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1221), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1591), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(803), + [sym__unquoted_with_expr] = STATE(996), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(561), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(562)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1589), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1593), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(804), + [sym__unquoted_with_expr] = STATE(998), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(562), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(563)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1591), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1595), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(805), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(563), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(564)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1002), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(903), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(564), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(565)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1593), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1597), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(806), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(565), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(566)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1595), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1599), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(807), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(566), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(567)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1597), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1601), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(567), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(568)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1599), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1603), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(809), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(568), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(569)] = { [aux_sym__repeat_newline] = STATE(585), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1601), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1605), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(569), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(570)] = { [aux_sym__repeat_newline] = STATE(586), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1602), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1606), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(570), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(571)] = { [aux_sym__repeat_newline] = STATE(587), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1603), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1517), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(812), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(571), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(572)] = { - [aux_sym__repeat_newline] = STATE(588), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1605), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(680), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1608), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(1018), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(572), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(573)] = { - [aux_sym__repeat_newline] = STATE(589), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1606), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(590), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1610), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(828), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(573), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(574)] = { - [aux_sym__repeat_newline] = STATE(590), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1607), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(591), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1611), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(830), + [sym__unquoted_with_expr] = STATE(1022), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(574), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(575)] = { - [aux_sym__repeat_newline] = STATE(591), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1608), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(592), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1612), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(831), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(575), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(576)] = { - [aux_sym__repeat_newline] = STATE(592), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1609), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(593), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1613), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(832), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(576), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(577)] = { - [aux_sym__repeat_newline] = STATE(593), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(594), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1029), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(833), + [sym__unquoted_with_expr] = STATE(1031), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(577), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(578)] = { - [aux_sym__repeat_newline] = STATE(594), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1610), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(595), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1614), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1033), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(578), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(579)] = { - [aux_sym__repeat_newline] = STATE(595), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1611), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(596), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1615), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(835), + [sym__unquoted_with_expr] = STATE(1034), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(579), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(580)] = { - [aux_sym__repeat_newline] = STATE(596), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1612), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(597), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1616), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(836), + [sym__unquoted_with_expr] = STATE(1035), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(580), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(581)] = { - [aux_sym__repeat_newline] = STATE(597), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1613), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(598), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1617), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(837), + [sym__unquoted_with_expr] = STATE(1036), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(581), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(582)] = { - [aux_sym__repeat_newline] = STATE(628), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1992), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1213), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(860), + [sym__unquoted_with_expr] = STATE(1077), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(582), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(583)] = { - [aux_sym__repeat_newline] = STATE(643), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1993), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(583), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1450), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_COLON] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1448), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1448), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_QMARK2] = ACTIONS(2081), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(584)] = { - [aux_sym__repeat_newline] = STATE(646), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1994), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4526), + [sym__record_key] = STATE(5341), [sym_comment] = STATE(584), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__types_body_repeat1] = STATE(1516), + [aux_sym_record_body_repeat1] = STATE(867), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [sym__newline] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(585)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1626), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1631), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(853), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(585), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(586)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1628), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1633), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(854), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(586), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(587)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1630), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1635), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(855), + [sym__unquoted_with_expr] = STATE(1065), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(587), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(588)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1632), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1079), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(588), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(589)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1634), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2092), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(858), + [sym__unquoted_with_expr] = STATE(1072), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(589), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(590)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1636), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1639), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(857), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(590), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(591)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1638), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1641), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(858), + [sym__unquoted_with_expr] = STATE(1072), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(591), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(592)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1640), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1643), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(859), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(592), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(593)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1645), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(860), + [sym__unquoted_with_expr] = STATE(1077), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(593), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(594)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1642), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1079), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(594), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(595)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1644), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1647), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(595), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(596)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1646), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1649), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1086), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(596), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(597)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1648), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1651), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(864), + [sym__unquoted_with_expr] = STATE(1088), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(597), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(598)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1178), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1653), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(865), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(598), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(599)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1188), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_val_entry] = STATE(4540), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(599), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym_list_body_repeat1] = STATE(532), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1470), + [aux_sym_cmd_identifier_token3] = ACTIONS(1472), + [aux_sym_cmd_identifier_token4] = ACTIONS(1472), + [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(600)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1201), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(618), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1196), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(600), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(601)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1217), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(601), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [anon_sym_DOT_DOT2] = ACTIONS(1746), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1744), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1744), + [aux_sym__immediate_decimal_token5] = ACTIONS(1910), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [sym__unquoted_pattern] = ACTIONS(1746), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(602)] = { - [aux_sym__repeat_newline] = STATE(631), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1236), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(623), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1205), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1071), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(602), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(603)] = { - [aux_sym__repeat_newline] = STATE(632), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1249), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(628), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1216), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1092), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(603), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(604)] = { - [aux_sym__repeat_newline] = STATE(633), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1253), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(608), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1165), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(604), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(605)] = { - [aux_sym__repeat_newline] = STATE(634), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1154), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1218), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(605), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(606)] = { - [aux_sym__repeat_newline] = STATE(635), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1161), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_path] = STATE(720), [sym_comment] = STATE(606), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym__where_predicate_lhs_repeat1] = STATE(606), + [ts_builtin_sym_end] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1510), + [sym__newline] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_err_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_GT_PIPE] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), + [anon_sym_GT2] = ACTIONS(1508), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_STAR2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1510), + [anon_sym_xor2] = ACTIONS(1510), + [anon_sym_or2] = ACTIONS(1510), + [anon_sym_not_DASHin2] = ACTIONS(1510), + [anon_sym_has2] = ACTIONS(1510), + [anon_sym_not_DASHhas2] = ACTIONS(1510), + [anon_sym_starts_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), + [anon_sym_ends_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), + [anon_sym_EQ_EQ2] = ACTIONS(1510), + [anon_sym_BANG_EQ2] = ACTIONS(1510), + [anon_sym_LT2] = ACTIONS(1508), + [anon_sym_LT_EQ2] = ACTIONS(1510), + [anon_sym_GT_EQ2] = ACTIONS(1510), + [anon_sym_EQ_TILDE2] = ACTIONS(1510), + [anon_sym_BANG_TILDE2] = ACTIONS(1510), + [anon_sym_like2] = ACTIONS(1510), + [anon_sym_not_DASHlike2] = ACTIONS(1510), + [anon_sym_STAR_STAR2] = ACTIONS(1510), + [anon_sym_PLUS_PLUS2] = ACTIONS(1510), + [anon_sym_SLASH2] = ACTIONS(1508), + [anon_sym_mod2] = ACTIONS(1510), + [anon_sym_SLASH_SLASH2] = ACTIONS(1510), + [anon_sym_PLUS2] = ACTIONS(1508), + [anon_sym_bit_DASHshl2] = ACTIONS(1510), + [anon_sym_bit_DASHshr2] = ACTIONS(1510), + [anon_sym_bit_DASHand2] = ACTIONS(1510), + [anon_sym_bit_DASHxor2] = ACTIONS(1510), + [anon_sym_bit_DASHor2] = ACTIONS(1510), + [anon_sym_DOT_DOT2] = ACTIONS(1508), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), + [anon_sym_DOT2] = ACTIONS(2083), + [anon_sym_err_GT] = ACTIONS(1508), + [anon_sym_out_GT] = ACTIONS(1508), + [anon_sym_e_GT] = ACTIONS(1508), + [anon_sym_o_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT] = ACTIONS(1508), + [anon_sym_err_GT_GT] = ACTIONS(1510), + [anon_sym_out_GT_GT] = ACTIONS(1510), + [anon_sym_e_GT_GT] = ACTIONS(1510), + [anon_sym_o_GT_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(607)] = { - [aux_sym__repeat_newline] = STATE(636), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1164), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1139), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(607), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(608)] = { - [aux_sym__repeat_newline] = STATE(638), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), [sym__expr_binary_expression_parenthesized] = STATE(1171), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(986), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(608), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(609)] = { - [aux_sym__repeat_newline] = STATE(639), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1174), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1180), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(798), + [sym__unquoted_with_expr] = STATE(988), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(609), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(610)] = { - [aux_sym__repeat_newline] = STATE(640), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1197), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(992), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(610), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(611)] = { - [aux_sym__repeat_newline] = STATE(641), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1185), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1217), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(802), + [sym__unquoted_with_expr] = STATE(994), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(611), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(612)] = { - [aux_sym__repeat_newline] = STATE(644), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1192), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1259), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(612), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(613)] = { - [aux_sym__repeat_newline] = STATE(647), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1195), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1264), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(809), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(613), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(614)] = { - [aux_sym__repeat_newline] = STATE(650), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1199), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(533), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1211), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(614), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(615)] = { + [aux_sym__repeat_newline] = STATE(534), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1145), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(1962), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(616)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1996), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(535), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1148), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(812), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(616), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(617)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1998), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1221), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1086), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(617), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(618)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4386), - [sym__record_key] = STATE(4971), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1225), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(803), + [sym__unquoted_with_expr] = STATE(996), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(618), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym_record_body_repeat1] = STATE(878), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(619)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2000), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1223), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(864), + [sym__unquoted_with_expr] = STATE(1088), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(619), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(620)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2002), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1226), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(865), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(620), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(621)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2004), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(538), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1151), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(1018), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(621), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(622)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2006), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_path] = STATE(720), [sym_comment] = STATE(622), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [aux_sym__where_predicate_lhs_repeat1] = STATE(606), + [ts_builtin_sym_end] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_err_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_GT_PIPE] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1506), + [anon_sym_xor2] = ACTIONS(1506), + [anon_sym_or2] = ACTIONS(1506), + [anon_sym_not_DASHin2] = ACTIONS(1506), + [anon_sym_has2] = ACTIONS(1506), + [anon_sym_not_DASHhas2] = ACTIONS(1506), + [anon_sym_starts_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), + [anon_sym_ends_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), + [anon_sym_EQ_EQ2] = ACTIONS(1506), + [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1506), + [anon_sym_GT_EQ2] = ACTIONS(1506), + [anon_sym_EQ_TILDE2] = ACTIONS(1506), + [anon_sym_BANG_TILDE2] = ACTIONS(1506), + [anon_sym_like2] = ACTIONS(1506), + [anon_sym_not_DASHlike2] = ACTIONS(1506), + [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1506), + [anon_sym_bit_DASHshr2] = ACTIONS(1506), + [anon_sym_bit_DASHand2] = ACTIONS(1506), + [anon_sym_bit_DASHxor2] = ACTIONS(1506), + [anon_sym_bit_DASHor2] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [anon_sym_DOT2] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1504), + [anon_sym_out_GT] = ACTIONS(1504), + [anon_sym_e_GT] = ACTIONS(1504), + [anon_sym_o_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT] = ACTIONS(1504), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(623)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1233), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(804), + [sym__unquoted_with_expr] = STATE(998), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(623), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(623)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2008), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(623), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(624)] = { + [aux_sym__repeat_newline] = STATE(539), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1162), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(828), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(624), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(624)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2010), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(624), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(625)] = { + [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1163), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(830), + [sym__unquoted_with_expr] = STATE(1022), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(625), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(625)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4298), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4586), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(625), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym__match_pattern_record_body_repeat1] = STATE(836), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [STATE(626)] = { + [aux_sym__repeat_newline] = STATE(555), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1164), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(831), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(626), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(626)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), + [STATE(627)] = { + [aux_sym__repeat_newline] = STATE(582), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1166), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(832), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(627), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(628)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1240), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(805), [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(626), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(628), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(627)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2012), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(627), + [STATE(629)] = { + [aux_sym__repeat_newline] = STATE(647), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2019), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(772), + [sym__unquoted_with_expr] = STATE(1020), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(629), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(628)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2014), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(628), + [STATE(630)] = { + [aux_sym__repeat_newline] = STATE(648), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2020), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(630), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(629)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4590), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(629), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(630)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(630), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, [STATE(631)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1134), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(649), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2021), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(775), + [sym__unquoted_with_expr] = STATE(1037), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(631), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(632)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1139), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(650), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2022), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(776), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(632), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(633)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1143), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(651), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2024), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(778), + [sym__unquoted_with_expr] = STATE(1057), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(633), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(634)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1148), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(652), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2026), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(634), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(635)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1152), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(653), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2027), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1071), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(635), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(636)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1157), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(654), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2028), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1092), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(636), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(637)] = { - [aux_sym__repeat_newline] = STATE(531), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(655), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1093), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(782), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(637), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(638)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1162), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(656), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2029), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(638), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(639)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1167), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(657), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2030), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(785), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(639), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(640)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(658), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2031), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(786), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(640), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(641)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1177), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(659), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2032), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(641), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(642)] = { + [aux_sym__repeat_newline] = STATE(588), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1029), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(833), + [sym__unquoted_with_expr] = STATE(1031), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(642), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(1970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1972), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(643)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2016), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(605), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1168), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1033), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(643), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(644)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1181), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(617), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1170), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(835), + [sym__unquoted_with_expr] = STATE(1034), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(644), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(645)] = { + [aux_sym__repeat_newline] = STATE(619), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1172), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(836), + [sym__unquoted_with_expr] = STATE(1035), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(645), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(1980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1982), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(646)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2018), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(620), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1174), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(837), + [sym__unquoted_with_expr] = STATE(1036), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(646), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(647)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1186), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2034), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(647), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(648)] = { - [aux_sym__repeat_newline] = STATE(671), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2020), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2036), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(986), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(648), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -96871,71 +97524,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(649)] = { - [aux_sym__repeat_newline] = STATE(505), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2021), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1997), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(798), + [sym__unquoted_with_expr] = STATE(988), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(649), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -96943,143 +97596,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(650)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1191), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2039), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(992), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(650), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(651)] = { - [aux_sym__repeat_newline] = STATE(506), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2022), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2041), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(802), + [sym__unquoted_with_expr] = STATE(994), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(651), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97087,71 +97740,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(652)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2043), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(803), + [sym__unquoted_with_expr] = STATE(996), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(652), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97159,71 +97812,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(653)] = { - [aux_sym__repeat_newline] = STATE(508), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2024), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2045), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(804), + [sym__unquoted_with_expr] = STATE(998), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(653), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97231,71 +97884,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(654)] = { - [aux_sym__repeat_newline] = STATE(509), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2025), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2047), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(805), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(654), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97303,143 +97956,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(655)] = { - [aux_sym__repeat_newline] = STATE(525), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1182), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1002), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(903), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(655), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(656)] = { - [aux_sym__repeat_newline] = STATE(510), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2026), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2049), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(806), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(656), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97447,143 +98100,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(657)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4767), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2051), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(807), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(657), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [anon_sym_null] = ACTIONS(1989), - [aux_sym_cmd_identifier_token3] = ACTIONS(1992), - [aux_sym_cmd_identifier_token4] = ACTIONS(1992), - [aux_sym_cmd_identifier_token5] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_DOT_DOT] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2013), - [anon_sym_DOT_DOT_LT] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2016), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2022), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2028), - [aux_sym__val_number_token2] = ACTIONS(2028), - [aux_sym__val_number_token3] = ACTIONS(2028), - [anon_sym_0b] = ACTIONS(2031), - [anon_sym_0o] = ACTIONS(2034), - [anon_sym_0x] = ACTIONS(2034), - [sym_val_date] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_BQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2052), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2055), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(658)] = { - [aux_sym__repeat_newline] = STATE(511), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2027), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2053), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(658), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97591,71 +98244,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(659)] = { - [aux_sym__repeat_newline] = STATE(512), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2055), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(809), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(659), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97663,71 +98316,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(660)] = { - [aux_sym__repeat_newline] = STATE(513), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2028), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(675), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2057), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(660), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97735,71 +98388,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(661)] = { - [aux_sym__repeat_newline] = STATE(514), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2029), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(676), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2058), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(661), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97807,71 +98460,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(662)] = { - [aux_sym__repeat_newline] = STATE(515), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2030), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(677), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2059), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(812), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(662), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97879,71 +98532,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(663)] = { - [aux_sym__repeat_newline] = STATE(516), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2031), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(678), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2060), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(1018), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(663), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97951,575 +98604,575 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(664)] = { + [aux_sym__repeat_newline] = STATE(679), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2061), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(828), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(665)] = { - [aux_sym__repeat_newline] = STATE(519), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1176), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(589), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2062), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(830), + [sym__unquoted_with_expr] = STATE(1022), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(665), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(666)] = { - [aux_sym__repeat_newline] = STATE(520), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1262), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1002), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(903), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(666), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(667)] = { - [aux_sym__repeat_newline] = STATE(521), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1250), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(514), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2064), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(832), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(667), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(668)] = { - [aux_sym__repeat_newline] = STATE(522), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1255), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(515), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1029), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(833), + [sym__unquoted_with_expr] = STATE(1031), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(668), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(669)] = { - [aux_sym__repeat_newline] = STATE(523), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1135), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(516), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2065), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1033), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(669), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(670)] = { - [aux_sym__repeat_newline] = STATE(524), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1158), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(517), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2066), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(835), + [sym__unquoted_with_expr] = STATE(1034), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(670), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(671)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2044), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(518), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2067), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(836), + [sym__unquoted_with_expr] = STATE(1035), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(671), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -98527,678 +99180,687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1920), [aux_sym_cmd_identifier_token4] = ACTIONS(1920), [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [sym__newline] = ACTIONS(1922), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(672)] = { + [aux_sym__repeat_newline] = STATE(519), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2068), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(837), + [sym__unquoted_with_expr] = STATE(1036), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(672), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2064), - [aux_sym__immediate_decimal_token5] = ACTIONS(2066), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(673)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1249), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(806), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2068), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2070), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2070), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(674)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(674), - [anon_sym_in] = ACTIONS(2072), - [sym__newline] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_err_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_GT_PIPE] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_GT2] = ACTIONS(2074), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_EQ_GT] = ACTIONS(2072), - [anon_sym_STAR2] = ACTIONS(2074), - [anon_sym_and2] = ACTIONS(2072), - [anon_sym_xor2] = ACTIONS(2072), - [anon_sym_or2] = ACTIONS(2072), - [anon_sym_not_DASHin2] = ACTIONS(2072), - [anon_sym_has2] = ACTIONS(2072), - [anon_sym_not_DASHhas2] = ACTIONS(2072), - [anon_sym_starts_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2072), - [anon_sym_ends_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2072), - [anon_sym_EQ_EQ2] = ACTIONS(2072), - [anon_sym_BANG_EQ2] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LT_EQ2] = ACTIONS(2072), - [anon_sym_GT_EQ2] = ACTIONS(2072), - [anon_sym_EQ_TILDE2] = ACTIONS(2072), - [anon_sym_BANG_TILDE2] = ACTIONS(2072), - [anon_sym_like2] = ACTIONS(2072), - [anon_sym_not_DASHlike2] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2072), - [anon_sym_PLUS_PLUS2] = ACTIONS(2072), - [anon_sym_SLASH2] = ACTIONS(2074), - [anon_sym_mod2] = ACTIONS(2072), - [anon_sym_SLASH_SLASH2] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2074), - [anon_sym_bit_DASHshl2] = ACTIONS(2072), - [anon_sym_bit_DASHshr2] = ACTIONS(2072), - [anon_sym_bit_DASHand2] = ACTIONS(2072), - [anon_sym_bit_DASHxor2] = ACTIONS(2072), - [anon_sym_bit_DASHor2] = ACTIONS(2072), - [anon_sym_err_GT] = ACTIONS(2074), - [anon_sym_out_GT] = ACTIONS(2074), - [anon_sym_e_GT] = ACTIONS(2074), - [anon_sym_o_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT] = ACTIONS(2074), - [anon_sym_err_GT_GT] = ACTIONS(2072), - [anon_sym_out_GT_GT] = ACTIONS(2072), - [anon_sym_e_GT_GT] = ACTIONS(2072), - [anon_sym_o_GT_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), + [ts_builtin_sym_end] = ACTIONS(1852), + [anon_sym_in] = ACTIONS(1852), + [sym__newline] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_err_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_GT_PIPE] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), + [anon_sym_GT2] = ACTIONS(1854), + [anon_sym_DASH2] = ACTIONS(1852), + [anon_sym_STAR2] = ACTIONS(1854), + [anon_sym_and2] = ACTIONS(1852), + [anon_sym_xor2] = ACTIONS(1852), + [anon_sym_or2] = ACTIONS(1852), + [anon_sym_not_DASHin2] = ACTIONS(1852), + [anon_sym_has2] = ACTIONS(1852), + [anon_sym_not_DASHhas2] = ACTIONS(1852), + [anon_sym_starts_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), + [anon_sym_ends_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), + [anon_sym_EQ_EQ2] = ACTIONS(1852), + [anon_sym_BANG_EQ2] = ACTIONS(1852), + [anon_sym_LT2] = ACTIONS(1854), + [anon_sym_LT_EQ2] = ACTIONS(1852), + [anon_sym_GT_EQ2] = ACTIONS(1852), + [anon_sym_EQ_TILDE2] = ACTIONS(1852), + [anon_sym_BANG_TILDE2] = ACTIONS(1852), + [anon_sym_like2] = ACTIONS(1852), + [anon_sym_not_DASHlike2] = ACTIONS(1852), + [anon_sym_LPAREN2] = ACTIONS(1852), + [anon_sym_STAR_STAR2] = ACTIONS(1852), + [anon_sym_PLUS_PLUS2] = ACTIONS(1852), + [anon_sym_SLASH2] = ACTIONS(1854), + [anon_sym_mod2] = ACTIONS(1852), + [anon_sym_SLASH_SLASH2] = ACTIONS(1852), + [anon_sym_PLUS2] = ACTIONS(1854), + [anon_sym_bit_DASHshl2] = ACTIONS(1852), + [anon_sym_bit_DASHshr2] = ACTIONS(1852), + [anon_sym_bit_DASHand2] = ACTIONS(1852), + [anon_sym_bit_DASHxor2] = ACTIONS(1852), + [anon_sym_bit_DASHor2] = ACTIONS(1852), + [anon_sym_DOT_DOT2] = ACTIONS(1854), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1852), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1852), + [aux_sym__immediate_decimal_token5] = ACTIONS(2086), + [anon_sym_err_GT] = ACTIONS(1854), + [anon_sym_out_GT] = ACTIONS(1854), + [anon_sym_e_GT] = ACTIONS(1854), + [anon_sym_o_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT] = ACTIONS(1854), + [anon_sym_err_GT_GT] = ACTIONS(1852), + [anon_sym_out_GT_GT] = ACTIONS(1852), + [anon_sym_e_GT_GT] = ACTIONS(1852), + [anon_sym_o_GT_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), + [sym__unquoted_pattern] = ACTIONS(1854), [anon_sym_POUND] = ACTIONS(3), }, [STATE(675)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2082), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(853), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(675), - [anon_sym_in] = ACTIONS(2076), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_DOT_DOT2] = ACTIONS(2080), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2082), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(676)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2084), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(854), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(676), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_in] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2086), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_has2] = ACTIONS(2084), - [anon_sym_not_DASHhas2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2086), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_like2] = ACTIONS(2084), - [anon_sym_not_DASHlike2] = ACTIONS(2084), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2086), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(677)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2086), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(855), + [sym__unquoted_with_expr] = STATE(1065), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(677), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(678)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2088), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(856), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(679)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(2090), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(857), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(679), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(680)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1637), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(856), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [sym__newline] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2069), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(681)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(681), + [anon_sym_if] = ACTIONS(2088), [anon_sym_in] = ACTIONS(2088), [sym__newline] = ACTIONS(2088), [anon_sym_SEMI] = ACTIONS(2088), @@ -99237,7 +99899,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2088), [anon_sym_like2] = ACTIONS(2088), [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), [anon_sym_STAR_STAR2] = ACTIONS(2088), [anon_sym_PLUS_PLUS2] = ACTIONS(2088), [anon_sym_SLASH2] = ACTIONS(2090), @@ -99249,6 +99910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2088), [anon_sym_bit_DASHxor2] = ACTIONS(2088), [anon_sym_bit_DASHor2] = ACTIONS(2088), + [anon_sym_LBRACK2] = ACTIONS(2092), [anon_sym_err_GT] = ACTIONS(2090), [anon_sym_out_GT] = ACTIONS(2090), [anon_sym_e_GT] = ACTIONS(2090), @@ -99268,149 +99930,504 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(682)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(682), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1960), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [anon_sym_DOT_DOT2] = ACTIONS(2094), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2096), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2096), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [sym__unquoted_pattern] = ACTIONS(1635), [anon_sym_POUND] = ACTIONS(3), }, [STATE(683)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(683), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(684)] = { + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(684), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(685)] = { + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(685), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(686)] = { + [sym_comment] = STATE(686), + [anon_sym_in] = ACTIONS(2102), + [sym__newline] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_err_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_GT_PIPE] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2102), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_GT2] = ACTIONS(2104), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_STAR2] = ACTIONS(2104), + [anon_sym_and2] = ACTIONS(2102), + [anon_sym_xor2] = ACTIONS(2102), + [anon_sym_or2] = ACTIONS(2102), + [anon_sym_not_DASHin2] = ACTIONS(2102), + [anon_sym_has2] = ACTIONS(2102), + [anon_sym_not_DASHhas2] = ACTIONS(2102), + [anon_sym_starts_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2102), + [anon_sym_ends_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2102), + [anon_sym_EQ_EQ2] = ACTIONS(2102), + [anon_sym_BANG_EQ2] = ACTIONS(2102), + [anon_sym_LT2] = ACTIONS(2104), + [anon_sym_LT_EQ2] = ACTIONS(2102), + [anon_sym_GT_EQ2] = ACTIONS(2102), + [anon_sym_EQ_TILDE2] = ACTIONS(2102), + [anon_sym_BANG_TILDE2] = ACTIONS(2102), + [anon_sym_like2] = ACTIONS(2102), + [anon_sym_not_DASHlike2] = ACTIONS(2102), + [anon_sym_STAR_STAR2] = ACTIONS(2102), + [anon_sym_PLUS_PLUS2] = ACTIONS(2102), + [anon_sym_SLASH2] = ACTIONS(2104), + [anon_sym_mod2] = ACTIONS(2102), + [anon_sym_SLASH_SLASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_bit_DASHshl2] = ACTIONS(2102), + [anon_sym_bit_DASHshr2] = ACTIONS(2102), + [anon_sym_bit_DASHand2] = ACTIONS(2102), + [anon_sym_bit_DASHxor2] = ACTIONS(2102), + [anon_sym_bit_DASHor2] = ACTIONS(2102), + [anon_sym_DOT_DOT2] = ACTIONS(2106), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2108), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2108), + [anon_sym_err_GT] = ACTIONS(2104), + [anon_sym_out_GT] = ACTIONS(2104), + [anon_sym_e_GT] = ACTIONS(2104), + [anon_sym_o_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT] = ACTIONS(2104), + [anon_sym_err_GT_GT] = ACTIONS(2102), + [anon_sym_out_GT_GT] = ACTIONS(2102), + [anon_sym_e_GT_GT] = ACTIONS(2102), + [anon_sym_o_GT_GT] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2102), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(687)] = { + [sym_comment] = STATE(687), + [anon_sym_in] = ACTIONS(2110), + [sym__newline] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_err_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_GT_PIPE] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), + [anon_sym_RPAREN] = ACTIONS(2110), + [anon_sym_GT2] = ACTIONS(2112), + [anon_sym_DASH2] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_STAR2] = ACTIONS(2112), + [anon_sym_and2] = ACTIONS(2110), + [anon_sym_xor2] = ACTIONS(2110), + [anon_sym_or2] = ACTIONS(2110), + [anon_sym_not_DASHin2] = ACTIONS(2110), + [anon_sym_has2] = ACTIONS(2110), + [anon_sym_not_DASHhas2] = ACTIONS(2110), + [anon_sym_starts_DASHwith2] = ACTIONS(2110), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2110), + [anon_sym_ends_DASHwith2] = ACTIONS(2110), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2110), + [anon_sym_EQ_EQ2] = ACTIONS(2110), + [anon_sym_BANG_EQ2] = ACTIONS(2110), + [anon_sym_LT2] = ACTIONS(2112), + [anon_sym_LT_EQ2] = ACTIONS(2110), + [anon_sym_GT_EQ2] = ACTIONS(2110), + [anon_sym_EQ_TILDE2] = ACTIONS(2110), + [anon_sym_BANG_TILDE2] = ACTIONS(2110), + [anon_sym_like2] = ACTIONS(2110), + [anon_sym_not_DASHlike2] = ACTIONS(2110), + [anon_sym_STAR_STAR2] = ACTIONS(2110), + [anon_sym_PLUS_PLUS2] = ACTIONS(2110), + [anon_sym_SLASH2] = ACTIONS(2112), + [anon_sym_mod2] = ACTIONS(2110), + [anon_sym_SLASH_SLASH2] = ACTIONS(2110), + [anon_sym_PLUS2] = ACTIONS(2112), + [anon_sym_bit_DASHshl2] = ACTIONS(2110), + [anon_sym_bit_DASHshr2] = ACTIONS(2110), + [anon_sym_bit_DASHand2] = ACTIONS(2110), + [anon_sym_bit_DASHxor2] = ACTIONS(2110), + [anon_sym_bit_DASHor2] = ACTIONS(2110), + [anon_sym_DOT_DOT2] = ACTIONS(2114), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2116), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2116), + [anon_sym_err_GT] = ACTIONS(2112), + [anon_sym_out_GT] = ACTIONS(2112), + [anon_sym_e_GT] = ACTIONS(2112), + [anon_sym_o_GT] = ACTIONS(2112), + [anon_sym_err_PLUSout_GT] = ACTIONS(2112), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2112), + [anon_sym_o_PLUSe_GT] = ACTIONS(2112), + [anon_sym_e_PLUSo_GT] = ACTIONS(2112), + [anon_sym_err_GT_GT] = ACTIONS(2110), + [anon_sym_out_GT_GT] = ACTIONS(2110), + [anon_sym_e_GT_GT] = ACTIONS(2110), + [anon_sym_o_GT_GT] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2110), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(688)] = { + [sym_comment] = STATE(688), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_err_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_GT_PIPE] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_GT2] = ACTIONS(2120), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_STAR2] = ACTIONS(2120), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2120), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2120), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2120), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(2122), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2124), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2124), + [anon_sym_err_GT] = ACTIONS(2120), + [anon_sym_out_GT] = ACTIONS(2120), + [anon_sym_e_GT] = ACTIONS(2120), + [anon_sym_o_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT] = ACTIONS(2120), + [anon_sym_err_GT_GT] = ACTIONS(2118), + [anon_sym_out_GT_GT] = ACTIONS(2118), + [anon_sym_e_GT_GT] = ACTIONS(2118), + [anon_sym_o_GT_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(689)] = { + [sym_comment] = STATE(689), [ts_builtin_sym_end] = ACTIONS(1870), [anon_sym_in] = ACTIONS(1870), [sym__newline] = ACTIONS(1870), @@ -99480,1784 +100497,1216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(685)] = { - [sym_comment] = STATE(685), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_in] = ACTIONS(2092), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2092), - [anon_sym_GT2] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_EQ_GT] = ACTIONS(2092), - [anon_sym_STAR2] = ACTIONS(2094), - [anon_sym_and2] = ACTIONS(2092), - [anon_sym_xor2] = ACTIONS(2092), - [anon_sym_or2] = ACTIONS(2092), - [anon_sym_not_DASHin2] = ACTIONS(2092), - [anon_sym_has2] = ACTIONS(2092), - [anon_sym_not_DASHhas2] = ACTIONS(2092), - [anon_sym_starts_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2092), - [anon_sym_ends_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2092), - [anon_sym_EQ_EQ2] = ACTIONS(2092), - [anon_sym_BANG_EQ2] = ACTIONS(2092), - [anon_sym_LT2] = ACTIONS(2094), - [anon_sym_LT_EQ2] = ACTIONS(2092), - [anon_sym_GT_EQ2] = ACTIONS(2092), - [anon_sym_EQ_TILDE2] = ACTIONS(2092), - [anon_sym_BANG_TILDE2] = ACTIONS(2092), - [anon_sym_like2] = ACTIONS(2092), - [anon_sym_not_DASHlike2] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(686)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(686), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(687)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(687), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(688)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(688), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(689)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(689), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(690)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(690), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(1973), + [sym__newline] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_err_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_GT_PIPE] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1973), + [anon_sym_GT2] = ACTIONS(1975), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_STAR2] = ACTIONS(1975), + [anon_sym_and2] = ACTIONS(1973), + [anon_sym_xor2] = ACTIONS(1973), + [anon_sym_or2] = ACTIONS(1973), + [anon_sym_not_DASHin2] = ACTIONS(1973), + [anon_sym_has2] = ACTIONS(1973), + [anon_sym_not_DASHhas2] = ACTIONS(1973), + [anon_sym_starts_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), + [anon_sym_ends_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), + [anon_sym_EQ_EQ2] = ACTIONS(1973), + [anon_sym_BANG_EQ2] = ACTIONS(1973), + [anon_sym_LT2] = ACTIONS(1975), + [anon_sym_LT_EQ2] = ACTIONS(1973), + [anon_sym_GT_EQ2] = ACTIONS(1973), + [anon_sym_EQ_TILDE2] = ACTIONS(1973), + [anon_sym_BANG_TILDE2] = ACTIONS(1973), + [anon_sym_like2] = ACTIONS(1973), + [anon_sym_not_DASHlike2] = ACTIONS(1973), + [anon_sym_STAR_STAR2] = ACTIONS(1973), + [anon_sym_PLUS_PLUS2] = ACTIONS(1973), + [anon_sym_SLASH2] = ACTIONS(1975), + [anon_sym_mod2] = ACTIONS(1973), + [anon_sym_SLASH_SLASH2] = ACTIONS(1973), + [anon_sym_PLUS2] = ACTIONS(1975), + [anon_sym_bit_DASHshl2] = ACTIONS(1973), + [anon_sym_bit_DASHshr2] = ACTIONS(1973), + [anon_sym_bit_DASHand2] = ACTIONS(1973), + [anon_sym_bit_DASHxor2] = ACTIONS(1973), + [anon_sym_bit_DASHor2] = ACTIONS(1973), + [anon_sym_DOT_DOT2] = ACTIONS(2126), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2128), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2128), + [anon_sym_err_GT] = ACTIONS(1975), + [anon_sym_out_GT] = ACTIONS(1975), + [anon_sym_e_GT] = ACTIONS(1975), + [anon_sym_o_GT] = ACTIONS(1975), + [anon_sym_err_PLUSout_GT] = ACTIONS(1975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), + [anon_sym_o_PLUSe_GT] = ACTIONS(1975), + [anon_sym_e_PLUSo_GT] = ACTIONS(1975), + [anon_sym_err_GT_GT] = ACTIONS(1973), + [anon_sym_out_GT_GT] = ACTIONS(1973), + [anon_sym_e_GT_GT] = ACTIONS(1973), + [anon_sym_o_GT_GT] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), }, [STATE(691)] = { + [sym__expr_parenthesized_immediate] = STATE(5171), [sym_comment] = STATE(691), - [anon_sym_else] = ACTIONS(2096), - [anon_sym_catch] = ACTIONS(2096), - [anon_sym_in] = ACTIONS(2096), - [sym__newline] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_COLON] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2096), - [anon_sym_GT2] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_STAR2] = ACTIONS(2098), - [anon_sym_and2] = ACTIONS(2096), - [anon_sym_xor2] = ACTIONS(2096), - [anon_sym_or2] = ACTIONS(2096), - [anon_sym_not_DASHin2] = ACTIONS(2096), - [anon_sym_has2] = ACTIONS(2096), - [anon_sym_not_DASHhas2] = ACTIONS(2096), - [anon_sym_starts_DASHwith2] = ACTIONS(2096), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2096), - [anon_sym_ends_DASHwith2] = ACTIONS(2096), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2096), - [anon_sym_EQ_EQ2] = ACTIONS(2096), - [anon_sym_BANG_EQ2] = ACTIONS(2096), - [anon_sym_LT2] = ACTIONS(2098), - [anon_sym_LT_EQ2] = ACTIONS(2096), - [anon_sym_GT_EQ2] = ACTIONS(2096), - [anon_sym_EQ_TILDE2] = ACTIONS(2096), - [anon_sym_BANG_TILDE2] = ACTIONS(2096), - [anon_sym_like2] = ACTIONS(2096), - [anon_sym_not_DASHlike2] = ACTIONS(2096), - [anon_sym_STAR_STAR2] = ACTIONS(2096), - [anon_sym_PLUS_PLUS2] = ACTIONS(2096), - [anon_sym_SLASH2] = ACTIONS(2098), - [anon_sym_mod2] = ACTIONS(2096), - [anon_sym_SLASH_SLASH2] = ACTIONS(2096), - [anon_sym_PLUS2] = ACTIONS(2098), - [anon_sym_bit_DASHshl2] = ACTIONS(2096), - [anon_sym_bit_DASHshr2] = ACTIONS(2096), - [anon_sym_bit_DASHand2] = ACTIONS(2096), - [anon_sym_bit_DASHxor2] = ACTIONS(2096), - [anon_sym_bit_DASHor2] = ACTIONS(2096), - [anon_sym_err_GT] = ACTIONS(2098), - [anon_sym_out_GT] = ACTIONS(2098), - [anon_sym_e_GT] = ACTIONS(2098), - [anon_sym_o_GT] = ACTIONS(2098), - [anon_sym_err_PLUSout_GT] = ACTIONS(2098), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2098), - [anon_sym_o_PLUSe_GT] = ACTIONS(2098), - [anon_sym_e_PLUSo_GT] = ACTIONS(2098), - [anon_sym_err_GT_GT] = ACTIONS(2096), - [anon_sym_out_GT_GT] = ACTIONS(2096), - [anon_sym_e_GT_GT] = ACTIONS(2096), - [anon_sym_o_GT_GT] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2130), + [sym__newline] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_err_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_GT_PIPE] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(2130), + [anon_sym_GT2] = ACTIONS(2132), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_EQ_GT] = ACTIONS(2130), + [anon_sym_STAR2] = ACTIONS(2132), + [anon_sym_and2] = ACTIONS(2130), + [anon_sym_xor2] = ACTIONS(2130), + [anon_sym_or2] = ACTIONS(2130), + [anon_sym_not_DASHin2] = ACTIONS(2130), + [anon_sym_has2] = ACTIONS(2130), + [anon_sym_not_DASHhas2] = ACTIONS(2130), + [anon_sym_starts_DASHwith2] = ACTIONS(2130), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2130), + [anon_sym_ends_DASHwith2] = ACTIONS(2130), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2130), + [anon_sym_EQ_EQ2] = ACTIONS(2130), + [anon_sym_BANG_EQ2] = ACTIONS(2130), + [anon_sym_LT2] = ACTIONS(2132), + [anon_sym_LT_EQ2] = ACTIONS(2130), + [anon_sym_GT_EQ2] = ACTIONS(2130), + [anon_sym_EQ_TILDE2] = ACTIONS(2130), + [anon_sym_BANG_TILDE2] = ACTIONS(2130), + [anon_sym_like2] = ACTIONS(2130), + [anon_sym_not_DASHlike2] = ACTIONS(2130), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2130), + [anon_sym_PLUS_PLUS2] = ACTIONS(2130), + [anon_sym_SLASH2] = ACTIONS(2132), + [anon_sym_mod2] = ACTIONS(2130), + [anon_sym_SLASH_SLASH2] = ACTIONS(2130), + [anon_sym_PLUS2] = ACTIONS(2132), + [anon_sym_bit_DASHshl2] = ACTIONS(2130), + [anon_sym_bit_DASHshr2] = ACTIONS(2130), + [anon_sym_bit_DASHand2] = ACTIONS(2130), + [anon_sym_bit_DASHxor2] = ACTIONS(2130), + [anon_sym_bit_DASHor2] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(2132), + [anon_sym_out_GT] = ACTIONS(2132), + [anon_sym_e_GT] = ACTIONS(2132), + [anon_sym_o_GT] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT] = ACTIONS(2132), + [anon_sym_err_GT_GT] = ACTIONS(2130), + [anon_sym_out_GT_GT] = ACTIONS(2130), + [anon_sym_e_GT_GT] = ACTIONS(2130), + [anon_sym_o_GT_GT] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2130), [anon_sym_POUND] = ACTIONS(3), }, [STATE(692)] = { + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(692), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_DOT_DOT2] = ACTIONS(2104), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2106), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2106), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(693)] = { [sym_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2108), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2110), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2110), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [anon_sym_DOT] = ACTIONS(2134), + [aux_sym__immediate_decimal_token5] = ACTIONS(2136), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [sym__unquoted_pattern] = ACTIONS(1746), [anon_sym_POUND] = ACTIONS(3), }, [STATE(694)] = { [sym_comment] = STATE(694), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_in] = ACTIONS(2112), - [sym__newline] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2112), - [anon_sym_err_GT_PIPE] = ACTIONS(2112), - [anon_sym_out_GT_PIPE] = ACTIONS(2112), - [anon_sym_e_GT_PIPE] = ACTIONS(2112), - [anon_sym_o_GT_PIPE] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2112), - [anon_sym_RPAREN] = ACTIONS(2112), - [anon_sym_GT2] = ACTIONS(2114), - [anon_sym_DASH2] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_EQ_GT] = ACTIONS(2112), - [anon_sym_STAR2] = ACTIONS(2114), - [anon_sym_and2] = ACTIONS(2112), - [anon_sym_xor2] = ACTIONS(2112), - [anon_sym_or2] = ACTIONS(2112), - [anon_sym_not_DASHin2] = ACTIONS(2112), - [anon_sym_has2] = ACTIONS(2112), - [anon_sym_not_DASHhas2] = ACTIONS(2112), - [anon_sym_starts_DASHwith2] = ACTIONS(2112), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2112), - [anon_sym_ends_DASHwith2] = ACTIONS(2112), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2112), - [anon_sym_EQ_EQ2] = ACTIONS(2112), - [anon_sym_BANG_EQ2] = ACTIONS(2112), - [anon_sym_LT2] = ACTIONS(2114), - [anon_sym_LT_EQ2] = ACTIONS(2112), - [anon_sym_GT_EQ2] = ACTIONS(2112), - [anon_sym_EQ_TILDE2] = ACTIONS(2112), - [anon_sym_BANG_TILDE2] = ACTIONS(2112), - [anon_sym_like2] = ACTIONS(2112), - [anon_sym_not_DASHlike2] = ACTIONS(2112), - [anon_sym_STAR_STAR2] = ACTIONS(2112), - [anon_sym_PLUS_PLUS2] = ACTIONS(2112), - [anon_sym_SLASH2] = ACTIONS(2114), - [anon_sym_mod2] = ACTIONS(2112), - [anon_sym_SLASH_SLASH2] = ACTIONS(2112), - [anon_sym_PLUS2] = ACTIONS(2114), - [anon_sym_bit_DASHshl2] = ACTIONS(2112), - [anon_sym_bit_DASHshr2] = ACTIONS(2112), - [anon_sym_bit_DASHand2] = ACTIONS(2112), - [anon_sym_bit_DASHxor2] = ACTIONS(2112), - [anon_sym_bit_DASHor2] = ACTIONS(2112), - [anon_sym_COLON2] = ACTIONS(2112), - [anon_sym_err_GT] = ACTIONS(2114), - [anon_sym_out_GT] = ACTIONS(2114), - [anon_sym_e_GT] = ACTIONS(2114), - [anon_sym_o_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT] = ACTIONS(2114), - [anon_sym_err_GT_GT] = ACTIONS(2112), - [anon_sym_out_GT_GT] = ACTIONS(2112), - [anon_sym_e_GT_GT] = ACTIONS(2112), - [anon_sym_o_GT_GT] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2112), + [ts_builtin_sym_end] = ACTIONS(1973), + [anon_sym_in] = ACTIONS(1973), + [sym__newline] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_err_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_GT_PIPE] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), + [anon_sym_GT2] = ACTIONS(1975), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_STAR2] = ACTIONS(1975), + [anon_sym_and2] = ACTIONS(1973), + [anon_sym_xor2] = ACTIONS(1973), + [anon_sym_or2] = ACTIONS(1973), + [anon_sym_not_DASHin2] = ACTIONS(1973), + [anon_sym_has2] = ACTIONS(1973), + [anon_sym_not_DASHhas2] = ACTIONS(1973), + [anon_sym_starts_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), + [anon_sym_ends_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), + [anon_sym_EQ_EQ2] = ACTIONS(1973), + [anon_sym_BANG_EQ2] = ACTIONS(1973), + [anon_sym_LT2] = ACTIONS(1975), + [anon_sym_LT_EQ2] = ACTIONS(1973), + [anon_sym_GT_EQ2] = ACTIONS(1973), + [anon_sym_EQ_TILDE2] = ACTIONS(1973), + [anon_sym_BANG_TILDE2] = ACTIONS(1973), + [anon_sym_like2] = ACTIONS(1973), + [anon_sym_not_DASHlike2] = ACTIONS(1973), + [anon_sym_LPAREN2] = ACTIONS(1977), + [anon_sym_STAR_STAR2] = ACTIONS(1973), + [anon_sym_PLUS_PLUS2] = ACTIONS(1973), + [anon_sym_SLASH2] = ACTIONS(1975), + [anon_sym_mod2] = ACTIONS(1973), + [anon_sym_SLASH_SLASH2] = ACTIONS(1973), + [anon_sym_PLUS2] = ACTIONS(1975), + [anon_sym_bit_DASHshl2] = ACTIONS(1973), + [anon_sym_bit_DASHshr2] = ACTIONS(1973), + [anon_sym_bit_DASHand2] = ACTIONS(1973), + [anon_sym_bit_DASHxor2] = ACTIONS(1973), + [anon_sym_bit_DASHor2] = ACTIONS(1973), + [anon_sym_DOT_DOT2] = ACTIONS(2138), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2140), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2140), + [anon_sym_err_GT] = ACTIONS(1975), + [anon_sym_out_GT] = ACTIONS(1975), + [anon_sym_e_GT] = ACTIONS(1975), + [anon_sym_o_GT] = ACTIONS(1975), + [anon_sym_err_PLUSout_GT] = ACTIONS(1975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), + [anon_sym_o_PLUSe_GT] = ACTIONS(1975), + [anon_sym_e_PLUSo_GT] = ACTIONS(1975), + [anon_sym_err_GT_GT] = ACTIONS(1973), + [anon_sym_out_GT_GT] = ACTIONS(1973), + [anon_sym_e_GT_GT] = ACTIONS(1973), + [anon_sym_o_GT_GT] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), + [sym__unquoted_pattern] = ACTIONS(1983), [anon_sym_POUND] = ACTIONS(3), }, [STATE(695)] = { [sym_comment] = STATE(695), - [anon_sym_if] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_in] = ACTIONS(2142), + [sym__newline] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_err_GT_PIPE] = ACTIONS(2142), + [anon_sym_out_GT_PIPE] = ACTIONS(2142), + [anon_sym_e_GT_PIPE] = ACTIONS(2142), + [anon_sym_o_GT_PIPE] = ACTIONS(2142), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2142), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2142), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2142), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2142), + [anon_sym_RPAREN] = ACTIONS(2142), + [anon_sym_GT2] = ACTIONS(2144), + [anon_sym_DASH2] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_EQ_GT] = ACTIONS(2142), + [anon_sym_STAR2] = ACTIONS(2144), + [anon_sym_and2] = ACTIONS(2142), + [anon_sym_xor2] = ACTIONS(2142), + [anon_sym_or2] = ACTIONS(2142), + [anon_sym_not_DASHin2] = ACTIONS(2142), + [anon_sym_has2] = ACTIONS(2142), + [anon_sym_not_DASHhas2] = ACTIONS(2142), + [anon_sym_starts_DASHwith2] = ACTIONS(2142), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2142), + [anon_sym_ends_DASHwith2] = ACTIONS(2142), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2142), + [anon_sym_EQ_EQ2] = ACTIONS(2142), + [anon_sym_BANG_EQ2] = ACTIONS(2142), + [anon_sym_LT2] = ACTIONS(2144), + [anon_sym_LT_EQ2] = ACTIONS(2142), + [anon_sym_GT_EQ2] = ACTIONS(2142), + [anon_sym_EQ_TILDE2] = ACTIONS(2142), + [anon_sym_BANG_TILDE2] = ACTIONS(2142), + [anon_sym_like2] = ACTIONS(2142), + [anon_sym_not_DASHlike2] = ACTIONS(2142), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_STAR_STAR2] = ACTIONS(2142), + [anon_sym_PLUS_PLUS2] = ACTIONS(2142), + [anon_sym_SLASH2] = ACTIONS(2144), + [anon_sym_mod2] = ACTIONS(2142), + [anon_sym_SLASH_SLASH2] = ACTIONS(2142), + [anon_sym_PLUS2] = ACTIONS(2144), + [anon_sym_bit_DASHshl2] = ACTIONS(2142), + [anon_sym_bit_DASHshr2] = ACTIONS(2142), + [anon_sym_bit_DASHand2] = ACTIONS(2142), + [anon_sym_bit_DASHxor2] = ACTIONS(2142), + [anon_sym_bit_DASHor2] = ACTIONS(2142), + [anon_sym_err_GT] = ACTIONS(2144), + [anon_sym_out_GT] = ACTIONS(2144), + [anon_sym_e_GT] = ACTIONS(2144), + [anon_sym_o_GT] = ACTIONS(2144), + [anon_sym_err_PLUSout_GT] = ACTIONS(2144), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), + [anon_sym_o_PLUSe_GT] = ACTIONS(2144), + [anon_sym_e_PLUSo_GT] = ACTIONS(2144), + [anon_sym_err_GT_GT] = ACTIONS(2142), + [anon_sym_out_GT_GT] = ACTIONS(2142), + [anon_sym_e_GT_GT] = ACTIONS(2142), + [anon_sym_o_GT_GT] = ACTIONS(2142), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2142), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2142), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2142), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2142), [anon_sym_POUND] = ACTIONS(3), }, [STATE(696)] = { [sym_comment] = STATE(696), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(2116), - [aux_sym__immediate_decimal_token5] = ACTIONS(2118), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_in] = ACTIONS(2146), + [sym__newline] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_err_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_GT_PIPE] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), + [anon_sym_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2146), + [anon_sym_RPAREN] = ACTIONS(2146), + [anon_sym_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_STAR2] = ACTIONS(2148), + [anon_sym_and2] = ACTIONS(2146), + [anon_sym_xor2] = ACTIONS(2146), + [anon_sym_or2] = ACTIONS(2146), + [anon_sym_not_DASHin2] = ACTIONS(2146), + [anon_sym_has2] = ACTIONS(2146), + [anon_sym_not_DASHhas2] = ACTIONS(2146), + [anon_sym_starts_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2146), + [anon_sym_ends_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2146), + [anon_sym_EQ_EQ2] = ACTIONS(2146), + [anon_sym_BANG_EQ2] = ACTIONS(2146), + [anon_sym_LT2] = ACTIONS(2148), + [anon_sym_LT_EQ2] = ACTIONS(2146), + [anon_sym_GT_EQ2] = ACTIONS(2146), + [anon_sym_EQ_TILDE2] = ACTIONS(2146), + [anon_sym_BANG_TILDE2] = ACTIONS(2146), + [anon_sym_like2] = ACTIONS(2146), + [anon_sym_not_DASHlike2] = ACTIONS(2146), + [anon_sym_STAR_STAR2] = ACTIONS(2146), + [anon_sym_PLUS_PLUS2] = ACTIONS(2146), + [anon_sym_SLASH2] = ACTIONS(2148), + [anon_sym_mod2] = ACTIONS(2146), + [anon_sym_SLASH_SLASH2] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2148), + [anon_sym_bit_DASHshl2] = ACTIONS(2146), + [anon_sym_bit_DASHshr2] = ACTIONS(2146), + [anon_sym_bit_DASHand2] = ACTIONS(2146), + [anon_sym_bit_DASHxor2] = ACTIONS(2146), + [anon_sym_bit_DASHor2] = ACTIONS(2146), + [anon_sym_err_GT] = ACTIONS(2148), + [anon_sym_out_GT] = ACTIONS(2148), + [anon_sym_e_GT] = ACTIONS(2148), + [anon_sym_o_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT] = ACTIONS(2148), + [anon_sym_err_GT_GT] = ACTIONS(2146), + [anon_sym_out_GT_GT] = ACTIONS(2146), + [anon_sym_e_GT_GT] = ACTIONS(2146), + [anon_sym_o_GT_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2146), [anon_sym_POUND] = ACTIONS(3), }, [STATE(697)] = { + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(697), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(698)] = { [sym_comment] = STATE(698), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2124), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2126), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2126), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_STAR2] = ACTIONS(1772), + [anon_sym_and2] = ACTIONS(1770), + [anon_sym_xor2] = ACTIONS(1770), + [anon_sym_or2] = ACTIONS(1770), + [anon_sym_not_DASHin2] = ACTIONS(1770), + [anon_sym_has2] = ACTIONS(1770), + [anon_sym_not_DASHhas2] = ACTIONS(1770), + [anon_sym_starts_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), + [anon_sym_ends_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), + [anon_sym_EQ_EQ2] = ACTIONS(1770), + [anon_sym_BANG_EQ2] = ACTIONS(1770), + [anon_sym_LT2] = ACTIONS(1772), + [anon_sym_LT_EQ2] = ACTIONS(1770), + [anon_sym_GT_EQ2] = ACTIONS(1770), + [anon_sym_EQ_TILDE2] = ACTIONS(1770), + [anon_sym_BANG_TILDE2] = ACTIONS(1770), + [anon_sym_like2] = ACTIONS(1770), + [anon_sym_not_DASHlike2] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_STAR_STAR2] = ACTIONS(1770), + [anon_sym_PLUS_PLUS2] = ACTIONS(1770), + [anon_sym_SLASH2] = ACTIONS(1772), + [anon_sym_mod2] = ACTIONS(1770), + [anon_sym_SLASH_SLASH2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_bit_DASHshl2] = ACTIONS(1770), + [anon_sym_bit_DASHshr2] = ACTIONS(1770), + [anon_sym_bit_DASHand2] = ACTIONS(1770), + [anon_sym_bit_DASHxor2] = ACTIONS(1770), + [anon_sym_bit_DASHor2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(2150), + [aux_sym__immediate_decimal_token5] = ACTIONS(2152), + [anon_sym_err_GT] = ACTIONS(1772), + [anon_sym_out_GT] = ACTIONS(1772), + [anon_sym_e_GT] = ACTIONS(1772), + [anon_sym_o_GT] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT] = ACTIONS(1772), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [sym__unquoted_pattern] = ACTIONS(1772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(699)] = { [sym_comment] = STATE(699), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(2128), - [sym__newline] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_err_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_GT_PIPE] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), - [anon_sym_RPAREN] = ACTIONS(2128), - [anon_sym_GT2] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_EQ_GT] = ACTIONS(2128), - [anon_sym_STAR2] = ACTIONS(2130), - [anon_sym_and2] = ACTIONS(2128), - [anon_sym_xor2] = ACTIONS(2128), - [anon_sym_or2] = ACTIONS(2128), - [anon_sym_not_DASHin2] = ACTIONS(2128), - [anon_sym_has2] = ACTIONS(2128), - [anon_sym_not_DASHhas2] = ACTIONS(2128), - [anon_sym_starts_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2128), - [anon_sym_ends_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2128), - [anon_sym_EQ_EQ2] = ACTIONS(2128), - [anon_sym_BANG_EQ2] = ACTIONS(2128), - [anon_sym_LT2] = ACTIONS(2130), - [anon_sym_LT_EQ2] = ACTIONS(2128), - [anon_sym_GT_EQ2] = ACTIONS(2128), - [anon_sym_EQ_TILDE2] = ACTIONS(2128), - [anon_sym_BANG_TILDE2] = ACTIONS(2128), - [anon_sym_like2] = ACTIONS(2128), - [anon_sym_not_DASHlike2] = ACTIONS(2128), - [anon_sym_STAR_STAR2] = ACTIONS(2128), - [anon_sym_PLUS_PLUS2] = ACTIONS(2128), - [anon_sym_SLASH2] = ACTIONS(2130), - [anon_sym_mod2] = ACTIONS(2128), - [anon_sym_SLASH_SLASH2] = ACTIONS(2128), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_bit_DASHshl2] = ACTIONS(2128), - [anon_sym_bit_DASHshr2] = ACTIONS(2128), - [anon_sym_bit_DASHand2] = ACTIONS(2128), - [anon_sym_bit_DASHxor2] = ACTIONS(2128), - [anon_sym_bit_DASHor2] = ACTIONS(2128), - [anon_sym_LBRACK2] = ACTIONS(2132), - [anon_sym_err_GT] = ACTIONS(2130), - [anon_sym_out_GT] = ACTIONS(2130), - [anon_sym_e_GT] = ACTIONS(2130), - [anon_sym_o_GT] = ACTIONS(2130), - [anon_sym_err_PLUSout_GT] = ACTIONS(2130), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), - [anon_sym_o_PLUSe_GT] = ACTIONS(2130), - [anon_sym_e_PLUSo_GT] = ACTIONS(2130), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), + [anon_sym_if] = ACTIONS(886), + [anon_sym_in] = ACTIONS(886), + [sym__newline] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(886), + [anon_sym_err_GT_PIPE] = ACTIONS(886), + [anon_sym_out_GT_PIPE] = ACTIONS(886), + [anon_sym_e_GT_PIPE] = ACTIONS(886), + [anon_sym_o_GT_PIPE] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(886), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(886), + [anon_sym_RBRACE] = ACTIONS(886), + [anon_sym_EQ_GT] = ACTIONS(886), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(886), + [anon_sym_xor2] = ACTIONS(886), + [anon_sym_or2] = ACTIONS(886), + [anon_sym_not_DASHin2] = ACTIONS(886), + [anon_sym_has2] = ACTIONS(886), + [anon_sym_not_DASHhas2] = ACTIONS(886), + [anon_sym_starts_DASHwith2] = ACTIONS(886), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(886), + [anon_sym_ends_DASHwith2] = ACTIONS(886), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(886), + [anon_sym_EQ_EQ2] = ACTIONS(886), + [anon_sym_BANG_EQ2] = ACTIONS(886), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(886), + [anon_sym_GT_EQ2] = ACTIONS(886), + [anon_sym_EQ_TILDE2] = ACTIONS(886), + [anon_sym_BANG_TILDE2] = ACTIONS(886), + [anon_sym_like2] = ACTIONS(886), + [anon_sym_not_DASHlike2] = ACTIONS(886), + [anon_sym_STAR_STAR2] = ACTIONS(886), + [anon_sym_PLUS_PLUS2] = ACTIONS(886), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(886), + [anon_sym_SLASH_SLASH2] = ACTIONS(886), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(886), + [anon_sym_bit_DASHshr2] = ACTIONS(886), + [anon_sym_bit_DASHand2] = ACTIONS(886), + [anon_sym_bit_DASHxor2] = ACTIONS(886), + [anon_sym_bit_DASHor2] = ACTIONS(886), + [anon_sym_COLON2] = ACTIONS(886), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(886), + [anon_sym_out_GT_GT] = ACTIONS(886), + [anon_sym_e_GT_GT] = ACTIONS(886), + [anon_sym_o_GT_GT] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), [anon_sym_POUND] = ACTIONS(3), }, [STATE(700)] = { [sym_comment] = STATE(700), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_DOT_DOT2] = ACTIONS(2158), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2160), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2160), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), [anon_sym_POUND] = ACTIONS(3), }, [STATE(701)] = { + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(702)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(702), - [anon_sym_in] = ACTIONS(2144), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_EQ_GT] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2146), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_has2] = ACTIONS(2144), - [anon_sym_not_DASHhas2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2146), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_like2] = ACTIONS(2144), - [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2146), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), + [ts_builtin_sym_end] = ACTIONS(1498), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_COLON] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_has2] = ACTIONS(1498), + [anon_sym_not_DASHhas2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_like2] = ACTIONS(1498), + [anon_sym_not_DASHlike2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1498), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_DOT2] = ACTIONS(1496), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), [anon_sym_POUND] = ACTIONS(3), }, [STATE(703)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(703), - [anon_sym_in] = ACTIONS(2148), - [sym__newline] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_err_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_GT_PIPE] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_GT2] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_EQ_GT] = ACTIONS(2148), - [anon_sym_STAR2] = ACTIONS(2150), - [anon_sym_and2] = ACTIONS(2148), - [anon_sym_xor2] = ACTIONS(2148), - [anon_sym_or2] = ACTIONS(2148), - [anon_sym_not_DASHin2] = ACTIONS(2148), - [anon_sym_has2] = ACTIONS(2148), - [anon_sym_not_DASHhas2] = ACTIONS(2148), - [anon_sym_starts_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2148), - [anon_sym_ends_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2148), - [anon_sym_EQ_EQ2] = ACTIONS(2148), - [anon_sym_BANG_EQ2] = ACTIONS(2148), - [anon_sym_LT2] = ACTIONS(2150), - [anon_sym_LT_EQ2] = ACTIONS(2148), - [anon_sym_GT_EQ2] = ACTIONS(2148), - [anon_sym_EQ_TILDE2] = ACTIONS(2148), - [anon_sym_BANG_TILDE2] = ACTIONS(2148), - [anon_sym_like2] = ACTIONS(2148), - [anon_sym_not_DASHlike2] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2148), - [anon_sym_PLUS_PLUS2] = ACTIONS(2148), - [anon_sym_SLASH2] = ACTIONS(2150), - [anon_sym_mod2] = ACTIONS(2148), - [anon_sym_SLASH_SLASH2] = ACTIONS(2148), - [anon_sym_PLUS2] = ACTIONS(2150), - [anon_sym_bit_DASHshl2] = ACTIONS(2148), - [anon_sym_bit_DASHshr2] = ACTIONS(2148), - [anon_sym_bit_DASHand2] = ACTIONS(2148), - [anon_sym_bit_DASHxor2] = ACTIONS(2148), - [anon_sym_bit_DASHor2] = ACTIONS(2148), - [anon_sym_err_GT] = ACTIONS(2150), - [anon_sym_out_GT] = ACTIONS(2150), - [anon_sym_e_GT] = ACTIONS(2150), - [anon_sym_o_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT] = ACTIONS(2150), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2162), + [sym__newline] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_err_GT_PIPE] = ACTIONS(2162), + [anon_sym_out_GT_PIPE] = ACTIONS(2162), + [anon_sym_e_GT_PIPE] = ACTIONS(2162), + [anon_sym_o_GT_PIPE] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2162), + [anon_sym_RPAREN] = ACTIONS(2162), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_STAR2] = ACTIONS(2164), + [anon_sym_and2] = ACTIONS(2162), + [anon_sym_xor2] = ACTIONS(2162), + [anon_sym_or2] = ACTIONS(2162), + [anon_sym_not_DASHin2] = ACTIONS(2162), + [anon_sym_has2] = ACTIONS(2162), + [anon_sym_not_DASHhas2] = ACTIONS(2162), + [anon_sym_starts_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), + [anon_sym_ends_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), + [anon_sym_EQ_EQ2] = ACTIONS(2162), + [anon_sym_BANG_EQ2] = ACTIONS(2162), + [anon_sym_LT2] = ACTIONS(2164), + [anon_sym_LT_EQ2] = ACTIONS(2162), + [anon_sym_GT_EQ2] = ACTIONS(2162), + [anon_sym_EQ_TILDE2] = ACTIONS(2162), + [anon_sym_BANG_TILDE2] = ACTIONS(2162), + [anon_sym_like2] = ACTIONS(2162), + [anon_sym_not_DASHlike2] = ACTIONS(2162), + [anon_sym_STAR_STAR2] = ACTIONS(2162), + [anon_sym_PLUS_PLUS2] = ACTIONS(2162), + [anon_sym_SLASH2] = ACTIONS(2164), + [anon_sym_mod2] = ACTIONS(2162), + [anon_sym_SLASH_SLASH2] = ACTIONS(2162), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_bit_DASHshl2] = ACTIONS(2162), + [anon_sym_bit_DASHshr2] = ACTIONS(2162), + [anon_sym_bit_DASHand2] = ACTIONS(2162), + [anon_sym_bit_DASHxor2] = ACTIONS(2162), + [anon_sym_bit_DASHor2] = ACTIONS(2162), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(2164), + [anon_sym_out_GT] = ACTIONS(2164), + [anon_sym_e_GT] = ACTIONS(2164), + [anon_sym_o_GT] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT] = ACTIONS(2164), + [anon_sym_err_GT_GT] = ACTIONS(2162), + [anon_sym_out_GT_GT] = ACTIONS(2162), + [anon_sym_e_GT_GT] = ACTIONS(2162), + [anon_sym_o_GT_GT] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2162), [anon_sym_POUND] = ACTIONS(3), }, [STATE(704)] = { [sym_comment] = STATE(704), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(2156), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2158), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2158), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(2162), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2164), + [anon_sym_and2] = ACTIONS(2162), + [anon_sym_xor2] = ACTIONS(2162), + [anon_sym_or2] = ACTIONS(2162), + [anon_sym_not_DASHin2] = ACTIONS(2162), + [anon_sym_has2] = ACTIONS(2162), + [anon_sym_not_DASHhas2] = ACTIONS(2162), + [anon_sym_starts_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), + [anon_sym_ends_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), + [anon_sym_EQ_EQ2] = ACTIONS(2162), + [anon_sym_BANG_EQ2] = ACTIONS(2162), + [anon_sym_LT2] = ACTIONS(2164), + [anon_sym_LT_EQ2] = ACTIONS(2162), + [anon_sym_GT_EQ2] = ACTIONS(2162), + [anon_sym_EQ_TILDE2] = ACTIONS(2162), + [anon_sym_BANG_TILDE2] = ACTIONS(2162), + [anon_sym_like2] = ACTIONS(2162), + [anon_sym_not_DASHlike2] = ACTIONS(2162), + [anon_sym_STAR_STAR2] = ACTIONS(2162), + [anon_sym_PLUS_PLUS2] = ACTIONS(2162), + [anon_sym_SLASH2] = ACTIONS(2164), + [anon_sym_mod2] = ACTIONS(2162), + [anon_sym_SLASH_SLASH2] = ACTIONS(2162), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_bit_DASHshl2] = ACTIONS(2162), + [anon_sym_bit_DASHshr2] = ACTIONS(2162), + [anon_sym_bit_DASHand2] = ACTIONS(2162), + [anon_sym_bit_DASHxor2] = ACTIONS(2162), + [anon_sym_bit_DASHor2] = ACTIONS(2162), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(2168), + [anon_sym_out_GT] = ACTIONS(2168), + [anon_sym_e_GT] = ACTIONS(2168), + [anon_sym_o_GT] = ACTIONS(2168), + [anon_sym_err_PLUSout_GT] = ACTIONS(2168), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), + [anon_sym_o_PLUSe_GT] = ACTIONS(2168), + [anon_sym_e_PLUSo_GT] = ACTIONS(2168), + [anon_sym_err_GT_GT] = ACTIONS(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), [anon_sym_POUND] = ACTIONS(3), }, [STATE(705)] = { + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(705), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2160), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2162), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2162), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(706)] = { + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(2164), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(707)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(707), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(708)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(708), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(709)] = { - [sym_comment] = STATE(709), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2166), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2168), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2168), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(710)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), - [sym_comment] = STATE(710), + [anon_sym_if] = ACTIONS(2170), [anon_sym_in] = ACTIONS(2170), [sym__newline] = ACTIONS(2170), [anon_sym_SEMI] = ACTIONS(2170), @@ -101296,7 +101745,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2170), [anon_sym_like2] = ACTIONS(2170), [anon_sym_not_DASHlike2] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(1752), [anon_sym_STAR_STAR2] = ACTIONS(2170), [anon_sym_PLUS_PLUS2] = ACTIONS(2170), [anon_sym_SLASH2] = ACTIONS(2172), @@ -101308,6 +101756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2170), [anon_sym_bit_DASHxor2] = ACTIONS(2170), [anon_sym_bit_DASHor2] = ACTIONS(2170), + [anon_sym_COLON2] = ACTIONS(2170), [anon_sym_err_GT] = ACTIONS(2172), [anon_sym_out_GT] = ACTIONS(2172), [anon_sym_e_GT] = ACTIONS(2172), @@ -101326,533 +101775,1247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2170), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(708)] = { + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(708), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(709)] = { + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(709), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(710)] = { + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(710), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(711)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(711), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(712)] = { [sym_comment] = STATE(712), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [ts_builtin_sym_end] = ACTIONS(1564), + [anon_sym_in] = ACTIONS(1564), + [sym__newline] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_err_GT_PIPE] = ACTIONS(1564), + [anon_sym_out_GT_PIPE] = ACTIONS(1564), + [anon_sym_e_GT_PIPE] = ACTIONS(1564), + [anon_sym_o_GT_PIPE] = ACTIONS(1564), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1564), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1564), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1564), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1564), + [anon_sym_COLON] = ACTIONS(1564), + [anon_sym_GT2] = ACTIONS(1562), + [anon_sym_DASH2] = ACTIONS(1564), + [anon_sym_STAR2] = ACTIONS(1562), + [anon_sym_and2] = ACTIONS(1564), + [anon_sym_xor2] = ACTIONS(1564), + [anon_sym_or2] = ACTIONS(1564), + [anon_sym_not_DASHin2] = ACTIONS(1564), + [anon_sym_has2] = ACTIONS(1564), + [anon_sym_not_DASHhas2] = ACTIONS(1564), + [anon_sym_starts_DASHwith2] = ACTIONS(1564), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1564), + [anon_sym_ends_DASHwith2] = ACTIONS(1564), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1564), + [anon_sym_EQ_EQ2] = ACTIONS(1564), + [anon_sym_BANG_EQ2] = ACTIONS(1564), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ2] = ACTIONS(1564), + [anon_sym_GT_EQ2] = ACTIONS(1564), + [anon_sym_EQ_TILDE2] = ACTIONS(1564), + [anon_sym_BANG_TILDE2] = ACTIONS(1564), + [anon_sym_like2] = ACTIONS(1564), + [anon_sym_not_DASHlike2] = ACTIONS(1564), + [anon_sym_STAR_STAR2] = ACTIONS(1564), + [anon_sym_PLUS_PLUS2] = ACTIONS(1564), + [anon_sym_SLASH2] = ACTIONS(1562), + [anon_sym_mod2] = ACTIONS(1564), + [anon_sym_SLASH_SLASH2] = ACTIONS(1564), + [anon_sym_PLUS2] = ACTIONS(1562), + [anon_sym_bit_DASHshl2] = ACTIONS(1564), + [anon_sym_bit_DASHshr2] = ACTIONS(1564), + [anon_sym_bit_DASHand2] = ACTIONS(1564), + [anon_sym_bit_DASHxor2] = ACTIONS(1564), + [anon_sym_bit_DASHor2] = ACTIONS(1564), + [anon_sym_DOT_DOT2] = ACTIONS(1562), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1564), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1564), + [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_err_GT] = ACTIONS(1562), + [anon_sym_out_GT] = ACTIONS(1562), + [anon_sym_e_GT] = ACTIONS(1562), + [anon_sym_o_GT] = ACTIONS(1562), + [anon_sym_err_PLUSout_GT] = ACTIONS(1562), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1562), + [anon_sym_o_PLUSe_GT] = ACTIONS(1562), + [anon_sym_e_PLUSo_GT] = ACTIONS(1562), + [anon_sym_err_GT_GT] = ACTIONS(1564), + [anon_sym_out_GT_GT] = ACTIONS(1564), + [anon_sym_e_GT_GT] = ACTIONS(1564), + [anon_sym_o_GT_GT] = ACTIONS(1564), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1564), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1564), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1564), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1564), [anon_sym_POUND] = ACTIONS(3), }, [STATE(713)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1276), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1016), - [sym__unquoted_with_expr] = STATE(1301), - [sym__unquoted_anonymous_prefix] = STATE(4499), [sym_comment] = STATE(713), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_RPAREN] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1713), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(714)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(714), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(715)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2187), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(715), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_in] = ACTIONS(2174), + [sym__newline] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_err_GT_PIPE] = ACTIONS(2174), + [anon_sym_out_GT_PIPE] = ACTIONS(2174), + [anon_sym_e_GT_PIPE] = ACTIONS(2174), + [anon_sym_o_GT_PIPE] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2174), + [anon_sym_RPAREN] = ACTIONS(2174), + [anon_sym_GT2] = ACTIONS(2176), + [anon_sym_DASH2] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_EQ_GT] = ACTIONS(2174), + [anon_sym_STAR2] = ACTIONS(2176), + [anon_sym_and2] = ACTIONS(2174), + [anon_sym_xor2] = ACTIONS(2174), + [anon_sym_or2] = ACTIONS(2174), + [anon_sym_not_DASHin2] = ACTIONS(2174), + [anon_sym_has2] = ACTIONS(2174), + [anon_sym_not_DASHhas2] = ACTIONS(2174), + [anon_sym_starts_DASHwith2] = ACTIONS(2174), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2174), + [anon_sym_ends_DASHwith2] = ACTIONS(2174), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2174), + [anon_sym_EQ_EQ2] = ACTIONS(2174), + [anon_sym_BANG_EQ2] = ACTIONS(2174), + [anon_sym_LT2] = ACTIONS(2176), + [anon_sym_LT_EQ2] = ACTIONS(2174), + [anon_sym_GT_EQ2] = ACTIONS(2174), + [anon_sym_EQ_TILDE2] = ACTIONS(2174), + [anon_sym_BANG_TILDE2] = ACTIONS(2174), + [anon_sym_like2] = ACTIONS(2174), + [anon_sym_not_DASHlike2] = ACTIONS(2174), + [anon_sym_LPAREN2] = ACTIONS(2174), + [anon_sym_STAR_STAR2] = ACTIONS(2174), + [anon_sym_PLUS_PLUS2] = ACTIONS(2174), + [anon_sym_SLASH2] = ACTIONS(2176), + [anon_sym_mod2] = ACTIONS(2174), + [anon_sym_SLASH_SLASH2] = ACTIONS(2174), + [anon_sym_PLUS2] = ACTIONS(2176), + [anon_sym_bit_DASHshl2] = ACTIONS(2174), + [anon_sym_bit_DASHshr2] = ACTIONS(2174), + [anon_sym_bit_DASHand2] = ACTIONS(2174), + [anon_sym_bit_DASHxor2] = ACTIONS(2174), + [anon_sym_bit_DASHor2] = ACTIONS(2174), + [anon_sym_err_GT] = ACTIONS(2176), + [anon_sym_out_GT] = ACTIONS(2176), + [anon_sym_e_GT] = ACTIONS(2176), + [anon_sym_o_GT] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT] = ACTIONS(2176), + [anon_sym_err_GT_GT] = ACTIONS(2174), + [anon_sym_out_GT_GT] = ACTIONS(2174), + [anon_sym_e_GT_GT] = ACTIONS(2174), + [anon_sym_o_GT_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2174), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(716)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2188), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(716), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1852), + [anon_sym_in] = ACTIONS(1852), + [sym__newline] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_err_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_GT_PIPE] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), + [anon_sym_GT2] = ACTIONS(1854), + [anon_sym_DASH2] = ACTIONS(1852), + [anon_sym_STAR2] = ACTIONS(1854), + [anon_sym_and2] = ACTIONS(1852), + [anon_sym_xor2] = ACTIONS(1852), + [anon_sym_or2] = ACTIONS(1852), + [anon_sym_not_DASHin2] = ACTIONS(1852), + [anon_sym_has2] = ACTIONS(1852), + [anon_sym_not_DASHhas2] = ACTIONS(1852), + [anon_sym_starts_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), + [anon_sym_ends_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), + [anon_sym_EQ_EQ2] = ACTIONS(1852), + [anon_sym_BANG_EQ2] = ACTIONS(1852), + [anon_sym_LT2] = ACTIONS(1854), + [anon_sym_LT_EQ2] = ACTIONS(1852), + [anon_sym_GT_EQ2] = ACTIONS(1852), + [anon_sym_EQ_TILDE2] = ACTIONS(1852), + [anon_sym_BANG_TILDE2] = ACTIONS(1852), + [anon_sym_like2] = ACTIONS(1852), + [anon_sym_not_DASHlike2] = ACTIONS(1852), + [anon_sym_LPAREN2] = ACTIONS(1852), + [anon_sym_STAR_STAR2] = ACTIONS(1852), + [anon_sym_PLUS_PLUS2] = ACTIONS(1852), + [anon_sym_SLASH2] = ACTIONS(1854), + [anon_sym_mod2] = ACTIONS(1852), + [anon_sym_SLASH_SLASH2] = ACTIONS(1852), + [anon_sym_PLUS2] = ACTIONS(1854), + [anon_sym_bit_DASHshl2] = ACTIONS(1852), + [anon_sym_bit_DASHshr2] = ACTIONS(1852), + [anon_sym_bit_DASHand2] = ACTIONS(1852), + [anon_sym_bit_DASHxor2] = ACTIONS(1852), + [anon_sym_bit_DASHor2] = ACTIONS(1852), + [anon_sym_DOT_DOT2] = ACTIONS(1854), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1852), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1852), + [anon_sym_err_GT] = ACTIONS(1854), + [anon_sym_out_GT] = ACTIONS(1854), + [anon_sym_e_GT] = ACTIONS(1854), + [anon_sym_o_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT] = ACTIONS(1854), + [anon_sym_err_GT_GT] = ACTIONS(1852), + [anon_sym_out_GT_GT] = ACTIONS(1852), + [anon_sym_e_GT_GT] = ACTIONS(1852), + [anon_sym_o_GT_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), + [sym__unquoted_pattern] = ACTIONS(1854), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(717)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2189), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__expr_parenthesized_immediate] = STATE(5171), [sym_comment] = STATE(717), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_in] = ACTIONS(2178), + [sym__newline] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_err_GT_PIPE] = ACTIONS(2178), + [anon_sym_out_GT_PIPE] = ACTIONS(2178), + [anon_sym_e_GT_PIPE] = ACTIONS(2178), + [anon_sym_o_GT_PIPE] = ACTIONS(2178), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2178), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2178), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2178), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2178), + [anon_sym_GT2] = ACTIONS(2180), + [anon_sym_DASH2] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_EQ_GT] = ACTIONS(2178), + [anon_sym_STAR2] = ACTIONS(2180), + [anon_sym_and2] = ACTIONS(2178), + [anon_sym_xor2] = ACTIONS(2178), + [anon_sym_or2] = ACTIONS(2178), + [anon_sym_not_DASHin2] = ACTIONS(2178), + [anon_sym_has2] = ACTIONS(2178), + [anon_sym_not_DASHhas2] = ACTIONS(2178), + [anon_sym_starts_DASHwith2] = ACTIONS(2178), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2178), + [anon_sym_ends_DASHwith2] = ACTIONS(2178), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2178), + [anon_sym_EQ_EQ2] = ACTIONS(2178), + [anon_sym_BANG_EQ2] = ACTIONS(2178), + [anon_sym_LT2] = ACTIONS(2180), + [anon_sym_LT_EQ2] = ACTIONS(2178), + [anon_sym_GT_EQ2] = ACTIONS(2178), + [anon_sym_EQ_TILDE2] = ACTIONS(2178), + [anon_sym_BANG_TILDE2] = ACTIONS(2178), + [anon_sym_like2] = ACTIONS(2178), + [anon_sym_not_DASHlike2] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2178), + [anon_sym_PLUS_PLUS2] = ACTIONS(2178), + [anon_sym_SLASH2] = ACTIONS(2180), + [anon_sym_mod2] = ACTIONS(2178), + [anon_sym_SLASH_SLASH2] = ACTIONS(2178), + [anon_sym_PLUS2] = ACTIONS(2180), + [anon_sym_bit_DASHshl2] = ACTIONS(2178), + [anon_sym_bit_DASHshr2] = ACTIONS(2178), + [anon_sym_bit_DASHand2] = ACTIONS(2178), + [anon_sym_bit_DASHxor2] = ACTIONS(2178), + [anon_sym_bit_DASHor2] = ACTIONS(2178), + [anon_sym_err_GT] = ACTIONS(2180), + [anon_sym_out_GT] = ACTIONS(2180), + [anon_sym_e_GT] = ACTIONS(2180), + [anon_sym_o_GT] = ACTIONS(2180), + [anon_sym_err_PLUSout_GT] = ACTIONS(2180), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2180), + [anon_sym_o_PLUSe_GT] = ACTIONS(2180), + [anon_sym_e_PLUSo_GT] = ACTIONS(2180), + [anon_sym_err_GT_GT] = ACTIONS(2178), + [anon_sym_out_GT_GT] = ACTIONS(2178), + [anon_sym_e_GT_GT] = ACTIONS(2178), + [anon_sym_o_GT_GT] = ACTIONS(2178), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2178), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2178), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2178), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2178), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(718)] = { + [sym_comment] = STATE(718), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1770), + [anon_sym_STAR2] = ACTIONS(1772), + [anon_sym_and2] = ACTIONS(1770), + [anon_sym_xor2] = ACTIONS(1770), + [anon_sym_or2] = ACTIONS(1770), + [anon_sym_not_DASHin2] = ACTIONS(1770), + [anon_sym_has2] = ACTIONS(1770), + [anon_sym_not_DASHhas2] = ACTIONS(1770), + [anon_sym_starts_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), + [anon_sym_ends_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), + [anon_sym_EQ_EQ2] = ACTIONS(1770), + [anon_sym_BANG_EQ2] = ACTIONS(1770), + [anon_sym_LT2] = ACTIONS(1772), + [anon_sym_LT_EQ2] = ACTIONS(1770), + [anon_sym_GT_EQ2] = ACTIONS(1770), + [anon_sym_EQ_TILDE2] = ACTIONS(1770), + [anon_sym_BANG_TILDE2] = ACTIONS(1770), + [anon_sym_like2] = ACTIONS(1770), + [anon_sym_not_DASHlike2] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_STAR_STAR2] = ACTIONS(1770), + [anon_sym_PLUS_PLUS2] = ACTIONS(1770), + [anon_sym_SLASH2] = ACTIONS(1772), + [anon_sym_mod2] = ACTIONS(1770), + [anon_sym_SLASH_SLASH2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_bit_DASHshl2] = ACTIONS(1770), + [anon_sym_bit_DASHshr2] = ACTIONS(1770), + [anon_sym_bit_DASHand2] = ACTIONS(1770), + [anon_sym_bit_DASHxor2] = ACTIONS(1770), + [anon_sym_bit_DASHor2] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1772), + [anon_sym_out_GT] = ACTIONS(1772), + [anon_sym_e_GT] = ACTIONS(1772), + [anon_sym_o_GT] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT] = ACTIONS(1772), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [sym__unquoted_pattern] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(719)] = { + [sym_comment] = STATE(719), + [ts_builtin_sym_end] = ACTIONS(1450), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1448), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1448), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(720)] = { + [sym_comment] = STATE(720), + [ts_builtin_sym_end] = ACTIONS(1549), + [anon_sym_in] = ACTIONS(1549), + [sym__newline] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_err_GT_PIPE] = ACTIONS(1549), + [anon_sym_out_GT_PIPE] = ACTIONS(1549), + [anon_sym_e_GT_PIPE] = ACTIONS(1549), + [anon_sym_o_GT_PIPE] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_GT2] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1549), + [anon_sym_STAR2] = ACTIONS(1547), + [anon_sym_and2] = ACTIONS(1549), + [anon_sym_xor2] = ACTIONS(1549), + [anon_sym_or2] = ACTIONS(1549), + [anon_sym_not_DASHin2] = ACTIONS(1549), + [anon_sym_has2] = ACTIONS(1549), + [anon_sym_not_DASHhas2] = ACTIONS(1549), + [anon_sym_starts_DASHwith2] = ACTIONS(1549), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1549), + [anon_sym_ends_DASHwith2] = ACTIONS(1549), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1549), + [anon_sym_EQ_EQ2] = ACTIONS(1549), + [anon_sym_BANG_EQ2] = ACTIONS(1549), + [anon_sym_LT2] = ACTIONS(1547), + [anon_sym_LT_EQ2] = ACTIONS(1549), + [anon_sym_GT_EQ2] = ACTIONS(1549), + [anon_sym_EQ_TILDE2] = ACTIONS(1549), + [anon_sym_BANG_TILDE2] = ACTIONS(1549), + [anon_sym_like2] = ACTIONS(1549), + [anon_sym_not_DASHlike2] = ACTIONS(1549), + [anon_sym_STAR_STAR2] = ACTIONS(1549), + [anon_sym_PLUS_PLUS2] = ACTIONS(1549), + [anon_sym_SLASH2] = ACTIONS(1547), + [anon_sym_mod2] = ACTIONS(1549), + [anon_sym_SLASH_SLASH2] = ACTIONS(1549), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_bit_DASHshl2] = ACTIONS(1549), + [anon_sym_bit_DASHshr2] = ACTIONS(1549), + [anon_sym_bit_DASHand2] = ACTIONS(1549), + [anon_sym_bit_DASHxor2] = ACTIONS(1549), + [anon_sym_bit_DASHor2] = ACTIONS(1549), + [anon_sym_DOT_DOT2] = ACTIONS(1547), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), + [anon_sym_DOT2] = ACTIONS(1547), + [anon_sym_err_GT] = ACTIONS(1547), + [anon_sym_out_GT] = ACTIONS(1547), + [anon_sym_e_GT] = ACTIONS(1547), + [anon_sym_o_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT] = ACTIONS(1547), + [anon_sym_err_GT_GT] = ACTIONS(1549), + [anon_sym_out_GT_GT] = ACTIONS(1549), + [anon_sym_e_GT_GT] = ACTIONS(1549), + [anon_sym_o_GT_GT] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(721)] = { + [sym__expr_parenthesized_immediate] = STATE(5171), + [sym_comment] = STATE(721), + [anon_sym_in] = ACTIONS(2184), + [sym__newline] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_PIPE] = ACTIONS(2184), + [anon_sym_err_GT_PIPE] = ACTIONS(2184), + [anon_sym_out_GT_PIPE] = ACTIONS(2184), + [anon_sym_e_GT_PIPE] = ACTIONS(2184), + [anon_sym_o_GT_PIPE] = ACTIONS(2184), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2184), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2184), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2184), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2184), + [anon_sym_RPAREN] = ACTIONS(2184), + [anon_sym_GT2] = ACTIONS(2186), + [anon_sym_DASH2] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_EQ_GT] = ACTIONS(2184), + [anon_sym_STAR2] = ACTIONS(2186), + [anon_sym_and2] = ACTIONS(2184), + [anon_sym_xor2] = ACTIONS(2184), + [anon_sym_or2] = ACTIONS(2184), + [anon_sym_not_DASHin2] = ACTIONS(2184), + [anon_sym_has2] = ACTIONS(2184), + [anon_sym_not_DASHhas2] = ACTIONS(2184), + [anon_sym_starts_DASHwith2] = ACTIONS(2184), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2184), + [anon_sym_ends_DASHwith2] = ACTIONS(2184), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2184), + [anon_sym_EQ_EQ2] = ACTIONS(2184), + [anon_sym_BANG_EQ2] = ACTIONS(2184), + [anon_sym_LT2] = ACTIONS(2186), + [anon_sym_LT_EQ2] = ACTIONS(2184), + [anon_sym_GT_EQ2] = ACTIONS(2184), + [anon_sym_EQ_TILDE2] = ACTIONS(2184), + [anon_sym_BANG_TILDE2] = ACTIONS(2184), + [anon_sym_like2] = ACTIONS(2184), + [anon_sym_not_DASHlike2] = ACTIONS(2184), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2184), + [anon_sym_PLUS_PLUS2] = ACTIONS(2184), + [anon_sym_SLASH2] = ACTIONS(2186), + [anon_sym_mod2] = ACTIONS(2184), + [anon_sym_SLASH_SLASH2] = ACTIONS(2184), + [anon_sym_PLUS2] = ACTIONS(2186), + [anon_sym_bit_DASHshl2] = ACTIONS(2184), + [anon_sym_bit_DASHshr2] = ACTIONS(2184), + [anon_sym_bit_DASHand2] = ACTIONS(2184), + [anon_sym_bit_DASHxor2] = ACTIONS(2184), + [anon_sym_bit_DASHor2] = ACTIONS(2184), + [anon_sym_err_GT] = ACTIONS(2186), + [anon_sym_out_GT] = ACTIONS(2186), + [anon_sym_e_GT] = ACTIONS(2186), + [anon_sym_o_GT] = ACTIONS(2186), + [anon_sym_err_PLUSout_GT] = ACTIONS(2186), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2186), + [anon_sym_o_PLUSe_GT] = ACTIONS(2186), + [anon_sym_e_PLUSo_GT] = ACTIONS(2186), + [anon_sym_err_GT_GT] = ACTIONS(2184), + [anon_sym_out_GT_GT] = ACTIONS(2184), + [anon_sym_e_GT_GT] = ACTIONS(2184), + [anon_sym_o_GT_GT] = ACTIONS(2184), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2184), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2184), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2184), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2184), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(722)] = { + [sym__expr_parenthesized_immediate] = STATE(5171), + [sym_comment] = STATE(722), + [anon_sym_in] = ACTIONS(2188), + [sym__newline] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_PIPE] = ACTIONS(2188), + [anon_sym_err_GT_PIPE] = ACTIONS(2188), + [anon_sym_out_GT_PIPE] = ACTIONS(2188), + [anon_sym_e_GT_PIPE] = ACTIONS(2188), + [anon_sym_o_GT_PIPE] = ACTIONS(2188), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2188), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2188), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2188), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2188), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_GT2] = ACTIONS(2190), + [anon_sym_DASH2] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_EQ_GT] = ACTIONS(2188), + [anon_sym_STAR2] = ACTIONS(2190), + [anon_sym_and2] = ACTIONS(2188), + [anon_sym_xor2] = ACTIONS(2188), + [anon_sym_or2] = ACTIONS(2188), + [anon_sym_not_DASHin2] = ACTIONS(2188), + [anon_sym_has2] = ACTIONS(2188), + [anon_sym_not_DASHhas2] = ACTIONS(2188), + [anon_sym_starts_DASHwith2] = ACTIONS(2188), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2188), + [anon_sym_ends_DASHwith2] = ACTIONS(2188), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2188), + [anon_sym_EQ_EQ2] = ACTIONS(2188), + [anon_sym_BANG_EQ2] = ACTIONS(2188), + [anon_sym_LT2] = ACTIONS(2190), + [anon_sym_LT_EQ2] = ACTIONS(2188), + [anon_sym_GT_EQ2] = ACTIONS(2188), + [anon_sym_EQ_TILDE2] = ACTIONS(2188), + [anon_sym_BANG_TILDE2] = ACTIONS(2188), + [anon_sym_like2] = ACTIONS(2188), + [anon_sym_not_DASHlike2] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2188), + [anon_sym_PLUS_PLUS2] = ACTIONS(2188), + [anon_sym_SLASH2] = ACTIONS(2190), + [anon_sym_mod2] = ACTIONS(2188), + [anon_sym_SLASH_SLASH2] = ACTIONS(2188), + [anon_sym_PLUS2] = ACTIONS(2190), + [anon_sym_bit_DASHshl2] = ACTIONS(2188), + [anon_sym_bit_DASHshr2] = ACTIONS(2188), + [anon_sym_bit_DASHand2] = ACTIONS(2188), + [anon_sym_bit_DASHxor2] = ACTIONS(2188), + [anon_sym_bit_DASHor2] = ACTIONS(2188), + [anon_sym_err_GT] = ACTIONS(2190), + [anon_sym_out_GT] = ACTIONS(2190), + [anon_sym_e_GT] = ACTIONS(2190), + [anon_sym_o_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT] = ACTIONS(2190), + [anon_sym_err_GT_GT] = ACTIONS(2188), + [anon_sym_out_GT_GT] = ACTIONS(2188), + [anon_sym_e_GT_GT] = ACTIONS(2188), + [anon_sym_o_GT_GT] = ACTIONS(2188), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2188), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2188), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2188), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(723)] = { + [sym_comment] = STATE(723), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [anon_sym_DOT_DOT2] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(724)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1156), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(684), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(724), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(718)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2190), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(718), + [STATE(725)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2227), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(685), + [sym__unquoted_with_expr] = STATE(927), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(725), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -101861,4798 +103024,4378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(719)] = { - [sym_comment] = STATE(719), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_in] = ACTIONS(2194), - [sym__newline] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_err_GT_PIPE] = ACTIONS(2194), - [anon_sym_out_GT_PIPE] = ACTIONS(2194), - [anon_sym_e_GT_PIPE] = ACTIONS(2194), - [anon_sym_o_GT_PIPE] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), - [anon_sym_RPAREN] = ACTIONS(2194), - [anon_sym_GT2] = ACTIONS(2196), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_EQ_GT] = ACTIONS(2194), - [anon_sym_STAR2] = ACTIONS(2196), - [anon_sym_and2] = ACTIONS(2194), - [anon_sym_xor2] = ACTIONS(2194), - [anon_sym_or2] = ACTIONS(2194), - [anon_sym_not_DASHin2] = ACTIONS(2194), - [anon_sym_has2] = ACTIONS(2194), - [anon_sym_not_DASHhas2] = ACTIONS(2194), - [anon_sym_starts_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), - [anon_sym_ends_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), - [anon_sym_EQ_EQ2] = ACTIONS(2194), - [anon_sym_BANG_EQ2] = ACTIONS(2194), - [anon_sym_LT2] = ACTIONS(2196), - [anon_sym_LT_EQ2] = ACTIONS(2194), - [anon_sym_GT_EQ2] = ACTIONS(2194), - [anon_sym_EQ_TILDE2] = ACTIONS(2194), - [anon_sym_BANG_TILDE2] = ACTIONS(2194), - [anon_sym_like2] = ACTIONS(2194), - [anon_sym_not_DASHlike2] = ACTIONS(2194), - [anon_sym_STAR_STAR2] = ACTIONS(2194), - [anon_sym_PLUS_PLUS2] = ACTIONS(2194), - [anon_sym_SLASH2] = ACTIONS(2196), - [anon_sym_mod2] = ACTIONS(2194), - [anon_sym_SLASH_SLASH2] = ACTIONS(2194), - [anon_sym_PLUS2] = ACTIONS(2196), - [anon_sym_bit_DASHshl2] = ACTIONS(2194), - [anon_sym_bit_DASHshr2] = ACTIONS(2194), - [anon_sym_bit_DASHand2] = ACTIONS(2194), - [anon_sym_bit_DASHxor2] = ACTIONS(2194), - [anon_sym_bit_DASHor2] = ACTIONS(2194), - [anon_sym_err_GT] = ACTIONS(2196), - [anon_sym_out_GT] = ACTIONS(2196), - [anon_sym_e_GT] = ACTIONS(2196), - [anon_sym_o_GT] = ACTIONS(2196), - [anon_sym_err_PLUSout_GT] = ACTIONS(2196), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), - [anon_sym_o_PLUSe_GT] = ACTIONS(2196), - [anon_sym_e_PLUSo_GT] = ACTIONS(2196), - [anon_sym_err_GT_GT] = ACTIONS(2194), - [anon_sym_out_GT_GT] = ACTIONS(2194), - [anon_sym_e_GT_GT] = ACTIONS(2194), - [anon_sym_o_GT_GT] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [STATE(726)] = { + [sym_comment] = STATE(726), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_in] = ACTIONS(2196), + [sym__newline] = ACTIONS(2196), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_err_GT_PIPE] = ACTIONS(2196), + [anon_sym_out_GT_PIPE] = ACTIONS(2196), + [anon_sym_e_GT_PIPE] = ACTIONS(2196), + [anon_sym_o_GT_PIPE] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_GT2] = ACTIONS(2198), + [anon_sym_DASH2] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_EQ_GT] = ACTIONS(2196), + [anon_sym_STAR2] = ACTIONS(2198), + [anon_sym_and2] = ACTIONS(2196), + [anon_sym_xor2] = ACTIONS(2196), + [anon_sym_or2] = ACTIONS(2196), + [anon_sym_not_DASHin2] = ACTIONS(2196), + [anon_sym_has2] = ACTIONS(2196), + [anon_sym_not_DASHhas2] = ACTIONS(2196), + [anon_sym_starts_DASHwith2] = ACTIONS(2196), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2196), + [anon_sym_ends_DASHwith2] = ACTIONS(2196), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2196), + [anon_sym_EQ_EQ2] = ACTIONS(2196), + [anon_sym_BANG_EQ2] = ACTIONS(2196), + [anon_sym_LT2] = ACTIONS(2198), + [anon_sym_LT_EQ2] = ACTIONS(2196), + [anon_sym_GT_EQ2] = ACTIONS(2196), + [anon_sym_EQ_TILDE2] = ACTIONS(2196), + [anon_sym_BANG_TILDE2] = ACTIONS(2196), + [anon_sym_like2] = ACTIONS(2196), + [anon_sym_not_DASHlike2] = ACTIONS(2196), + [anon_sym_STAR_STAR2] = ACTIONS(2196), + [anon_sym_PLUS_PLUS2] = ACTIONS(2196), + [anon_sym_SLASH2] = ACTIONS(2198), + [anon_sym_mod2] = ACTIONS(2196), + [anon_sym_SLASH_SLASH2] = ACTIONS(2196), + [anon_sym_PLUS2] = ACTIONS(2198), + [anon_sym_bit_DASHshl2] = ACTIONS(2196), + [anon_sym_bit_DASHshr2] = ACTIONS(2196), + [anon_sym_bit_DASHand2] = ACTIONS(2196), + [anon_sym_bit_DASHxor2] = ACTIONS(2196), + [anon_sym_bit_DASHor2] = ACTIONS(2196), + [anon_sym_err_GT] = ACTIONS(2198), + [anon_sym_out_GT] = ACTIONS(2198), + [anon_sym_e_GT] = ACTIONS(2198), + [anon_sym_o_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT] = ACTIONS(2198), + [anon_sym_err_GT_GT] = ACTIONS(2196), + [anon_sym_out_GT_GT] = ACTIONS(2196), + [anon_sym_e_GT_GT] = ACTIONS(2196), + [anon_sym_o_GT_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2196), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(720)] = { - [sym_comment] = STATE(720), - [anon_sym_if] = ACTIONS(2198), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_EQ_GT] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [STATE(727)] = { + [sym_comment] = STATE(727), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_in] = ACTIONS(2200), + [sym__newline] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_err_GT_PIPE] = ACTIONS(2200), + [anon_sym_out_GT_PIPE] = ACTIONS(2200), + [anon_sym_e_GT_PIPE] = ACTIONS(2200), + [anon_sym_o_GT_PIPE] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2200), + [anon_sym_RPAREN] = ACTIONS(2200), + [anon_sym_GT2] = ACTIONS(2202), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_EQ_GT] = ACTIONS(2200), + [anon_sym_STAR2] = ACTIONS(2202), + [anon_sym_and2] = ACTIONS(2200), + [anon_sym_xor2] = ACTIONS(2200), + [anon_sym_or2] = ACTIONS(2200), + [anon_sym_not_DASHin2] = ACTIONS(2200), + [anon_sym_has2] = ACTIONS(2200), + [anon_sym_not_DASHhas2] = ACTIONS(2200), + [anon_sym_starts_DASHwith2] = ACTIONS(2200), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2200), + [anon_sym_ends_DASHwith2] = ACTIONS(2200), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2200), + [anon_sym_EQ_EQ2] = ACTIONS(2200), + [anon_sym_BANG_EQ2] = ACTIONS(2200), + [anon_sym_LT2] = ACTIONS(2202), + [anon_sym_LT_EQ2] = ACTIONS(2200), + [anon_sym_GT_EQ2] = ACTIONS(2200), + [anon_sym_EQ_TILDE2] = ACTIONS(2200), + [anon_sym_BANG_TILDE2] = ACTIONS(2200), + [anon_sym_like2] = ACTIONS(2200), + [anon_sym_not_DASHlike2] = ACTIONS(2200), + [anon_sym_STAR_STAR2] = ACTIONS(2200), + [anon_sym_PLUS_PLUS2] = ACTIONS(2200), + [anon_sym_SLASH2] = ACTIONS(2202), + [anon_sym_mod2] = ACTIONS(2200), + [anon_sym_SLASH_SLASH2] = ACTIONS(2200), + [anon_sym_PLUS2] = ACTIONS(2202), + [anon_sym_bit_DASHshl2] = ACTIONS(2200), + [anon_sym_bit_DASHshr2] = ACTIONS(2200), + [anon_sym_bit_DASHand2] = ACTIONS(2200), + [anon_sym_bit_DASHxor2] = ACTIONS(2200), + [anon_sym_bit_DASHor2] = ACTIONS(2200), + [anon_sym_err_GT] = ACTIONS(2202), + [anon_sym_out_GT] = ACTIONS(2202), + [anon_sym_e_GT] = ACTIONS(2202), + [anon_sym_o_GT] = ACTIONS(2202), + [anon_sym_err_PLUSout_GT] = ACTIONS(2202), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2202), + [anon_sym_o_PLUSe_GT] = ACTIONS(2202), + [anon_sym_e_PLUSo_GT] = ACTIONS(2202), + [anon_sym_err_GT_GT] = ACTIONS(2200), + [anon_sym_out_GT_GT] = ACTIONS(2200), + [anon_sym_e_GT_GT] = ACTIONS(2200), + [anon_sym_o_GT_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2200), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(721)] = { - [sym_comment] = STATE(721), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [STATE(728)] = { + [sym_comment] = STATE(728), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_in] = ACTIONS(2102), + [sym__newline] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_err_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_GT_PIPE] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2102), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_GT2] = ACTIONS(2104), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_EQ_GT] = ACTIONS(2102), + [anon_sym_STAR2] = ACTIONS(2104), + [anon_sym_and2] = ACTIONS(2102), + [anon_sym_xor2] = ACTIONS(2102), + [anon_sym_or2] = ACTIONS(2102), + [anon_sym_not_DASHin2] = ACTIONS(2102), + [anon_sym_has2] = ACTIONS(2102), + [anon_sym_not_DASHhas2] = ACTIONS(2102), + [anon_sym_starts_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2102), + [anon_sym_ends_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2102), + [anon_sym_EQ_EQ2] = ACTIONS(2102), + [anon_sym_BANG_EQ2] = ACTIONS(2102), + [anon_sym_LT2] = ACTIONS(2104), + [anon_sym_LT_EQ2] = ACTIONS(2102), + [anon_sym_GT_EQ2] = ACTIONS(2102), + [anon_sym_EQ_TILDE2] = ACTIONS(2102), + [anon_sym_BANG_TILDE2] = ACTIONS(2102), + [anon_sym_like2] = ACTIONS(2102), + [anon_sym_not_DASHlike2] = ACTIONS(2102), + [anon_sym_STAR_STAR2] = ACTIONS(2102), + [anon_sym_PLUS_PLUS2] = ACTIONS(2102), + [anon_sym_SLASH2] = ACTIONS(2104), + [anon_sym_mod2] = ACTIONS(2102), + [anon_sym_SLASH_SLASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_bit_DASHshl2] = ACTIONS(2102), + [anon_sym_bit_DASHshr2] = ACTIONS(2102), + [anon_sym_bit_DASHand2] = ACTIONS(2102), + [anon_sym_bit_DASHxor2] = ACTIONS(2102), + [anon_sym_bit_DASHor2] = ACTIONS(2102), + [anon_sym_err_GT] = ACTIONS(2104), + [anon_sym_out_GT] = ACTIONS(2104), + [anon_sym_e_GT] = ACTIONS(2104), + [anon_sym_o_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT] = ACTIONS(2104), + [anon_sym_err_GT_GT] = ACTIONS(2102), + [anon_sym_out_GT_GT] = ACTIONS(2102), + [anon_sym_e_GT_GT] = ACTIONS(2102), + [anon_sym_o_GT_GT] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2102), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(722)] = { - [sym_comment] = STATE(722), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_EQ_GT] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [STATE(729)] = { + [sym_comment] = STATE(729), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_in] = ACTIONS(2110), + [sym__newline] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_err_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_GT_PIPE] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), + [anon_sym_RPAREN] = ACTIONS(2110), + [anon_sym_GT2] = ACTIONS(2112), + [anon_sym_DASH2] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_EQ_GT] = ACTIONS(2110), + [anon_sym_STAR2] = ACTIONS(2112), + [anon_sym_and2] = ACTIONS(2110), + [anon_sym_xor2] = ACTIONS(2110), + [anon_sym_or2] = ACTIONS(2110), + [anon_sym_not_DASHin2] = ACTIONS(2110), + [anon_sym_has2] = ACTIONS(2110), + [anon_sym_not_DASHhas2] = ACTIONS(2110), + [anon_sym_starts_DASHwith2] = ACTIONS(2110), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2110), + [anon_sym_ends_DASHwith2] = ACTIONS(2110), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2110), + [anon_sym_EQ_EQ2] = ACTIONS(2110), + [anon_sym_BANG_EQ2] = ACTIONS(2110), + [anon_sym_LT2] = ACTIONS(2112), + [anon_sym_LT_EQ2] = ACTIONS(2110), + [anon_sym_GT_EQ2] = ACTIONS(2110), + [anon_sym_EQ_TILDE2] = ACTIONS(2110), + [anon_sym_BANG_TILDE2] = ACTIONS(2110), + [anon_sym_like2] = ACTIONS(2110), + [anon_sym_not_DASHlike2] = ACTIONS(2110), + [anon_sym_STAR_STAR2] = ACTIONS(2110), + [anon_sym_PLUS_PLUS2] = ACTIONS(2110), + [anon_sym_SLASH2] = ACTIONS(2112), + [anon_sym_mod2] = ACTIONS(2110), + [anon_sym_SLASH_SLASH2] = ACTIONS(2110), + [anon_sym_PLUS2] = ACTIONS(2112), + [anon_sym_bit_DASHshl2] = ACTIONS(2110), + [anon_sym_bit_DASHshr2] = ACTIONS(2110), + [anon_sym_bit_DASHand2] = ACTIONS(2110), + [anon_sym_bit_DASHxor2] = ACTIONS(2110), + [anon_sym_bit_DASHor2] = ACTIONS(2110), + [anon_sym_err_GT] = ACTIONS(2112), + [anon_sym_out_GT] = ACTIONS(2112), + [anon_sym_e_GT] = ACTIONS(2112), + [anon_sym_o_GT] = ACTIONS(2112), + [anon_sym_err_PLUSout_GT] = ACTIONS(2112), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2112), + [anon_sym_o_PLUSe_GT] = ACTIONS(2112), + [anon_sym_e_PLUSo_GT] = ACTIONS(2112), + [anon_sym_err_GT_GT] = ACTIONS(2110), + [anon_sym_out_GT_GT] = ACTIONS(2110), + [anon_sym_e_GT_GT] = ACTIONS(2110), + [anon_sym_o_GT_GT] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2110), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(723)] = { - [sym_comment] = STATE(723), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_EQ_GT] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), + [STATE(730)] = { + [sym_comment] = STATE(730), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_err_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_GT_PIPE] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_GT2] = ACTIONS(2120), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_EQ_GT] = ACTIONS(2118), + [anon_sym_STAR2] = ACTIONS(2120), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2120), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2120), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2120), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_err_GT] = ACTIONS(2120), + [anon_sym_out_GT] = ACTIONS(2120), + [anon_sym_e_GT] = ACTIONS(2120), + [anon_sym_o_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT] = ACTIONS(2120), + [anon_sym_err_GT_GT] = ACTIONS(2118), + [anon_sym_out_GT_GT] = ACTIONS(2118), + [anon_sym_e_GT_GT] = ACTIONS(2118), + [anon_sym_o_GT_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2118), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(724)] = { - [sym_comment] = STATE(724), - [anon_sym_if] = ACTIONS(2202), - [anon_sym_in] = ACTIONS(2202), - [sym__newline] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2204), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_EQ_GT] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2204), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2204), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_like2] = ACTIONS(2202), - [anon_sym_not_DASHlike2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2204), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2204), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), - [anon_sym_err_GT] = ACTIONS(2204), - [anon_sym_out_GT] = ACTIONS(2204), - [anon_sym_e_GT] = ACTIONS(2204), - [anon_sym_o_GT] = ACTIONS(2204), - [anon_sym_err_PLUSout_GT] = ACTIONS(2204), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2204), - [anon_sym_o_PLUSe_GT] = ACTIONS(2204), - [anon_sym_e_PLUSo_GT] = ACTIONS(2204), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), + [STATE(731)] = { + [sym_comment] = STATE(731), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_in] = ACTIONS(2204), + [sym__newline] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2204), + [anon_sym_err_GT_PIPE] = ACTIONS(2204), + [anon_sym_out_GT_PIPE] = ACTIONS(2204), + [anon_sym_e_GT_PIPE] = ACTIONS(2204), + [anon_sym_o_GT_PIPE] = ACTIONS(2204), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2204), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2204), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2204), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2204), + [anon_sym_RPAREN] = ACTIONS(2204), + [anon_sym_GT2] = ACTIONS(2206), + [anon_sym_DASH2] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_EQ_GT] = ACTIONS(2204), + [anon_sym_STAR2] = ACTIONS(2206), + [anon_sym_and2] = ACTIONS(2204), + [anon_sym_xor2] = ACTIONS(2204), + [anon_sym_or2] = ACTIONS(2204), + [anon_sym_not_DASHin2] = ACTIONS(2204), + [anon_sym_has2] = ACTIONS(2204), + [anon_sym_not_DASHhas2] = ACTIONS(2204), + [anon_sym_starts_DASHwith2] = ACTIONS(2204), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2204), + [anon_sym_ends_DASHwith2] = ACTIONS(2204), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2204), + [anon_sym_EQ_EQ2] = ACTIONS(2204), + [anon_sym_BANG_EQ2] = ACTIONS(2204), + [anon_sym_LT2] = ACTIONS(2206), + [anon_sym_LT_EQ2] = ACTIONS(2204), + [anon_sym_GT_EQ2] = ACTIONS(2204), + [anon_sym_EQ_TILDE2] = ACTIONS(2204), + [anon_sym_BANG_TILDE2] = ACTIONS(2204), + [anon_sym_like2] = ACTIONS(2204), + [anon_sym_not_DASHlike2] = ACTIONS(2204), + [anon_sym_STAR_STAR2] = ACTIONS(2204), + [anon_sym_PLUS_PLUS2] = ACTIONS(2204), + [anon_sym_SLASH2] = ACTIONS(2206), + [anon_sym_mod2] = ACTIONS(2204), + [anon_sym_SLASH_SLASH2] = ACTIONS(2204), + [anon_sym_PLUS2] = ACTIONS(2206), + [anon_sym_bit_DASHshl2] = ACTIONS(2204), + [anon_sym_bit_DASHshr2] = ACTIONS(2204), + [anon_sym_bit_DASHand2] = ACTIONS(2204), + [anon_sym_bit_DASHxor2] = ACTIONS(2204), + [anon_sym_bit_DASHor2] = ACTIONS(2204), + [anon_sym_err_GT] = ACTIONS(2206), + [anon_sym_out_GT] = ACTIONS(2206), + [anon_sym_e_GT] = ACTIONS(2206), + [anon_sym_o_GT] = ACTIONS(2206), + [anon_sym_err_PLUSout_GT] = ACTIONS(2206), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2206), + [anon_sym_o_PLUSe_GT] = ACTIONS(2206), + [anon_sym_e_PLUSo_GT] = ACTIONS(2206), + [anon_sym_err_GT_GT] = ACTIONS(2204), + [anon_sym_out_GT_GT] = ACTIONS(2204), + [anon_sym_e_GT_GT] = ACTIONS(2204), + [anon_sym_o_GT_GT] = ACTIONS(2204), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2204), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2204), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2204), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2204), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(725)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1288), + [STATE(732)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1349), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), [sym__val_number_decimal] = STATE(463), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(974), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(725), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1136), + [sym__unquoted_with_expr] = STATE(1351), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(732), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2224), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(726)] = { - [sym_comment] = STATE(726), - [anon_sym_if] = ACTIONS(2206), - [anon_sym_in] = ACTIONS(2206), - [sym__newline] = ACTIONS(2206), - [anon_sym_SEMI] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_err_GT_PIPE] = ACTIONS(2206), - [anon_sym_out_GT_PIPE] = ACTIONS(2206), - [anon_sym_e_GT_PIPE] = ACTIONS(2206), - [anon_sym_o_GT_PIPE] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2206), - [anon_sym_RPAREN] = ACTIONS(2206), - [anon_sym_GT2] = ACTIONS(2208), - [anon_sym_DASH2] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_EQ_GT] = ACTIONS(2206), - [anon_sym_STAR2] = ACTIONS(2208), - [anon_sym_and2] = ACTIONS(2206), - [anon_sym_xor2] = ACTIONS(2206), - [anon_sym_or2] = ACTIONS(2206), - [anon_sym_not_DASHin2] = ACTIONS(2206), - [anon_sym_has2] = ACTIONS(2206), - [anon_sym_not_DASHhas2] = ACTIONS(2206), - [anon_sym_starts_DASHwith2] = ACTIONS(2206), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2206), - [anon_sym_ends_DASHwith2] = ACTIONS(2206), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2206), - [anon_sym_EQ_EQ2] = ACTIONS(2206), - [anon_sym_BANG_EQ2] = ACTIONS(2206), - [anon_sym_LT2] = ACTIONS(2208), - [anon_sym_LT_EQ2] = ACTIONS(2206), - [anon_sym_GT_EQ2] = ACTIONS(2206), - [anon_sym_EQ_TILDE2] = ACTIONS(2206), - [anon_sym_BANG_TILDE2] = ACTIONS(2206), - [anon_sym_like2] = ACTIONS(2206), - [anon_sym_not_DASHlike2] = ACTIONS(2206), - [anon_sym_STAR_STAR2] = ACTIONS(2206), - [anon_sym_PLUS_PLUS2] = ACTIONS(2206), - [anon_sym_SLASH2] = ACTIONS(2208), - [anon_sym_mod2] = ACTIONS(2206), - [anon_sym_SLASH_SLASH2] = ACTIONS(2206), - [anon_sym_PLUS2] = ACTIONS(2208), - [anon_sym_bit_DASHshl2] = ACTIONS(2206), - [anon_sym_bit_DASHshr2] = ACTIONS(2206), - [anon_sym_bit_DASHand2] = ACTIONS(2206), - [anon_sym_bit_DASHxor2] = ACTIONS(2206), - [anon_sym_bit_DASHor2] = ACTIONS(2206), - [anon_sym_err_GT] = ACTIONS(2208), - [anon_sym_out_GT] = ACTIONS(2208), - [anon_sym_e_GT] = ACTIONS(2208), - [anon_sym_o_GT] = ACTIONS(2208), - [anon_sym_err_PLUSout_GT] = ACTIONS(2208), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2208), - [anon_sym_o_PLUSe_GT] = ACTIONS(2208), - [anon_sym_e_PLUSo_GT] = ACTIONS(2208), - [anon_sym_err_GT_GT] = ACTIONS(2206), - [anon_sym_out_GT_GT] = ACTIONS(2206), - [anon_sym_e_GT_GT] = ACTIONS(2206), - [anon_sym_o_GT_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(727)] = { - [sym_comment] = STATE(727), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_in] = ACTIONS(2210), - [sym__newline] = ACTIONS(2210), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_err_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_GT_PIPE] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2210), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_GT2] = ACTIONS(2212), - [anon_sym_DASH2] = ACTIONS(2210), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_EQ_GT] = ACTIONS(2210), - [anon_sym_STAR2] = ACTIONS(2212), - [anon_sym_and2] = ACTIONS(2210), - [anon_sym_xor2] = ACTIONS(2210), - [anon_sym_or2] = ACTIONS(2210), - [anon_sym_not_DASHin2] = ACTIONS(2210), - [anon_sym_has2] = ACTIONS(2210), - [anon_sym_not_DASHhas2] = ACTIONS(2210), - [anon_sym_starts_DASHwith2] = ACTIONS(2210), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2210), - [anon_sym_ends_DASHwith2] = ACTIONS(2210), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2210), - [anon_sym_EQ_EQ2] = ACTIONS(2210), - [anon_sym_BANG_EQ2] = ACTIONS(2210), - [anon_sym_LT2] = ACTIONS(2212), - [anon_sym_LT_EQ2] = ACTIONS(2210), - [anon_sym_GT_EQ2] = ACTIONS(2210), - [anon_sym_EQ_TILDE2] = ACTIONS(2210), - [anon_sym_BANG_TILDE2] = ACTIONS(2210), - [anon_sym_like2] = ACTIONS(2210), - [anon_sym_not_DASHlike2] = ACTIONS(2210), - [anon_sym_STAR_STAR2] = ACTIONS(2210), - [anon_sym_PLUS_PLUS2] = ACTIONS(2210), - [anon_sym_SLASH2] = ACTIONS(2212), - [anon_sym_mod2] = ACTIONS(2210), - [anon_sym_SLASH_SLASH2] = ACTIONS(2210), - [anon_sym_PLUS2] = ACTIONS(2212), - [anon_sym_bit_DASHshl2] = ACTIONS(2210), - [anon_sym_bit_DASHshr2] = ACTIONS(2210), - [anon_sym_bit_DASHand2] = ACTIONS(2210), - [anon_sym_bit_DASHxor2] = ACTIONS(2210), - [anon_sym_bit_DASHor2] = ACTIONS(2210), - [anon_sym_err_GT] = ACTIONS(2212), - [anon_sym_out_GT] = ACTIONS(2212), - [anon_sym_e_GT] = ACTIONS(2212), - [anon_sym_o_GT] = ACTIONS(2212), - [anon_sym_err_PLUSout_GT] = ACTIONS(2212), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2212), - [anon_sym_o_PLUSe_GT] = ACTIONS(2212), - [anon_sym_e_PLUSo_GT] = ACTIONS(2212), - [anon_sym_err_GT_GT] = ACTIONS(2210), - [anon_sym_out_GT_GT] = ACTIONS(2210), - [anon_sym_e_GT_GT] = ACTIONS(2210), - [anon_sym_o_GT_GT] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(728)] = { - [sym_comment] = STATE(728), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_in] = ACTIONS(2214), - [sym__newline] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_RPAREN] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2216), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_EQ_GT] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2216), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_has2] = ACTIONS(2214), - [anon_sym_not_DASHhas2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2216), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_like2] = ACTIONS(2214), - [anon_sym_not_DASHlike2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2216), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2216), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_err_GT] = ACTIONS(2216), - [anon_sym_out_GT] = ACTIONS(2216), - [anon_sym_e_GT] = ACTIONS(2216), - [anon_sym_o_GT] = ACTIONS(2216), - [anon_sym_err_PLUSout_GT] = ACTIONS(2216), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2216), - [anon_sym_o_PLUSe_GT] = ACTIONS(2216), - [anon_sym_e_PLUSo_GT] = ACTIONS(2216), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(729)] = { - [sym_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1537), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(730)] = { - [sym_comment] = STATE(730), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_in] = ACTIONS(2218), - [sym__newline] = ACTIONS(2218), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_err_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_GT_PIPE] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), - [anon_sym_RPAREN] = ACTIONS(2218), - [anon_sym_GT2] = ACTIONS(2220), - [anon_sym_DASH2] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(2218), - [anon_sym_STAR2] = ACTIONS(2220), - [anon_sym_and2] = ACTIONS(2218), - [anon_sym_xor2] = ACTIONS(2218), - [anon_sym_or2] = ACTIONS(2218), - [anon_sym_not_DASHin2] = ACTIONS(2218), - [anon_sym_has2] = ACTIONS(2218), - [anon_sym_not_DASHhas2] = ACTIONS(2218), - [anon_sym_starts_DASHwith2] = ACTIONS(2218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), - [anon_sym_ends_DASHwith2] = ACTIONS(2218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), - [anon_sym_EQ_EQ2] = ACTIONS(2218), - [anon_sym_BANG_EQ2] = ACTIONS(2218), - [anon_sym_LT2] = ACTIONS(2220), - [anon_sym_LT_EQ2] = ACTIONS(2218), - [anon_sym_GT_EQ2] = ACTIONS(2218), - [anon_sym_EQ_TILDE2] = ACTIONS(2218), - [anon_sym_BANG_TILDE2] = ACTIONS(2218), - [anon_sym_like2] = ACTIONS(2218), - [anon_sym_not_DASHlike2] = ACTIONS(2218), - [anon_sym_STAR_STAR2] = ACTIONS(2218), - [anon_sym_PLUS_PLUS2] = ACTIONS(2218), - [anon_sym_SLASH2] = ACTIONS(2220), - [anon_sym_mod2] = ACTIONS(2218), - [anon_sym_SLASH_SLASH2] = ACTIONS(2218), - [anon_sym_PLUS2] = ACTIONS(2220), - [anon_sym_bit_DASHshl2] = ACTIONS(2218), - [anon_sym_bit_DASHshr2] = ACTIONS(2218), - [anon_sym_bit_DASHand2] = ACTIONS(2218), - [anon_sym_bit_DASHxor2] = ACTIONS(2218), - [anon_sym_bit_DASHor2] = ACTIONS(2218), - [anon_sym_err_GT] = ACTIONS(2220), - [anon_sym_out_GT] = ACTIONS(2220), - [anon_sym_e_GT] = ACTIONS(2220), - [anon_sym_o_GT] = ACTIONS(2220), - [anon_sym_err_PLUSout_GT] = ACTIONS(2220), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), - [anon_sym_o_PLUSe_GT] = ACTIONS(2220), - [anon_sym_e_PLUSo_GT] = ACTIONS(2220), - [anon_sym_err_GT_GT] = ACTIONS(2218), - [anon_sym_out_GT_GT] = ACTIONS(2218), - [anon_sym_e_GT_GT] = ACTIONS(2218), - [anon_sym_o_GT_GT] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(731)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1267), + [STATE(733)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1287), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), [sym__val_number_decimal] = STATE(463), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1307), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(731), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1030), + [sym__unquoted_with_expr] = STATE(1344), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(733), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2224), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(732)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1278), + [STATE(734)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1294), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), [sym__val_number_decimal] = STATE(463), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1071), - [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(732), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(981), + [sym__unquoted_with_expr] = STATE(1314), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(734), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2224), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(733)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1308), + [STATE(735)] = { + [sym_comment] = STATE(735), + [anon_sym_if] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(736)] = { + [sym_comment] = STATE(736), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [sym__newline] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_err_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_GT_PIPE] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2232), + [anon_sym_RPAREN] = ACTIONS(2232), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_EQ_GT] = ACTIONS(2232), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2232), + [anon_sym_xor2] = ACTIONS(2232), + [anon_sym_or2] = ACTIONS(2232), + [anon_sym_not_DASHin2] = ACTIONS(2232), + [anon_sym_has2] = ACTIONS(2232), + [anon_sym_not_DASHhas2] = ACTIONS(2232), + [anon_sym_starts_DASHwith2] = ACTIONS(2232), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2232), + [anon_sym_ends_DASHwith2] = ACTIONS(2232), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2232), + [anon_sym_EQ_EQ2] = ACTIONS(2232), + [anon_sym_BANG_EQ2] = ACTIONS(2232), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2232), + [anon_sym_GT_EQ2] = ACTIONS(2232), + [anon_sym_EQ_TILDE2] = ACTIONS(2232), + [anon_sym_BANG_TILDE2] = ACTIONS(2232), + [anon_sym_like2] = ACTIONS(2232), + [anon_sym_not_DASHlike2] = ACTIONS(2232), + [anon_sym_STAR_STAR2] = ACTIONS(2232), + [anon_sym_PLUS_PLUS2] = ACTIONS(2232), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2232), + [anon_sym_SLASH_SLASH2] = ACTIONS(2232), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2232), + [anon_sym_bit_DASHshr2] = ACTIONS(2232), + [anon_sym_bit_DASHand2] = ACTIONS(2232), + [anon_sym_bit_DASHxor2] = ACTIONS(2232), + [anon_sym_bit_DASHor2] = ACTIONS(2232), + [anon_sym_err_GT] = ACTIONS(2234), + [anon_sym_out_GT] = ACTIONS(2234), + [anon_sym_e_GT] = ACTIONS(2234), + [anon_sym_o_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT] = ACTIONS(2234), + [anon_sym_err_GT_GT] = ACTIONS(2232), + [anon_sym_out_GT_GT] = ACTIONS(2232), + [anon_sym_e_GT_GT] = ACTIONS(2232), + [anon_sym_o_GT_GT] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(737)] = { + [sym_comment] = STATE(737), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2236), + [sym__newline] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_err_GT_PIPE] = ACTIONS(2236), + [anon_sym_out_GT_PIPE] = ACTIONS(2236), + [anon_sym_e_GT_PIPE] = ACTIONS(2236), + [anon_sym_o_GT_PIPE] = ACTIONS(2236), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2236), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2236), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2236), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2236), + [anon_sym_RPAREN] = ACTIONS(2236), + [anon_sym_GT2] = ACTIONS(2238), + [anon_sym_DASH2] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_EQ_GT] = ACTIONS(2236), + [anon_sym_STAR2] = ACTIONS(2238), + [anon_sym_and2] = ACTIONS(2236), + [anon_sym_xor2] = ACTIONS(2236), + [anon_sym_or2] = ACTIONS(2236), + [anon_sym_not_DASHin2] = ACTIONS(2236), + [anon_sym_has2] = ACTIONS(2236), + [anon_sym_not_DASHhas2] = ACTIONS(2236), + [anon_sym_starts_DASHwith2] = ACTIONS(2236), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2236), + [anon_sym_ends_DASHwith2] = ACTIONS(2236), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2236), + [anon_sym_EQ_EQ2] = ACTIONS(2236), + [anon_sym_BANG_EQ2] = ACTIONS(2236), + [anon_sym_LT2] = ACTIONS(2238), + [anon_sym_LT_EQ2] = ACTIONS(2236), + [anon_sym_GT_EQ2] = ACTIONS(2236), + [anon_sym_EQ_TILDE2] = ACTIONS(2236), + [anon_sym_BANG_TILDE2] = ACTIONS(2236), + [anon_sym_like2] = ACTIONS(2236), + [anon_sym_not_DASHlike2] = ACTIONS(2236), + [anon_sym_STAR_STAR2] = ACTIONS(2236), + [anon_sym_PLUS_PLUS2] = ACTIONS(2236), + [anon_sym_SLASH2] = ACTIONS(2238), + [anon_sym_mod2] = ACTIONS(2236), + [anon_sym_SLASH_SLASH2] = ACTIONS(2236), + [anon_sym_PLUS2] = ACTIONS(2238), + [anon_sym_bit_DASHshl2] = ACTIONS(2236), + [anon_sym_bit_DASHshr2] = ACTIONS(2236), + [anon_sym_bit_DASHand2] = ACTIONS(2236), + [anon_sym_bit_DASHxor2] = ACTIONS(2236), + [anon_sym_bit_DASHor2] = ACTIONS(2236), + [anon_sym_err_GT] = ACTIONS(2238), + [anon_sym_out_GT] = ACTIONS(2238), + [anon_sym_e_GT] = ACTIONS(2238), + [anon_sym_o_GT] = ACTIONS(2238), + [anon_sym_err_PLUSout_GT] = ACTIONS(2238), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2238), + [anon_sym_o_PLUSe_GT] = ACTIONS(2238), + [anon_sym_e_PLUSo_GT] = ACTIONS(2238), + [anon_sym_err_GT_GT] = ACTIONS(2236), + [anon_sym_out_GT_GT] = ACTIONS(2236), + [anon_sym_e_GT_GT] = ACTIONS(2236), + [anon_sym_o_GT_GT] = ACTIONS(2236), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2236), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2236), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2236), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2236), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(738)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1281), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), [sym__val_number_decimal] = STATE(463), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1127), - [sym__unquoted_with_expr] = STATE(1321), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(733), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1006), + [sym__unquoted_with_expr] = STATE(1292), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(738), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2224), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(734)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1283), + [STATE(739)] = { + [sym_comment] = STATE(739), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_in] = ACTIONS(2240), + [sym__newline] = ACTIONS(2240), + [anon_sym_SEMI] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_err_GT_PIPE] = ACTIONS(2240), + [anon_sym_out_GT_PIPE] = ACTIONS(2240), + [anon_sym_e_GT_PIPE] = ACTIONS(2240), + [anon_sym_o_GT_PIPE] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2240), + [anon_sym_RPAREN] = ACTIONS(2240), + [anon_sym_GT2] = ACTIONS(2242), + [anon_sym_DASH2] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2240), + [anon_sym_EQ_GT] = ACTIONS(2240), + [anon_sym_STAR2] = ACTIONS(2242), + [anon_sym_and2] = ACTIONS(2240), + [anon_sym_xor2] = ACTIONS(2240), + [anon_sym_or2] = ACTIONS(2240), + [anon_sym_not_DASHin2] = ACTIONS(2240), + [anon_sym_has2] = ACTIONS(2240), + [anon_sym_not_DASHhas2] = ACTIONS(2240), + [anon_sym_starts_DASHwith2] = ACTIONS(2240), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2240), + [anon_sym_ends_DASHwith2] = ACTIONS(2240), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2240), + [anon_sym_EQ_EQ2] = ACTIONS(2240), + [anon_sym_BANG_EQ2] = ACTIONS(2240), + [anon_sym_LT2] = ACTIONS(2242), + [anon_sym_LT_EQ2] = ACTIONS(2240), + [anon_sym_GT_EQ2] = ACTIONS(2240), + [anon_sym_EQ_TILDE2] = ACTIONS(2240), + [anon_sym_BANG_TILDE2] = ACTIONS(2240), + [anon_sym_like2] = ACTIONS(2240), + [anon_sym_not_DASHlike2] = ACTIONS(2240), + [anon_sym_STAR_STAR2] = ACTIONS(2240), + [anon_sym_PLUS_PLUS2] = ACTIONS(2240), + [anon_sym_SLASH2] = ACTIONS(2242), + [anon_sym_mod2] = ACTIONS(2240), + [anon_sym_SLASH_SLASH2] = ACTIONS(2240), + [anon_sym_PLUS2] = ACTIONS(2242), + [anon_sym_bit_DASHshl2] = ACTIONS(2240), + [anon_sym_bit_DASHshr2] = ACTIONS(2240), + [anon_sym_bit_DASHand2] = ACTIONS(2240), + [anon_sym_bit_DASHxor2] = ACTIONS(2240), + [anon_sym_bit_DASHor2] = ACTIONS(2240), + [anon_sym_err_GT] = ACTIONS(2242), + [anon_sym_out_GT] = ACTIONS(2242), + [anon_sym_e_GT] = ACTIONS(2242), + [anon_sym_o_GT] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT] = ACTIONS(2242), + [anon_sym_err_GT_GT] = ACTIONS(2240), + [anon_sym_out_GT_GT] = ACTIONS(2240), + [anon_sym_e_GT_GT] = ACTIONS(2240), + [anon_sym_o_GT_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(740)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1291), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), [sym__val_number_decimal] = STATE(463), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(972), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(734), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1108), + [sym__unquoted_with_expr] = STATE(1305), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(740), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2224), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(735)] = { - [sym_comment] = STATE(735), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2222), - [sym__newline] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2224), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_EQ_GT] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2224), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_has2] = ACTIONS(2222), - [anon_sym_not_DASHhas2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2224), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_like2] = ACTIONS(2222), - [anon_sym_not_DASHlike2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2224), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2224), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), - [anon_sym_err_GT] = ACTIONS(2224), - [anon_sym_out_GT] = ACTIONS(2224), - [anon_sym_e_GT] = ACTIONS(2224), - [anon_sym_o_GT] = ACTIONS(2224), - [anon_sym_err_PLUSout_GT] = ACTIONS(2224), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2224), - [anon_sym_o_PLUSe_GT] = ACTIONS(2224), - [anon_sym_e_PLUSo_GT] = ACTIONS(2224), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(736)] = { - [sym_comment] = STATE(736), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2226), - [sym__newline] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_err_GT_PIPE] = ACTIONS(2226), - [anon_sym_out_GT_PIPE] = ACTIONS(2226), - [anon_sym_e_GT_PIPE] = ACTIONS(2226), - [anon_sym_o_GT_PIPE] = ACTIONS(2226), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2226), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2226), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2226), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2226), - [anon_sym_RPAREN] = ACTIONS(2226), - [anon_sym_GT2] = ACTIONS(2228), - [anon_sym_DASH2] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_EQ_GT] = ACTIONS(2226), - [anon_sym_STAR2] = ACTIONS(2228), - [anon_sym_and2] = ACTIONS(2226), - [anon_sym_xor2] = ACTIONS(2226), - [anon_sym_or2] = ACTIONS(2226), - [anon_sym_not_DASHin2] = ACTIONS(2226), - [anon_sym_has2] = ACTIONS(2226), - [anon_sym_not_DASHhas2] = ACTIONS(2226), - [anon_sym_starts_DASHwith2] = ACTIONS(2226), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2226), - [anon_sym_ends_DASHwith2] = ACTIONS(2226), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2226), - [anon_sym_EQ_EQ2] = ACTIONS(2226), - [anon_sym_BANG_EQ2] = ACTIONS(2226), - [anon_sym_LT2] = ACTIONS(2228), - [anon_sym_LT_EQ2] = ACTIONS(2226), - [anon_sym_GT_EQ2] = ACTIONS(2226), - [anon_sym_EQ_TILDE2] = ACTIONS(2226), - [anon_sym_BANG_TILDE2] = ACTIONS(2226), - [anon_sym_like2] = ACTIONS(2226), - [anon_sym_not_DASHlike2] = ACTIONS(2226), - [anon_sym_STAR_STAR2] = ACTIONS(2226), - [anon_sym_PLUS_PLUS2] = ACTIONS(2226), - [anon_sym_SLASH2] = ACTIONS(2228), - [anon_sym_mod2] = ACTIONS(2226), - [anon_sym_SLASH_SLASH2] = ACTIONS(2226), - [anon_sym_PLUS2] = ACTIONS(2228), - [anon_sym_bit_DASHshl2] = ACTIONS(2226), - [anon_sym_bit_DASHshr2] = ACTIONS(2226), - [anon_sym_bit_DASHand2] = ACTIONS(2226), - [anon_sym_bit_DASHxor2] = ACTIONS(2226), - [anon_sym_bit_DASHor2] = ACTIONS(2226), - [anon_sym_err_GT] = ACTIONS(2228), - [anon_sym_out_GT] = ACTIONS(2228), - [anon_sym_e_GT] = ACTIONS(2228), - [anon_sym_o_GT] = ACTIONS(2228), - [anon_sym_err_PLUSout_GT] = ACTIONS(2228), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2228), - [anon_sym_o_PLUSe_GT] = ACTIONS(2228), - [anon_sym_e_PLUSo_GT] = ACTIONS(2228), - [anon_sym_err_GT_GT] = ACTIONS(2226), - [anon_sym_out_GT_GT] = ACTIONS(2226), - [anon_sym_e_GT_GT] = ACTIONS(2226), - [anon_sym_o_GT_GT] = ACTIONS(2226), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2226), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2226), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2226), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(737)] = { - [sym_comment] = STATE(737), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [sym__newline] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_err_GT_PIPE] = ACTIONS(2230), - [anon_sym_out_GT_PIPE] = ACTIONS(2230), - [anon_sym_e_GT_PIPE] = ACTIONS(2230), - [anon_sym_o_GT_PIPE] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2230), - [anon_sym_RPAREN] = ACTIONS(2230), - [anon_sym_GT2] = ACTIONS(2232), - [anon_sym_DASH2] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_STAR2] = ACTIONS(2232), - [anon_sym_and2] = ACTIONS(2230), - [anon_sym_xor2] = ACTIONS(2230), - [anon_sym_or2] = ACTIONS(2230), - [anon_sym_not_DASHin2] = ACTIONS(2230), - [anon_sym_has2] = ACTIONS(2230), - [anon_sym_not_DASHhas2] = ACTIONS(2230), - [anon_sym_starts_DASHwith2] = ACTIONS(2230), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2230), - [anon_sym_ends_DASHwith2] = ACTIONS(2230), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2230), - [anon_sym_EQ_EQ2] = ACTIONS(2230), - [anon_sym_BANG_EQ2] = ACTIONS(2230), - [anon_sym_LT2] = ACTIONS(2232), - [anon_sym_LT_EQ2] = ACTIONS(2230), - [anon_sym_GT_EQ2] = ACTIONS(2230), - [anon_sym_EQ_TILDE2] = ACTIONS(2230), - [anon_sym_BANG_TILDE2] = ACTIONS(2230), - [anon_sym_like2] = ACTIONS(2230), - [anon_sym_not_DASHlike2] = ACTIONS(2230), - [anon_sym_STAR_STAR2] = ACTIONS(2230), - [anon_sym_PLUS_PLUS2] = ACTIONS(2230), - [anon_sym_SLASH2] = ACTIONS(2232), - [anon_sym_mod2] = ACTIONS(2230), - [anon_sym_SLASH_SLASH2] = ACTIONS(2230), - [anon_sym_PLUS2] = ACTIONS(2232), - [anon_sym_bit_DASHshl2] = ACTIONS(2230), - [anon_sym_bit_DASHshr2] = ACTIONS(2230), - [anon_sym_bit_DASHand2] = ACTIONS(2230), - [anon_sym_bit_DASHxor2] = ACTIONS(2230), - [anon_sym_bit_DASHor2] = ACTIONS(2230), - [anon_sym_err_GT] = ACTIONS(2232), - [anon_sym_out_GT] = ACTIONS(2232), - [anon_sym_e_GT] = ACTIONS(2232), - [anon_sym_o_GT] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT] = ACTIONS(2232), - [anon_sym_err_GT_GT] = ACTIONS(2230), - [anon_sym_out_GT_GT] = ACTIONS(2230), - [anon_sym_e_GT_GT] = ACTIONS(2230), - [anon_sym_o_GT_GT] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(738)] = { - [sym_comment] = STATE(738), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_in] = ACTIONS(2234), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_RPAREN] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2236), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_EQ_GT] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2236), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_has2] = ACTIONS(2234), - [anon_sym_not_DASHhas2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2236), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_like2] = ACTIONS(2234), - [anon_sym_not_DASHlike2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2236), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2236), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_err_GT] = ACTIONS(2236), - [anon_sym_out_GT] = ACTIONS(2236), - [anon_sym_e_GT] = ACTIONS(2236), - [anon_sym_o_GT] = ACTIONS(2236), - [anon_sym_err_PLUSout_GT] = ACTIONS(2236), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2236), - [anon_sym_o_PLUSe_GT] = ACTIONS(2236), - [anon_sym_e_PLUSo_GT] = ACTIONS(2236), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(739)] = { - [sym_comment] = STATE(739), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [sym__newline] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_err_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_GT_PIPE] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2238), - [anon_sym_RPAREN] = ACTIONS(2238), - [anon_sym_GT2] = ACTIONS(2240), - [anon_sym_DASH2] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_EQ_GT] = ACTIONS(2238), - [anon_sym_STAR2] = ACTIONS(2240), - [anon_sym_and2] = ACTIONS(2238), - [anon_sym_xor2] = ACTIONS(2238), - [anon_sym_or2] = ACTIONS(2238), - [anon_sym_not_DASHin2] = ACTIONS(2238), - [anon_sym_has2] = ACTIONS(2238), - [anon_sym_not_DASHhas2] = ACTIONS(2238), - [anon_sym_starts_DASHwith2] = ACTIONS(2238), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2238), - [anon_sym_ends_DASHwith2] = ACTIONS(2238), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2238), - [anon_sym_EQ_EQ2] = ACTIONS(2238), - [anon_sym_BANG_EQ2] = ACTIONS(2238), - [anon_sym_LT2] = ACTIONS(2240), - [anon_sym_LT_EQ2] = ACTIONS(2238), - [anon_sym_GT_EQ2] = ACTIONS(2238), - [anon_sym_EQ_TILDE2] = ACTIONS(2238), - [anon_sym_BANG_TILDE2] = ACTIONS(2238), - [anon_sym_like2] = ACTIONS(2238), - [anon_sym_not_DASHlike2] = ACTIONS(2238), - [anon_sym_STAR_STAR2] = ACTIONS(2238), - [anon_sym_PLUS_PLUS2] = ACTIONS(2238), - [anon_sym_SLASH2] = ACTIONS(2240), - [anon_sym_mod2] = ACTIONS(2238), - [anon_sym_SLASH_SLASH2] = ACTIONS(2238), - [anon_sym_PLUS2] = ACTIONS(2240), - [anon_sym_bit_DASHshl2] = ACTIONS(2238), - [anon_sym_bit_DASHshr2] = ACTIONS(2238), - [anon_sym_bit_DASHand2] = ACTIONS(2238), - [anon_sym_bit_DASHxor2] = ACTIONS(2238), - [anon_sym_bit_DASHor2] = ACTIONS(2238), - [anon_sym_err_GT] = ACTIONS(2240), - [anon_sym_out_GT] = ACTIONS(2240), - [anon_sym_e_GT] = ACTIONS(2240), - [anon_sym_o_GT] = ACTIONS(2240), - [anon_sym_err_PLUSout_GT] = ACTIONS(2240), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), - [anon_sym_o_PLUSe_GT] = ACTIONS(2240), - [anon_sym_e_PLUSo_GT] = ACTIONS(2240), - [anon_sym_err_GT_GT] = ACTIONS(2238), - [anon_sym_out_GT_GT] = ACTIONS(2238), - [anon_sym_e_GT_GT] = ACTIONS(2238), - [anon_sym_o_GT_GT] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(740)] = { - [sym_comment] = STATE(740), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2242), - [sym__newline] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_err_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_GT_PIPE] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2242), - [anon_sym_RPAREN] = ACTIONS(2242), - [anon_sym_GT2] = ACTIONS(2244), - [anon_sym_DASH2] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_EQ_GT] = ACTIONS(2242), - [anon_sym_STAR2] = ACTIONS(2244), - [anon_sym_and2] = ACTIONS(2242), - [anon_sym_xor2] = ACTIONS(2242), - [anon_sym_or2] = ACTIONS(2242), - [anon_sym_not_DASHin2] = ACTIONS(2242), - [anon_sym_has2] = ACTIONS(2242), - [anon_sym_not_DASHhas2] = ACTIONS(2242), - [anon_sym_starts_DASHwith2] = ACTIONS(2242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2242), - [anon_sym_ends_DASHwith2] = ACTIONS(2242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2242), - [anon_sym_EQ_EQ2] = ACTIONS(2242), - [anon_sym_BANG_EQ2] = ACTIONS(2242), - [anon_sym_LT2] = ACTIONS(2244), - [anon_sym_LT_EQ2] = ACTIONS(2242), - [anon_sym_GT_EQ2] = ACTIONS(2242), - [anon_sym_EQ_TILDE2] = ACTIONS(2242), - [anon_sym_BANG_TILDE2] = ACTIONS(2242), - [anon_sym_like2] = ACTIONS(2242), - [anon_sym_not_DASHlike2] = ACTIONS(2242), - [anon_sym_STAR_STAR2] = ACTIONS(2242), - [anon_sym_PLUS_PLUS2] = ACTIONS(2242), - [anon_sym_SLASH2] = ACTIONS(2244), - [anon_sym_mod2] = ACTIONS(2242), - [anon_sym_SLASH_SLASH2] = ACTIONS(2242), - [anon_sym_PLUS2] = ACTIONS(2244), - [anon_sym_bit_DASHshl2] = ACTIONS(2242), - [anon_sym_bit_DASHshr2] = ACTIONS(2242), - [anon_sym_bit_DASHand2] = ACTIONS(2242), - [anon_sym_bit_DASHxor2] = ACTIONS(2242), - [anon_sym_bit_DASHor2] = ACTIONS(2242), - [anon_sym_err_GT] = ACTIONS(2244), - [anon_sym_out_GT] = ACTIONS(2244), - [anon_sym_e_GT] = ACTIONS(2244), - [anon_sym_o_GT] = ACTIONS(2244), - [anon_sym_err_PLUSout_GT] = ACTIONS(2244), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2244), - [anon_sym_o_PLUSe_GT] = ACTIONS(2244), - [anon_sym_e_PLUSo_GT] = ACTIONS(2244), - [anon_sym_err_GT_GT] = ACTIONS(2242), - [anon_sym_out_GT_GT] = ACTIONS(2242), - [anon_sym_e_GT_GT] = ACTIONS(2242), - [anon_sym_o_GT_GT] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(741)] = { [sym_comment] = STATE(741), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2248), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_EQ_GT] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2248), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_has2] = ACTIONS(2246), - [anon_sym_not_DASHhas2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2248), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_like2] = ACTIONS(2246), - [anon_sym_not_DASHlike2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2248), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2248), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_err_GT] = ACTIONS(2248), - [anon_sym_out_GT] = ACTIONS(2248), - [anon_sym_e_GT] = ACTIONS(2248), - [anon_sym_o_GT] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT] = ACTIONS(2248), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [sym__newline] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_err_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_GT_PIPE] = ACTIONS(2244), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2244), + [anon_sym_RPAREN] = ACTIONS(2244), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_EQ_GT] = ACTIONS(2244), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2244), + [anon_sym_xor2] = ACTIONS(2244), + [anon_sym_or2] = ACTIONS(2244), + [anon_sym_not_DASHin2] = ACTIONS(2244), + [anon_sym_has2] = ACTIONS(2244), + [anon_sym_not_DASHhas2] = ACTIONS(2244), + [anon_sym_starts_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2244), + [anon_sym_ends_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2244), + [anon_sym_EQ_EQ2] = ACTIONS(2244), + [anon_sym_BANG_EQ2] = ACTIONS(2244), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2244), + [anon_sym_GT_EQ2] = ACTIONS(2244), + [anon_sym_EQ_TILDE2] = ACTIONS(2244), + [anon_sym_BANG_TILDE2] = ACTIONS(2244), + [anon_sym_like2] = ACTIONS(2244), + [anon_sym_not_DASHlike2] = ACTIONS(2244), + [anon_sym_STAR_STAR2] = ACTIONS(2244), + [anon_sym_PLUS_PLUS2] = ACTIONS(2244), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2244), + [anon_sym_SLASH_SLASH2] = ACTIONS(2244), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2244), + [anon_sym_bit_DASHshr2] = ACTIONS(2244), + [anon_sym_bit_DASHand2] = ACTIONS(2244), + [anon_sym_bit_DASHxor2] = ACTIONS(2244), + [anon_sym_bit_DASHor2] = ACTIONS(2244), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2244), + [anon_sym_out_GT_GT] = ACTIONS(2244), + [anon_sym_e_GT_GT] = ACTIONS(2244), + [anon_sym_o_GT_GT] = ACTIONS(2244), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2244), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2244), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2244), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2244), [anon_sym_POUND] = ACTIONS(3), }, [STATE(742)] = { [sym_comment] = STATE(742), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [sym__newline] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_err_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_GT_PIPE] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), - [anon_sym_RPAREN] = ACTIONS(2250), - [anon_sym_GT2] = ACTIONS(2252), - [anon_sym_DASH2] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_EQ_GT] = ACTIONS(2250), - [anon_sym_STAR2] = ACTIONS(2252), - [anon_sym_and2] = ACTIONS(2250), - [anon_sym_xor2] = ACTIONS(2250), - [anon_sym_or2] = ACTIONS(2250), - [anon_sym_not_DASHin2] = ACTIONS(2250), - [anon_sym_has2] = ACTIONS(2250), - [anon_sym_not_DASHhas2] = ACTIONS(2250), - [anon_sym_starts_DASHwith2] = ACTIONS(2250), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2250), - [anon_sym_ends_DASHwith2] = ACTIONS(2250), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2250), - [anon_sym_EQ_EQ2] = ACTIONS(2250), - [anon_sym_BANG_EQ2] = ACTIONS(2250), - [anon_sym_LT2] = ACTIONS(2252), - [anon_sym_LT_EQ2] = ACTIONS(2250), - [anon_sym_GT_EQ2] = ACTIONS(2250), - [anon_sym_EQ_TILDE2] = ACTIONS(2250), - [anon_sym_BANG_TILDE2] = ACTIONS(2250), - [anon_sym_like2] = ACTIONS(2250), - [anon_sym_not_DASHlike2] = ACTIONS(2250), - [anon_sym_STAR_STAR2] = ACTIONS(2250), - [anon_sym_PLUS_PLUS2] = ACTIONS(2250), - [anon_sym_SLASH2] = ACTIONS(2252), - [anon_sym_mod2] = ACTIONS(2250), - [anon_sym_SLASH_SLASH2] = ACTIONS(2250), - [anon_sym_PLUS2] = ACTIONS(2252), - [anon_sym_bit_DASHshl2] = ACTIONS(2250), - [anon_sym_bit_DASHshr2] = ACTIONS(2250), - [anon_sym_bit_DASHand2] = ACTIONS(2250), - [anon_sym_bit_DASHxor2] = ACTIONS(2250), - [anon_sym_bit_DASHor2] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2252), - [anon_sym_out_GT] = ACTIONS(2252), - [anon_sym_e_GT] = ACTIONS(2252), - [anon_sym_o_GT] = ACTIONS(2252), - [anon_sym_err_PLUSout_GT] = ACTIONS(2252), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2252), - [anon_sym_o_PLUSe_GT] = ACTIONS(2252), - [anon_sym_e_PLUSo_GT] = ACTIONS(2252), - [anon_sym_err_GT_GT] = ACTIONS(2250), - [anon_sym_out_GT_GT] = ACTIONS(2250), - [anon_sym_e_GT_GT] = ACTIONS(2250), - [anon_sym_o_GT_GT] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_in] = ACTIONS(2248), + [sym__newline] = ACTIONS(2248), + [anon_sym_SEMI] = ACTIONS(2248), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_err_GT_PIPE] = ACTIONS(2248), + [anon_sym_out_GT_PIPE] = ACTIONS(2248), + [anon_sym_e_GT_PIPE] = ACTIONS(2248), + [anon_sym_o_GT_PIPE] = ACTIONS(2248), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2248), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2248), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2248), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2248), + [anon_sym_RPAREN] = ACTIONS(2248), + [anon_sym_GT2] = ACTIONS(2250), + [anon_sym_DASH2] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2248), + [anon_sym_RBRACE] = ACTIONS(2248), + [anon_sym_EQ_GT] = ACTIONS(2248), + [anon_sym_STAR2] = ACTIONS(2250), + [anon_sym_and2] = ACTIONS(2248), + [anon_sym_xor2] = ACTIONS(2248), + [anon_sym_or2] = ACTIONS(2248), + [anon_sym_not_DASHin2] = ACTIONS(2248), + [anon_sym_has2] = ACTIONS(2248), + [anon_sym_not_DASHhas2] = ACTIONS(2248), + [anon_sym_starts_DASHwith2] = ACTIONS(2248), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2248), + [anon_sym_ends_DASHwith2] = ACTIONS(2248), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2248), + [anon_sym_EQ_EQ2] = ACTIONS(2248), + [anon_sym_BANG_EQ2] = ACTIONS(2248), + [anon_sym_LT2] = ACTIONS(2250), + [anon_sym_LT_EQ2] = ACTIONS(2248), + [anon_sym_GT_EQ2] = ACTIONS(2248), + [anon_sym_EQ_TILDE2] = ACTIONS(2248), + [anon_sym_BANG_TILDE2] = ACTIONS(2248), + [anon_sym_like2] = ACTIONS(2248), + [anon_sym_not_DASHlike2] = ACTIONS(2248), + [anon_sym_STAR_STAR2] = ACTIONS(2248), + [anon_sym_PLUS_PLUS2] = ACTIONS(2248), + [anon_sym_SLASH2] = ACTIONS(2250), + [anon_sym_mod2] = ACTIONS(2248), + [anon_sym_SLASH_SLASH2] = ACTIONS(2248), + [anon_sym_PLUS2] = ACTIONS(2250), + [anon_sym_bit_DASHshl2] = ACTIONS(2248), + [anon_sym_bit_DASHshr2] = ACTIONS(2248), + [anon_sym_bit_DASHand2] = ACTIONS(2248), + [anon_sym_bit_DASHxor2] = ACTIONS(2248), + [anon_sym_bit_DASHor2] = ACTIONS(2248), + [anon_sym_err_GT] = ACTIONS(2250), + [anon_sym_out_GT] = ACTIONS(2250), + [anon_sym_e_GT] = ACTIONS(2250), + [anon_sym_o_GT] = ACTIONS(2250), + [anon_sym_err_PLUSout_GT] = ACTIONS(2250), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2250), + [anon_sym_o_PLUSe_GT] = ACTIONS(2250), + [anon_sym_e_PLUSo_GT] = ACTIONS(2250), + [anon_sym_err_GT_GT] = ACTIONS(2248), + [anon_sym_out_GT_GT] = ACTIONS(2248), + [anon_sym_e_GT_GT] = ACTIONS(2248), + [anon_sym_o_GT_GT] = ACTIONS(2248), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2248), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2248), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2248), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2248), [anon_sym_POUND] = ACTIONS(3), }, [STATE(743)] = { [sym_comment] = STATE(743), - [anon_sym_in] = ACTIONS(2254), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2256), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2256), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_has2] = ACTIONS(2254), - [anon_sym_not_DASHhas2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2256), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_like2] = ACTIONS(2254), - [anon_sym_not_DASHlike2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2256), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2256), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_COLON2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2256), - [anon_sym_out_GT] = ACTIONS(2256), - [anon_sym_e_GT] = ACTIONS(2256), - [anon_sym_o_GT] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT] = ACTIONS(2256), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_in] = ACTIONS(2252), + [sym__newline] = ACTIONS(2252), + [anon_sym_SEMI] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_err_GT_PIPE] = ACTIONS(2252), + [anon_sym_out_GT_PIPE] = ACTIONS(2252), + [anon_sym_e_GT_PIPE] = ACTIONS(2252), + [anon_sym_o_GT_PIPE] = ACTIONS(2252), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2252), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2252), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2252), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2252), + [anon_sym_RPAREN] = ACTIONS(2252), + [anon_sym_GT2] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2252), + [anon_sym_EQ_GT] = ACTIONS(2252), + [anon_sym_STAR2] = ACTIONS(2254), + [anon_sym_and2] = ACTIONS(2252), + [anon_sym_xor2] = ACTIONS(2252), + [anon_sym_or2] = ACTIONS(2252), + [anon_sym_not_DASHin2] = ACTIONS(2252), + [anon_sym_has2] = ACTIONS(2252), + [anon_sym_not_DASHhas2] = ACTIONS(2252), + [anon_sym_starts_DASHwith2] = ACTIONS(2252), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2252), + [anon_sym_ends_DASHwith2] = ACTIONS(2252), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2252), + [anon_sym_EQ_EQ2] = ACTIONS(2252), + [anon_sym_BANG_EQ2] = ACTIONS(2252), + [anon_sym_LT2] = ACTIONS(2254), + [anon_sym_LT_EQ2] = ACTIONS(2252), + [anon_sym_GT_EQ2] = ACTIONS(2252), + [anon_sym_EQ_TILDE2] = ACTIONS(2252), + [anon_sym_BANG_TILDE2] = ACTIONS(2252), + [anon_sym_like2] = ACTIONS(2252), + [anon_sym_not_DASHlike2] = ACTIONS(2252), + [anon_sym_STAR_STAR2] = ACTIONS(2252), + [anon_sym_PLUS_PLUS2] = ACTIONS(2252), + [anon_sym_SLASH2] = ACTIONS(2254), + [anon_sym_mod2] = ACTIONS(2252), + [anon_sym_SLASH_SLASH2] = ACTIONS(2252), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_bit_DASHshl2] = ACTIONS(2252), + [anon_sym_bit_DASHshr2] = ACTIONS(2252), + [anon_sym_bit_DASHand2] = ACTIONS(2252), + [anon_sym_bit_DASHxor2] = ACTIONS(2252), + [anon_sym_bit_DASHor2] = ACTIONS(2252), + [anon_sym_err_GT] = ACTIONS(2254), + [anon_sym_out_GT] = ACTIONS(2254), + [anon_sym_e_GT] = ACTIONS(2254), + [anon_sym_o_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT] = ACTIONS(2254), + [anon_sym_err_GT_GT] = ACTIONS(2252), + [anon_sym_out_GT_GT] = ACTIONS(2252), + [anon_sym_e_GT_GT] = ACTIONS(2252), + [anon_sym_o_GT_GT] = ACTIONS(2252), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2252), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2252), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2252), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2252), [anon_sym_POUND] = ACTIONS(3), }, [STATE(744)] = { [sym_comment] = STATE(744), - [anon_sym_in] = ACTIONS(2254), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2256), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2256), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_has2] = ACTIONS(2254), - [anon_sym_not_DASHhas2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2256), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_like2] = ACTIONS(2254), - [anon_sym_not_DASHlike2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2256), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2256), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_COLON2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2256), - [anon_sym_out_GT] = ACTIONS(2256), - [anon_sym_e_GT] = ACTIONS(2256), - [anon_sym_o_GT] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT] = ACTIONS(2256), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [sym__newline] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_err_GT_PIPE] = ACTIONS(2256), + [anon_sym_out_GT_PIPE] = ACTIONS(2256), + [anon_sym_e_GT_PIPE] = ACTIONS(2256), + [anon_sym_o_GT_PIPE] = ACTIONS(2256), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2256), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2256), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2256), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2256), + [anon_sym_RPAREN] = ACTIONS(2256), + [anon_sym_GT2] = ACTIONS(2258), + [anon_sym_DASH2] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2256), + [anon_sym_EQ_GT] = ACTIONS(2256), + [anon_sym_STAR2] = ACTIONS(2258), + [anon_sym_and2] = ACTIONS(2256), + [anon_sym_xor2] = ACTIONS(2256), + [anon_sym_or2] = ACTIONS(2256), + [anon_sym_not_DASHin2] = ACTIONS(2256), + [anon_sym_has2] = ACTIONS(2256), + [anon_sym_not_DASHhas2] = ACTIONS(2256), + [anon_sym_starts_DASHwith2] = ACTIONS(2256), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2256), + [anon_sym_ends_DASHwith2] = ACTIONS(2256), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2256), + [anon_sym_EQ_EQ2] = ACTIONS(2256), + [anon_sym_BANG_EQ2] = ACTIONS(2256), + [anon_sym_LT2] = ACTIONS(2258), + [anon_sym_LT_EQ2] = ACTIONS(2256), + [anon_sym_GT_EQ2] = ACTIONS(2256), + [anon_sym_EQ_TILDE2] = ACTIONS(2256), + [anon_sym_BANG_TILDE2] = ACTIONS(2256), + [anon_sym_like2] = ACTIONS(2256), + [anon_sym_not_DASHlike2] = ACTIONS(2256), + [anon_sym_STAR_STAR2] = ACTIONS(2256), + [anon_sym_PLUS_PLUS2] = ACTIONS(2256), + [anon_sym_SLASH2] = ACTIONS(2258), + [anon_sym_mod2] = ACTIONS(2256), + [anon_sym_SLASH_SLASH2] = ACTIONS(2256), + [anon_sym_PLUS2] = ACTIONS(2258), + [anon_sym_bit_DASHshl2] = ACTIONS(2256), + [anon_sym_bit_DASHshr2] = ACTIONS(2256), + [anon_sym_bit_DASHand2] = ACTIONS(2256), + [anon_sym_bit_DASHxor2] = ACTIONS(2256), + [anon_sym_bit_DASHor2] = ACTIONS(2256), + [anon_sym_err_GT] = ACTIONS(2258), + [anon_sym_out_GT] = ACTIONS(2258), + [anon_sym_e_GT] = ACTIONS(2258), + [anon_sym_o_GT] = ACTIONS(2258), + [anon_sym_err_PLUSout_GT] = ACTIONS(2258), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2258), + [anon_sym_o_PLUSe_GT] = ACTIONS(2258), + [anon_sym_e_PLUSo_GT] = ACTIONS(2258), + [anon_sym_err_GT_GT] = ACTIONS(2256), + [anon_sym_out_GT_GT] = ACTIONS(2256), + [anon_sym_e_GT_GT] = ACTIONS(2256), + [anon_sym_o_GT_GT] = ACTIONS(2256), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2256), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2256), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2256), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2256), [anon_sym_POUND] = ACTIONS(3), }, [STATE(745)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1282), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1296), - [sym__unquoted_anonymous_prefix] = STATE(4499), [sym_comment] = STATE(745), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_in] = ACTIONS(2260), + [sym__newline] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_err_GT_PIPE] = ACTIONS(2260), + [anon_sym_out_GT_PIPE] = ACTIONS(2260), + [anon_sym_e_GT_PIPE] = ACTIONS(2260), + [anon_sym_o_GT_PIPE] = ACTIONS(2260), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2260), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2260), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2260), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2260), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_GT2] = ACTIONS(2262), + [anon_sym_DASH2] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_EQ_GT] = ACTIONS(2260), + [anon_sym_STAR2] = ACTIONS(2262), + [anon_sym_and2] = ACTIONS(2260), + [anon_sym_xor2] = ACTIONS(2260), + [anon_sym_or2] = ACTIONS(2260), + [anon_sym_not_DASHin2] = ACTIONS(2260), + [anon_sym_has2] = ACTIONS(2260), + [anon_sym_not_DASHhas2] = ACTIONS(2260), + [anon_sym_starts_DASHwith2] = ACTIONS(2260), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2260), + [anon_sym_ends_DASHwith2] = ACTIONS(2260), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2260), + [anon_sym_EQ_EQ2] = ACTIONS(2260), + [anon_sym_BANG_EQ2] = ACTIONS(2260), + [anon_sym_LT2] = ACTIONS(2262), + [anon_sym_LT_EQ2] = ACTIONS(2260), + [anon_sym_GT_EQ2] = ACTIONS(2260), + [anon_sym_EQ_TILDE2] = ACTIONS(2260), + [anon_sym_BANG_TILDE2] = ACTIONS(2260), + [anon_sym_like2] = ACTIONS(2260), + [anon_sym_not_DASHlike2] = ACTIONS(2260), + [anon_sym_STAR_STAR2] = ACTIONS(2260), + [anon_sym_PLUS_PLUS2] = ACTIONS(2260), + [anon_sym_SLASH2] = ACTIONS(2262), + [anon_sym_mod2] = ACTIONS(2260), + [anon_sym_SLASH_SLASH2] = ACTIONS(2260), + [anon_sym_PLUS2] = ACTIONS(2262), + [anon_sym_bit_DASHshl2] = ACTIONS(2260), + [anon_sym_bit_DASHshr2] = ACTIONS(2260), + [anon_sym_bit_DASHand2] = ACTIONS(2260), + [anon_sym_bit_DASHxor2] = ACTIONS(2260), + [anon_sym_bit_DASHor2] = ACTIONS(2260), + [anon_sym_err_GT] = ACTIONS(2262), + [anon_sym_out_GT] = ACTIONS(2262), + [anon_sym_e_GT] = ACTIONS(2262), + [anon_sym_o_GT] = ACTIONS(2262), + [anon_sym_err_PLUSout_GT] = ACTIONS(2262), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2262), + [anon_sym_o_PLUSe_GT] = ACTIONS(2262), + [anon_sym_e_PLUSo_GT] = ACTIONS(2262), + [anon_sym_err_GT_GT] = ACTIONS(2260), + [anon_sym_out_GT_GT] = ACTIONS(2260), + [anon_sym_e_GT_GT] = ACTIONS(2260), + [anon_sym_o_GT_GT] = ACTIONS(2260), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2260), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2260), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2260), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2260), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(746)] = { [sym_comment] = STATE(746), - [anon_sym_in] = ACTIONS(2258), - [sym__newline] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_err_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_GT_PIPE] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_GT2] = ACTIONS(2260), - [anon_sym_DASH2] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_EQ_GT] = ACTIONS(2258), - [anon_sym_STAR2] = ACTIONS(2260), - [anon_sym_and2] = ACTIONS(2258), - [anon_sym_xor2] = ACTIONS(2258), - [anon_sym_or2] = ACTIONS(2258), - [anon_sym_not_DASHin2] = ACTIONS(2258), - [anon_sym_has2] = ACTIONS(2258), - [anon_sym_not_DASHhas2] = ACTIONS(2258), - [anon_sym_starts_DASHwith2] = ACTIONS(2258), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2258), - [anon_sym_ends_DASHwith2] = ACTIONS(2258), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2258), - [anon_sym_EQ_EQ2] = ACTIONS(2258), - [anon_sym_BANG_EQ2] = ACTIONS(2258), - [anon_sym_LT2] = ACTIONS(2260), - [anon_sym_LT_EQ2] = ACTIONS(2258), - [anon_sym_GT_EQ2] = ACTIONS(2258), - [anon_sym_EQ_TILDE2] = ACTIONS(2258), - [anon_sym_BANG_TILDE2] = ACTIONS(2258), - [anon_sym_like2] = ACTIONS(2258), - [anon_sym_not_DASHlike2] = ACTIONS(2258), - [anon_sym_STAR_STAR2] = ACTIONS(2258), - [anon_sym_PLUS_PLUS2] = ACTIONS(2258), - [anon_sym_SLASH2] = ACTIONS(2260), - [anon_sym_mod2] = ACTIONS(2258), - [anon_sym_SLASH_SLASH2] = ACTIONS(2258), - [anon_sym_PLUS2] = ACTIONS(2260), - [anon_sym_bit_DASHshl2] = ACTIONS(2258), - [anon_sym_bit_DASHshr2] = ACTIONS(2258), - [anon_sym_bit_DASHand2] = ACTIONS(2258), - [anon_sym_bit_DASHxor2] = ACTIONS(2258), - [anon_sym_bit_DASHor2] = ACTIONS(2258), - [anon_sym_COLON2] = ACTIONS(2258), - [anon_sym_err_GT] = ACTIONS(2260), - [anon_sym_out_GT] = ACTIONS(2260), - [anon_sym_e_GT] = ACTIONS(2260), - [anon_sym_o_GT] = ACTIONS(2260), - [anon_sym_err_PLUSout_GT] = ACTIONS(2260), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2260), - [anon_sym_o_PLUSe_GT] = ACTIONS(2260), - [anon_sym_e_PLUSo_GT] = ACTIONS(2260), - [anon_sym_err_GT_GT] = ACTIONS(2258), - [anon_sym_out_GT_GT] = ACTIONS(2258), - [anon_sym_e_GT_GT] = ACTIONS(2258), - [anon_sym_o_GT_GT] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2258), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_in] = ACTIONS(2264), + [sym__newline] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_PIPE] = ACTIONS(2264), + [anon_sym_err_GT_PIPE] = ACTIONS(2264), + [anon_sym_out_GT_PIPE] = ACTIONS(2264), + [anon_sym_e_GT_PIPE] = ACTIONS(2264), + [anon_sym_o_GT_PIPE] = ACTIONS(2264), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2264), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2264), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2264), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2264), + [anon_sym_RPAREN] = ACTIONS(2264), + [anon_sym_GT2] = ACTIONS(2266), + [anon_sym_DASH2] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_EQ_GT] = ACTIONS(2264), + [anon_sym_STAR2] = ACTIONS(2266), + [anon_sym_and2] = ACTIONS(2264), + [anon_sym_xor2] = ACTIONS(2264), + [anon_sym_or2] = ACTIONS(2264), + [anon_sym_not_DASHin2] = ACTIONS(2264), + [anon_sym_has2] = ACTIONS(2264), + [anon_sym_not_DASHhas2] = ACTIONS(2264), + [anon_sym_starts_DASHwith2] = ACTIONS(2264), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2264), + [anon_sym_ends_DASHwith2] = ACTIONS(2264), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2264), + [anon_sym_EQ_EQ2] = ACTIONS(2264), + [anon_sym_BANG_EQ2] = ACTIONS(2264), + [anon_sym_LT2] = ACTIONS(2266), + [anon_sym_LT_EQ2] = ACTIONS(2264), + [anon_sym_GT_EQ2] = ACTIONS(2264), + [anon_sym_EQ_TILDE2] = ACTIONS(2264), + [anon_sym_BANG_TILDE2] = ACTIONS(2264), + [anon_sym_like2] = ACTIONS(2264), + [anon_sym_not_DASHlike2] = ACTIONS(2264), + [anon_sym_STAR_STAR2] = ACTIONS(2264), + [anon_sym_PLUS_PLUS2] = ACTIONS(2264), + [anon_sym_SLASH2] = ACTIONS(2266), + [anon_sym_mod2] = ACTIONS(2264), + [anon_sym_SLASH_SLASH2] = ACTIONS(2264), + [anon_sym_PLUS2] = ACTIONS(2266), + [anon_sym_bit_DASHshl2] = ACTIONS(2264), + [anon_sym_bit_DASHshr2] = ACTIONS(2264), + [anon_sym_bit_DASHand2] = ACTIONS(2264), + [anon_sym_bit_DASHxor2] = ACTIONS(2264), + [anon_sym_bit_DASHor2] = ACTIONS(2264), + [anon_sym_err_GT] = ACTIONS(2266), + [anon_sym_out_GT] = ACTIONS(2266), + [anon_sym_e_GT] = ACTIONS(2266), + [anon_sym_o_GT] = ACTIONS(2266), + [anon_sym_err_PLUSout_GT] = ACTIONS(2266), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2266), + [anon_sym_o_PLUSe_GT] = ACTIONS(2266), + [anon_sym_e_PLUSo_GT] = ACTIONS(2266), + [anon_sym_err_GT_GT] = ACTIONS(2264), + [anon_sym_out_GT_GT] = ACTIONS(2264), + [anon_sym_e_GT_GT] = ACTIONS(2264), + [anon_sym_o_GT_GT] = ACTIONS(2264), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2264), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2264), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2264), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2264), [anon_sym_POUND] = ACTIONS(3), }, [STATE(747)] = { [sym_comment] = STATE(747), - [anon_sym_in] = ACTIONS(2262), - [sym__newline] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_err_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_GT_PIPE] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2262), - [anon_sym_RPAREN] = ACTIONS(2262), - [anon_sym_GT2] = ACTIONS(2264), - [anon_sym_DASH2] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(2262), - [anon_sym_STAR2] = ACTIONS(2264), - [anon_sym_and2] = ACTIONS(2262), - [anon_sym_xor2] = ACTIONS(2262), - [anon_sym_or2] = ACTIONS(2262), - [anon_sym_not_DASHin2] = ACTIONS(2262), - [anon_sym_has2] = ACTIONS(2262), - [anon_sym_not_DASHhas2] = ACTIONS(2262), - [anon_sym_starts_DASHwith2] = ACTIONS(2262), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2262), - [anon_sym_ends_DASHwith2] = ACTIONS(2262), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2262), - [anon_sym_EQ_EQ2] = ACTIONS(2262), - [anon_sym_BANG_EQ2] = ACTIONS(2262), - [anon_sym_LT2] = ACTIONS(2264), - [anon_sym_LT_EQ2] = ACTIONS(2262), - [anon_sym_GT_EQ2] = ACTIONS(2262), - [anon_sym_EQ_TILDE2] = ACTIONS(2262), - [anon_sym_BANG_TILDE2] = ACTIONS(2262), - [anon_sym_like2] = ACTIONS(2262), - [anon_sym_not_DASHlike2] = ACTIONS(2262), - [anon_sym_STAR_STAR2] = ACTIONS(2262), - [anon_sym_PLUS_PLUS2] = ACTIONS(2262), - [anon_sym_SLASH2] = ACTIONS(2264), - [anon_sym_mod2] = ACTIONS(2262), - [anon_sym_SLASH_SLASH2] = ACTIONS(2262), - [anon_sym_PLUS2] = ACTIONS(2264), - [anon_sym_bit_DASHshl2] = ACTIONS(2262), - [anon_sym_bit_DASHshr2] = ACTIONS(2262), - [anon_sym_bit_DASHand2] = ACTIONS(2262), - [anon_sym_bit_DASHxor2] = ACTIONS(2262), - [anon_sym_bit_DASHor2] = ACTIONS(2262), - [anon_sym_COLON2] = ACTIONS(2262), - [anon_sym_err_GT] = ACTIONS(2264), - [anon_sym_out_GT] = ACTIONS(2264), - [anon_sym_e_GT] = ACTIONS(2264), - [anon_sym_o_GT] = ACTIONS(2264), - [anon_sym_err_PLUSout_GT] = ACTIONS(2264), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2264), - [anon_sym_o_PLUSe_GT] = ACTIONS(2264), - [anon_sym_e_PLUSo_GT] = ACTIONS(2264), - [anon_sym_err_GT_GT] = ACTIONS(2262), - [anon_sym_out_GT_GT] = ACTIONS(2262), - [anon_sym_e_GT_GT] = ACTIONS(2262), - [anon_sym_o_GT_GT] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2262), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(748)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1247), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(748), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_in] = ACTIONS(2268), + [sym__newline] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2268), + [anon_sym_err_GT_PIPE] = ACTIONS(2268), + [anon_sym_out_GT_PIPE] = ACTIONS(2268), + [anon_sym_e_GT_PIPE] = ACTIONS(2268), + [anon_sym_o_GT_PIPE] = ACTIONS(2268), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2268), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2268), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2268), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2268), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_GT2] = ACTIONS(2270), + [anon_sym_DASH2] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_EQ_GT] = ACTIONS(2268), + [anon_sym_STAR2] = ACTIONS(2270), + [anon_sym_and2] = ACTIONS(2268), + [anon_sym_xor2] = ACTIONS(2268), + [anon_sym_or2] = ACTIONS(2268), + [anon_sym_not_DASHin2] = ACTIONS(2268), + [anon_sym_has2] = ACTIONS(2268), + [anon_sym_not_DASHhas2] = ACTIONS(2268), + [anon_sym_starts_DASHwith2] = ACTIONS(2268), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2268), + [anon_sym_ends_DASHwith2] = ACTIONS(2268), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2268), + [anon_sym_EQ_EQ2] = ACTIONS(2268), + [anon_sym_BANG_EQ2] = ACTIONS(2268), + [anon_sym_LT2] = ACTIONS(2270), + [anon_sym_LT_EQ2] = ACTIONS(2268), + [anon_sym_GT_EQ2] = ACTIONS(2268), + [anon_sym_EQ_TILDE2] = ACTIONS(2268), + [anon_sym_BANG_TILDE2] = ACTIONS(2268), + [anon_sym_like2] = ACTIONS(2268), + [anon_sym_not_DASHlike2] = ACTIONS(2268), + [anon_sym_STAR_STAR2] = ACTIONS(2268), + [anon_sym_PLUS_PLUS2] = ACTIONS(2268), + [anon_sym_SLASH2] = ACTIONS(2270), + [anon_sym_mod2] = ACTIONS(2268), + [anon_sym_SLASH_SLASH2] = ACTIONS(2268), + [anon_sym_PLUS2] = ACTIONS(2270), + [anon_sym_bit_DASHshl2] = ACTIONS(2268), + [anon_sym_bit_DASHshr2] = ACTIONS(2268), + [anon_sym_bit_DASHand2] = ACTIONS(2268), + [anon_sym_bit_DASHxor2] = ACTIONS(2268), + [anon_sym_bit_DASHor2] = ACTIONS(2268), + [anon_sym_err_GT] = ACTIONS(2270), + [anon_sym_out_GT] = ACTIONS(2270), + [anon_sym_e_GT] = ACTIONS(2270), + [anon_sym_o_GT] = ACTIONS(2270), + [anon_sym_err_PLUSout_GT] = ACTIONS(2270), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2270), + [anon_sym_o_PLUSe_GT] = ACTIONS(2270), + [anon_sym_e_PLUSo_GT] = ACTIONS(2270), + [anon_sym_err_GT_GT] = ACTIONS(2268), + [anon_sym_out_GT_GT] = ACTIONS(2268), + [anon_sym_e_GT_GT] = ACTIONS(2268), + [anon_sym_o_GT_GT] = ACTIONS(2268), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2268), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2268), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2268), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2268), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(748)] = { + [sym_comment] = STATE(748), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_in] = ACTIONS(2272), + [sym__newline] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_err_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_GT_PIPE] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_GT2] = ACTIONS(2274), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_EQ_GT] = ACTIONS(2272), + [anon_sym_STAR2] = ACTIONS(2274), + [anon_sym_and2] = ACTIONS(2272), + [anon_sym_xor2] = ACTIONS(2272), + [anon_sym_or2] = ACTIONS(2272), + [anon_sym_not_DASHin2] = ACTIONS(2272), + [anon_sym_has2] = ACTIONS(2272), + [anon_sym_not_DASHhas2] = ACTIONS(2272), + [anon_sym_starts_DASHwith2] = ACTIONS(2272), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2272), + [anon_sym_ends_DASHwith2] = ACTIONS(2272), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2272), + [anon_sym_EQ_EQ2] = ACTIONS(2272), + [anon_sym_BANG_EQ2] = ACTIONS(2272), + [anon_sym_LT2] = ACTIONS(2274), + [anon_sym_LT_EQ2] = ACTIONS(2272), + [anon_sym_GT_EQ2] = ACTIONS(2272), + [anon_sym_EQ_TILDE2] = ACTIONS(2272), + [anon_sym_BANG_TILDE2] = ACTIONS(2272), + [anon_sym_like2] = ACTIONS(2272), + [anon_sym_not_DASHlike2] = ACTIONS(2272), + [anon_sym_STAR_STAR2] = ACTIONS(2272), + [anon_sym_PLUS_PLUS2] = ACTIONS(2272), + [anon_sym_SLASH2] = ACTIONS(2274), + [anon_sym_mod2] = ACTIONS(2272), + [anon_sym_SLASH_SLASH2] = ACTIONS(2272), + [anon_sym_PLUS2] = ACTIONS(2274), + [anon_sym_bit_DASHshl2] = ACTIONS(2272), + [anon_sym_bit_DASHshr2] = ACTIONS(2272), + [anon_sym_bit_DASHand2] = ACTIONS(2272), + [anon_sym_bit_DASHxor2] = ACTIONS(2272), + [anon_sym_bit_DASHor2] = ACTIONS(2272), + [anon_sym_err_GT] = ACTIONS(2274), + [anon_sym_out_GT] = ACTIONS(2274), + [anon_sym_e_GT] = ACTIONS(2274), + [anon_sym_o_GT] = ACTIONS(2274), + [anon_sym_err_PLUSout_GT] = ACTIONS(2274), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2274), + [anon_sym_o_PLUSe_GT] = ACTIONS(2274), + [anon_sym_e_PLUSo_GT] = ACTIONS(2274), + [anon_sym_err_GT_GT] = ACTIONS(2272), + [anon_sym_out_GT_GT] = ACTIONS(2272), + [anon_sym_e_GT_GT] = ACTIONS(2272), + [anon_sym_o_GT_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(749)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1251), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(749), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_in] = ACTIONS(2276), + [sym__newline] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_err_GT_PIPE] = ACTIONS(2276), + [anon_sym_out_GT_PIPE] = ACTIONS(2276), + [anon_sym_e_GT_PIPE] = ACTIONS(2276), + [anon_sym_o_GT_PIPE] = ACTIONS(2276), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_GT2] = ACTIONS(2278), + [anon_sym_DASH2] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_EQ_GT] = ACTIONS(2276), + [anon_sym_STAR2] = ACTIONS(2278), + [anon_sym_and2] = ACTIONS(2276), + [anon_sym_xor2] = ACTIONS(2276), + [anon_sym_or2] = ACTIONS(2276), + [anon_sym_not_DASHin2] = ACTIONS(2276), + [anon_sym_has2] = ACTIONS(2276), + [anon_sym_not_DASHhas2] = ACTIONS(2276), + [anon_sym_starts_DASHwith2] = ACTIONS(2276), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), + [anon_sym_ends_DASHwith2] = ACTIONS(2276), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), + [anon_sym_EQ_EQ2] = ACTIONS(2276), + [anon_sym_BANG_EQ2] = ACTIONS(2276), + [anon_sym_LT2] = ACTIONS(2278), + [anon_sym_LT_EQ2] = ACTIONS(2276), + [anon_sym_GT_EQ2] = ACTIONS(2276), + [anon_sym_EQ_TILDE2] = ACTIONS(2276), + [anon_sym_BANG_TILDE2] = ACTIONS(2276), + [anon_sym_like2] = ACTIONS(2276), + [anon_sym_not_DASHlike2] = ACTIONS(2276), + [anon_sym_STAR_STAR2] = ACTIONS(2276), + [anon_sym_PLUS_PLUS2] = ACTIONS(2276), + [anon_sym_SLASH2] = ACTIONS(2278), + [anon_sym_mod2] = ACTIONS(2276), + [anon_sym_SLASH_SLASH2] = ACTIONS(2276), + [anon_sym_PLUS2] = ACTIONS(2278), + [anon_sym_bit_DASHshl2] = ACTIONS(2276), + [anon_sym_bit_DASHshr2] = ACTIONS(2276), + [anon_sym_bit_DASHand2] = ACTIONS(2276), + [anon_sym_bit_DASHxor2] = ACTIONS(2276), + [anon_sym_bit_DASHor2] = ACTIONS(2276), + [anon_sym_COLON2] = ACTIONS(2276), + [anon_sym_err_GT] = ACTIONS(2278), + [anon_sym_out_GT] = ACTIONS(2278), + [anon_sym_e_GT] = ACTIONS(2278), + [anon_sym_o_GT] = ACTIONS(2278), + [anon_sym_err_PLUSout_GT] = ACTIONS(2278), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), + [anon_sym_o_PLUSe_GT] = ACTIONS(2278), + [anon_sym_e_PLUSo_GT] = ACTIONS(2278), + [anon_sym_err_GT_GT] = ACTIONS(2276), + [anon_sym_out_GT_GT] = ACTIONS(2276), + [anon_sym_e_GT_GT] = ACTIONS(2276), + [anon_sym_o_GT_GT] = ACTIONS(2276), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(750)] = { + [sym_comment] = STATE(750), + [anon_sym_in] = ACTIONS(2276), + [sym__newline] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_err_GT_PIPE] = ACTIONS(2276), + [anon_sym_out_GT_PIPE] = ACTIONS(2276), + [anon_sym_e_GT_PIPE] = ACTIONS(2276), + [anon_sym_o_GT_PIPE] = ACTIONS(2276), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_GT2] = ACTIONS(2278), + [anon_sym_DASH2] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_EQ_GT] = ACTIONS(2276), + [anon_sym_STAR2] = ACTIONS(2278), + [anon_sym_and2] = ACTIONS(2276), + [anon_sym_xor2] = ACTIONS(2276), + [anon_sym_or2] = ACTIONS(2276), + [anon_sym_not_DASHin2] = ACTIONS(2276), + [anon_sym_has2] = ACTIONS(2276), + [anon_sym_not_DASHhas2] = ACTIONS(2276), + [anon_sym_starts_DASHwith2] = ACTIONS(2276), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), + [anon_sym_ends_DASHwith2] = ACTIONS(2276), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), + [anon_sym_EQ_EQ2] = ACTIONS(2276), + [anon_sym_BANG_EQ2] = ACTIONS(2276), + [anon_sym_LT2] = ACTIONS(2278), + [anon_sym_LT_EQ2] = ACTIONS(2276), + [anon_sym_GT_EQ2] = ACTIONS(2276), + [anon_sym_EQ_TILDE2] = ACTIONS(2276), + [anon_sym_BANG_TILDE2] = ACTIONS(2276), + [anon_sym_like2] = ACTIONS(2276), + [anon_sym_not_DASHlike2] = ACTIONS(2276), + [anon_sym_STAR_STAR2] = ACTIONS(2276), + [anon_sym_PLUS_PLUS2] = ACTIONS(2276), + [anon_sym_SLASH2] = ACTIONS(2278), + [anon_sym_mod2] = ACTIONS(2276), + [anon_sym_SLASH_SLASH2] = ACTIONS(2276), + [anon_sym_PLUS2] = ACTIONS(2278), + [anon_sym_bit_DASHshl2] = ACTIONS(2276), + [anon_sym_bit_DASHshr2] = ACTIONS(2276), + [anon_sym_bit_DASHand2] = ACTIONS(2276), + [anon_sym_bit_DASHxor2] = ACTIONS(2276), + [anon_sym_bit_DASHor2] = ACTIONS(2276), + [anon_sym_COLON2] = ACTIONS(2276), + [anon_sym_err_GT] = ACTIONS(2278), + [anon_sym_out_GT] = ACTIONS(2278), + [anon_sym_e_GT] = ACTIONS(2278), + [anon_sym_o_GT] = ACTIONS(2278), + [anon_sym_err_PLUSout_GT] = ACTIONS(2278), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), + [anon_sym_o_PLUSe_GT] = ACTIONS(2278), + [anon_sym_e_PLUSo_GT] = ACTIONS(2278), + [anon_sym_err_GT_GT] = ACTIONS(2276), + [anon_sym_out_GT_GT] = ACTIONS(2276), + [anon_sym_e_GT_GT] = ACTIONS(2276), + [anon_sym_o_GT_GT] = ACTIONS(2276), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(751)] = { + [sym_cell_path] = STATE(1296), + [sym_path] = STATE(720), + [sym_comment] = STATE(751), + [aux_sym__where_predicate_lhs_repeat1] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(1896), + [anon_sym_in] = ACTIONS(1896), + [sym__newline] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_err_GT_PIPE] = ACTIONS(1896), + [anon_sym_out_GT_PIPE] = ACTIONS(1896), + [anon_sym_e_GT_PIPE] = ACTIONS(1896), + [anon_sym_o_GT_PIPE] = ACTIONS(1896), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1896), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1896), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1896), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1896), + [anon_sym_GT2] = ACTIONS(1898), + [anon_sym_DASH2] = ACTIONS(1896), + [anon_sym_STAR2] = ACTIONS(1898), + [anon_sym_and2] = ACTIONS(1896), + [anon_sym_xor2] = ACTIONS(1896), + [anon_sym_or2] = ACTIONS(1896), + [anon_sym_not_DASHin2] = ACTIONS(1896), + [anon_sym_has2] = ACTIONS(1896), + [anon_sym_not_DASHhas2] = ACTIONS(1896), + [anon_sym_starts_DASHwith2] = ACTIONS(1896), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1896), + [anon_sym_ends_DASHwith2] = ACTIONS(1896), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1896), + [anon_sym_EQ_EQ2] = ACTIONS(1896), + [anon_sym_BANG_EQ2] = ACTIONS(1896), + [anon_sym_LT2] = ACTIONS(1898), + [anon_sym_LT_EQ2] = ACTIONS(1896), + [anon_sym_GT_EQ2] = ACTIONS(1896), + [anon_sym_EQ_TILDE2] = ACTIONS(1896), + [anon_sym_BANG_TILDE2] = ACTIONS(1896), + [anon_sym_like2] = ACTIONS(1896), + [anon_sym_not_DASHlike2] = ACTIONS(1896), + [anon_sym_STAR_STAR2] = ACTIONS(1896), + [anon_sym_PLUS_PLUS2] = ACTIONS(1896), + [anon_sym_SLASH2] = ACTIONS(1898), + [anon_sym_mod2] = ACTIONS(1896), + [anon_sym_SLASH_SLASH2] = ACTIONS(1896), + [anon_sym_PLUS2] = ACTIONS(1898), + [anon_sym_bit_DASHshl2] = ACTIONS(1896), + [anon_sym_bit_DASHshr2] = ACTIONS(1896), + [anon_sym_bit_DASHand2] = ACTIONS(1896), + [anon_sym_bit_DASHxor2] = ACTIONS(1896), + [anon_sym_bit_DASHor2] = ACTIONS(1896), + [anon_sym_DOT2] = ACTIONS(2280), + [anon_sym_err_GT] = ACTIONS(1898), + [anon_sym_out_GT] = ACTIONS(1898), + [anon_sym_e_GT] = ACTIONS(1898), + [anon_sym_o_GT] = ACTIONS(1898), + [anon_sym_err_PLUSout_GT] = ACTIONS(1898), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1898), + [anon_sym_o_PLUSe_GT] = ACTIONS(1898), + [anon_sym_e_PLUSo_GT] = ACTIONS(1898), + [anon_sym_err_GT_GT] = ACTIONS(1896), + [anon_sym_out_GT_GT] = ACTIONS(1896), + [anon_sym_e_GT_GT] = ACTIONS(1896), + [anon_sym_o_GT_GT] = ACTIONS(1896), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1896), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1896), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1896), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(752)] = { + [sym_comment] = STATE(752), + [anon_sym_in] = ACTIONS(2282), + [sym__newline] = ACTIONS(2282), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_err_GT_PIPE] = ACTIONS(2282), + [anon_sym_out_GT_PIPE] = ACTIONS(2282), + [anon_sym_e_GT_PIPE] = ACTIONS(2282), + [anon_sym_o_GT_PIPE] = ACTIONS(2282), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2282), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2282), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2282), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2282), + [anon_sym_RPAREN] = ACTIONS(2282), + [anon_sym_GT2] = ACTIONS(2284), + [anon_sym_DASH2] = ACTIONS(2282), + [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_RBRACE] = ACTIONS(2282), + [anon_sym_EQ_GT] = ACTIONS(2282), + [anon_sym_STAR2] = ACTIONS(2284), + [anon_sym_and2] = ACTIONS(2282), + [anon_sym_xor2] = ACTIONS(2282), + [anon_sym_or2] = ACTIONS(2282), + [anon_sym_not_DASHin2] = ACTIONS(2282), + [anon_sym_has2] = ACTIONS(2282), + [anon_sym_not_DASHhas2] = ACTIONS(2282), + [anon_sym_starts_DASHwith2] = ACTIONS(2282), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2282), + [anon_sym_ends_DASHwith2] = ACTIONS(2282), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2282), + [anon_sym_EQ_EQ2] = ACTIONS(2282), + [anon_sym_BANG_EQ2] = ACTIONS(2282), + [anon_sym_LT2] = ACTIONS(2284), + [anon_sym_LT_EQ2] = ACTIONS(2282), + [anon_sym_GT_EQ2] = ACTIONS(2282), + [anon_sym_EQ_TILDE2] = ACTIONS(2282), + [anon_sym_BANG_TILDE2] = ACTIONS(2282), + [anon_sym_like2] = ACTIONS(2282), + [anon_sym_not_DASHlike2] = ACTIONS(2282), + [anon_sym_STAR_STAR2] = ACTIONS(2282), + [anon_sym_PLUS_PLUS2] = ACTIONS(2282), + [anon_sym_SLASH2] = ACTIONS(2284), + [anon_sym_mod2] = ACTIONS(2282), + [anon_sym_SLASH_SLASH2] = ACTIONS(2282), + [anon_sym_PLUS2] = ACTIONS(2284), + [anon_sym_bit_DASHshl2] = ACTIONS(2282), + [anon_sym_bit_DASHshr2] = ACTIONS(2282), + [anon_sym_bit_DASHand2] = ACTIONS(2282), + [anon_sym_bit_DASHxor2] = ACTIONS(2282), + [anon_sym_bit_DASHor2] = ACTIONS(2282), + [anon_sym_COLON2] = ACTIONS(2282), + [anon_sym_err_GT] = ACTIONS(2284), + [anon_sym_out_GT] = ACTIONS(2284), + [anon_sym_e_GT] = ACTIONS(2284), + [anon_sym_o_GT] = ACTIONS(2284), + [anon_sym_err_PLUSout_GT] = ACTIONS(2284), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2284), + [anon_sym_o_PLUSe_GT] = ACTIONS(2284), + [anon_sym_e_PLUSo_GT] = ACTIONS(2284), + [anon_sym_err_GT_GT] = ACTIONS(2282), + [anon_sym_out_GT_GT] = ACTIONS(2282), + [anon_sym_e_GT_GT] = ACTIONS(2282), + [anon_sym_o_GT_GT] = ACTIONS(2282), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2282), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2282), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2282), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2282), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(753)] = { + [sym_comment] = STATE(753), + [anon_sym_in] = ACTIONS(2286), + [sym__newline] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_err_GT_PIPE] = ACTIONS(2286), + [anon_sym_out_GT_PIPE] = ACTIONS(2286), + [anon_sym_e_GT_PIPE] = ACTIONS(2286), + [anon_sym_o_GT_PIPE] = ACTIONS(2286), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2286), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2286), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2286), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2286), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_GT2] = ACTIONS(2288), + [anon_sym_DASH2] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(2286), + [anon_sym_STAR2] = ACTIONS(2288), + [anon_sym_and2] = ACTIONS(2286), + [anon_sym_xor2] = ACTIONS(2286), + [anon_sym_or2] = ACTIONS(2286), + [anon_sym_not_DASHin2] = ACTIONS(2286), + [anon_sym_has2] = ACTIONS(2286), + [anon_sym_not_DASHhas2] = ACTIONS(2286), + [anon_sym_starts_DASHwith2] = ACTIONS(2286), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2286), + [anon_sym_ends_DASHwith2] = ACTIONS(2286), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2286), + [anon_sym_EQ_EQ2] = ACTIONS(2286), + [anon_sym_BANG_EQ2] = ACTIONS(2286), + [anon_sym_LT2] = ACTIONS(2288), + [anon_sym_LT_EQ2] = ACTIONS(2286), + [anon_sym_GT_EQ2] = ACTIONS(2286), + [anon_sym_EQ_TILDE2] = ACTIONS(2286), + [anon_sym_BANG_TILDE2] = ACTIONS(2286), + [anon_sym_like2] = ACTIONS(2286), + [anon_sym_not_DASHlike2] = ACTIONS(2286), + [anon_sym_STAR_STAR2] = ACTIONS(2286), + [anon_sym_PLUS_PLUS2] = ACTIONS(2286), + [anon_sym_SLASH2] = ACTIONS(2288), + [anon_sym_mod2] = ACTIONS(2286), + [anon_sym_SLASH_SLASH2] = ACTIONS(2286), + [anon_sym_PLUS2] = ACTIONS(2288), + [anon_sym_bit_DASHshl2] = ACTIONS(2286), + [anon_sym_bit_DASHshr2] = ACTIONS(2286), + [anon_sym_bit_DASHand2] = ACTIONS(2286), + [anon_sym_bit_DASHxor2] = ACTIONS(2286), + [anon_sym_bit_DASHor2] = ACTIONS(2286), + [anon_sym_COLON2] = ACTIONS(2286), + [anon_sym_err_GT] = ACTIONS(2288), + [anon_sym_out_GT] = ACTIONS(2288), + [anon_sym_e_GT] = ACTIONS(2288), + [anon_sym_o_GT] = ACTIONS(2288), + [anon_sym_err_PLUSout_GT] = ACTIONS(2288), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2288), + [anon_sym_o_PLUSe_GT] = ACTIONS(2288), + [anon_sym_e_PLUSo_GT] = ACTIONS(2288), + [anon_sym_err_GT_GT] = ACTIONS(2286), + [anon_sym_out_GT_GT] = ACTIONS(2286), + [anon_sym_e_GT_GT] = ACTIONS(2286), + [anon_sym_o_GT_GT] = ACTIONS(2286), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2286), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2286), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2286), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2286), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(754)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1308), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(463), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1125), + [sym__unquoted_with_expr] = STATE(1313), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(754), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2214), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2226), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(755)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1260), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(951), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(755), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(750)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1254), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(750), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(756)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1265), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(756), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(751)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1203), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(751), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(757)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1140), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(757), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(752)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1133), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(752), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(758)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1146), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(907), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(758), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(753)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1136), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(753), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(759)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1149), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(692), + [sym__unquoted_with_expr] = STATE(908), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(759), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(754)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1138), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), + [STATE(760)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1150), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(697), [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(754), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(760), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(755)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1140), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(755), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(761)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1152), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(705), + [sym__unquoted_with_expr] = STATE(913), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(761), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(756)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(756), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(762)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1153), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(762), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(757)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1142), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(757), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(763)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(917), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(714), + [sym__unquoted_with_expr] = STATE(919), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(763), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(758)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1144), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(758), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(764)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1154), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(701), + [sym__unquoted_with_expr] = STATE(922), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(764), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(759)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1145), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(759), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(765)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1155), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(683), + [sym__unquoted_with_expr] = STATE(925), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(765), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(760)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1147), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(760), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(766)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1157), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(685), + [sym__unquoted_with_expr] = STATE(927), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(766), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1954), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(761)] = { - [sym_cell_path] = STATE(1279), - [sym_path] = STATE(783), - [sym_comment] = STATE(761), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1878), - [anon_sym_in] = ACTIONS(1878), - [sym__newline] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_err_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_GT_PIPE] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), - [anon_sym_GT2] = ACTIONS(1880), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_STAR2] = ACTIONS(1880), - [anon_sym_and2] = ACTIONS(1878), - [anon_sym_xor2] = ACTIONS(1878), - [anon_sym_or2] = ACTIONS(1878), - [anon_sym_not_DASHin2] = ACTIONS(1878), - [anon_sym_has2] = ACTIONS(1878), - [anon_sym_not_DASHhas2] = ACTIONS(1878), - [anon_sym_starts_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1878), - [anon_sym_ends_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1878), - [anon_sym_EQ_EQ2] = ACTIONS(1878), - [anon_sym_BANG_EQ2] = ACTIONS(1878), - [anon_sym_LT2] = ACTIONS(1880), - [anon_sym_LT_EQ2] = ACTIONS(1878), - [anon_sym_GT_EQ2] = ACTIONS(1878), - [anon_sym_EQ_TILDE2] = ACTIONS(1878), - [anon_sym_BANG_TILDE2] = ACTIONS(1878), - [anon_sym_like2] = ACTIONS(1878), - [anon_sym_not_DASHlike2] = ACTIONS(1878), - [anon_sym_STAR_STAR2] = ACTIONS(1878), - [anon_sym_PLUS_PLUS2] = ACTIONS(1878), - [anon_sym_SLASH2] = ACTIONS(1880), - [anon_sym_mod2] = ACTIONS(1878), - [anon_sym_SLASH_SLASH2] = ACTIONS(1878), - [anon_sym_PLUS2] = ACTIONS(1880), - [anon_sym_bit_DASHshl2] = ACTIONS(1878), - [anon_sym_bit_DASHshr2] = ACTIONS(1878), - [anon_sym_bit_DASHand2] = ACTIONS(1878), - [anon_sym_bit_DASHxor2] = ACTIONS(1878), - [anon_sym_bit_DASHor2] = ACTIONS(1878), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1880), - [anon_sym_out_GT] = ACTIONS(1880), - [anon_sym_e_GT] = ACTIONS(1880), - [anon_sym_o_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT] = ACTIONS(1880), - [anon_sym_err_GT_GT] = ACTIONS(1878), - [anon_sym_out_GT_GT] = ACTIONS(1878), - [anon_sym_e_GT_GT] = ACTIONS(1878), - [anon_sym_o_GT_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(762)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1315), + [STATE(767)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1289), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), [sym__val_number_decimal] = STATE(463), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1033), - [sym__unquoted_with_expr] = STATE(1280), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(762), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(983), + [sym__unquoted_with_expr] = STATE(1301), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(767), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2224), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(763)] = { - [sym_comment] = STATE(763), - [anon_sym_in] = ACTIONS(2268), - [sym__newline] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_err_GT_PIPE] = ACTIONS(2268), - [anon_sym_out_GT_PIPE] = ACTIONS(2268), - [anon_sym_e_GT_PIPE] = ACTIONS(2268), - [anon_sym_o_GT_PIPE] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_GT2] = ACTIONS(2270), - [anon_sym_DASH2] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_EQ_GT] = ACTIONS(2268), - [anon_sym_STAR2] = ACTIONS(2270), - [anon_sym_and2] = ACTIONS(2268), - [anon_sym_xor2] = ACTIONS(2268), - [anon_sym_or2] = ACTIONS(2268), - [anon_sym_not_DASHin2] = ACTIONS(2268), - [anon_sym_has2] = ACTIONS(2268), - [anon_sym_not_DASHhas2] = ACTIONS(2268), - [anon_sym_starts_DASHwith2] = ACTIONS(2268), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2268), - [anon_sym_ends_DASHwith2] = ACTIONS(2268), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2268), - [anon_sym_EQ_EQ2] = ACTIONS(2268), - [anon_sym_BANG_EQ2] = ACTIONS(2268), - [anon_sym_LT2] = ACTIONS(2270), - [anon_sym_LT_EQ2] = ACTIONS(2268), - [anon_sym_GT_EQ2] = ACTIONS(2268), - [anon_sym_EQ_TILDE2] = ACTIONS(2268), - [anon_sym_BANG_TILDE2] = ACTIONS(2268), - [anon_sym_like2] = ACTIONS(2268), - [anon_sym_not_DASHlike2] = ACTIONS(2268), - [anon_sym_STAR_STAR2] = ACTIONS(2268), - [anon_sym_PLUS_PLUS2] = ACTIONS(2268), - [anon_sym_SLASH2] = ACTIONS(2270), - [anon_sym_mod2] = ACTIONS(2268), - [anon_sym_SLASH_SLASH2] = ACTIONS(2268), - [anon_sym_PLUS2] = ACTIONS(2270), - [anon_sym_bit_DASHshl2] = ACTIONS(2268), - [anon_sym_bit_DASHshr2] = ACTIONS(2268), - [anon_sym_bit_DASHand2] = ACTIONS(2268), - [anon_sym_bit_DASHxor2] = ACTIONS(2268), - [anon_sym_bit_DASHor2] = ACTIONS(2268), - [anon_sym_COLON2] = ACTIONS(2268), - [anon_sym_err_GT] = ACTIONS(2270), - [anon_sym_out_GT] = ACTIONS(2270), - [anon_sym_e_GT] = ACTIONS(2270), - [anon_sym_o_GT] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT] = ACTIONS(2270), - [anon_sym_err_GT_GT] = ACTIONS(2268), - [anon_sym_out_GT_GT] = ACTIONS(2268), - [anon_sym_e_GT_GT] = ACTIONS(2268), - [anon_sym_o_GT_GT] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2268), + [STATE(768)] = { + [sym_comment] = STATE(768), + [anon_sym_in] = ACTIONS(2290), + [sym__newline] = ACTIONS(2290), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_PIPE] = ACTIONS(2290), + [anon_sym_err_GT_PIPE] = ACTIONS(2290), + [anon_sym_out_GT_PIPE] = ACTIONS(2290), + [anon_sym_e_GT_PIPE] = ACTIONS(2290), + [anon_sym_o_GT_PIPE] = ACTIONS(2290), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), + [anon_sym_RPAREN] = ACTIONS(2290), + [anon_sym_GT2] = ACTIONS(2292), + [anon_sym_DASH2] = ACTIONS(2290), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_EQ_GT] = ACTIONS(2290), + [anon_sym_STAR2] = ACTIONS(2292), + [anon_sym_and2] = ACTIONS(2290), + [anon_sym_xor2] = ACTIONS(2290), + [anon_sym_or2] = ACTIONS(2290), + [anon_sym_not_DASHin2] = ACTIONS(2290), + [anon_sym_has2] = ACTIONS(2290), + [anon_sym_not_DASHhas2] = ACTIONS(2290), + [anon_sym_starts_DASHwith2] = ACTIONS(2290), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2290), + [anon_sym_ends_DASHwith2] = ACTIONS(2290), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2290), + [anon_sym_EQ_EQ2] = ACTIONS(2290), + [anon_sym_BANG_EQ2] = ACTIONS(2290), + [anon_sym_LT2] = ACTIONS(2292), + [anon_sym_LT_EQ2] = ACTIONS(2290), + [anon_sym_GT_EQ2] = ACTIONS(2290), + [anon_sym_EQ_TILDE2] = ACTIONS(2290), + [anon_sym_BANG_TILDE2] = ACTIONS(2290), + [anon_sym_like2] = ACTIONS(2290), + [anon_sym_not_DASHlike2] = ACTIONS(2290), + [anon_sym_STAR_STAR2] = ACTIONS(2290), + [anon_sym_PLUS_PLUS2] = ACTIONS(2290), + [anon_sym_SLASH2] = ACTIONS(2292), + [anon_sym_mod2] = ACTIONS(2290), + [anon_sym_SLASH_SLASH2] = ACTIONS(2290), + [anon_sym_PLUS2] = ACTIONS(2292), + [anon_sym_bit_DASHshl2] = ACTIONS(2290), + [anon_sym_bit_DASHshr2] = ACTIONS(2290), + [anon_sym_bit_DASHand2] = ACTIONS(2290), + [anon_sym_bit_DASHxor2] = ACTIONS(2290), + [anon_sym_bit_DASHor2] = ACTIONS(2290), + [anon_sym_COLON2] = ACTIONS(2290), + [anon_sym_err_GT] = ACTIONS(2292), + [anon_sym_out_GT] = ACTIONS(2292), + [anon_sym_e_GT] = ACTIONS(2292), + [anon_sym_o_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT] = ACTIONS(2292), + [anon_sym_err_GT_GT] = ACTIONS(2290), + [anon_sym_out_GT_GT] = ACTIONS(2290), + [anon_sym_e_GT_GT] = ACTIONS(2290), + [anon_sym_o_GT_GT] = ACTIONS(2290), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2290), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2290), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2290), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(764)] = { - [sym_comment] = STATE(764), - [anon_sym_in] = ACTIONS(2272), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2274), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_EQ_GT] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2274), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_has2] = ACTIONS(2272), - [anon_sym_not_DASHhas2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2274), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_like2] = ACTIONS(2272), - [anon_sym_not_DASHlike2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2274), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2274), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_COLON2] = ACTIONS(2272), - [anon_sym_err_GT] = ACTIONS(2274), - [anon_sym_out_GT] = ACTIONS(2274), - [anon_sym_e_GT] = ACTIONS(2274), - [anon_sym_o_GT] = ACTIONS(2274), - [anon_sym_err_PLUSout_GT] = ACTIONS(2274), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2274), - [anon_sym_o_PLUSe_GT] = ACTIONS(2274), - [anon_sym_e_PLUSo_GT] = ACTIONS(2274), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), + [STATE(769)] = { + [sym_comment] = STATE(769), + [anon_sym_in] = ACTIONS(2294), + [sym__newline] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_err_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_GT_PIPE] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2294), + [anon_sym_GT2] = ACTIONS(2296), + [anon_sym_DASH2] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_EQ_GT] = ACTIONS(2294), + [anon_sym_STAR2] = ACTIONS(2296), + [anon_sym_and2] = ACTIONS(2294), + [anon_sym_xor2] = ACTIONS(2294), + [anon_sym_or2] = ACTIONS(2294), + [anon_sym_not_DASHin2] = ACTIONS(2294), + [anon_sym_has2] = ACTIONS(2294), + [anon_sym_not_DASHhas2] = ACTIONS(2294), + [anon_sym_starts_DASHwith2] = ACTIONS(2294), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2294), + [anon_sym_ends_DASHwith2] = ACTIONS(2294), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2294), + [anon_sym_EQ_EQ2] = ACTIONS(2294), + [anon_sym_BANG_EQ2] = ACTIONS(2294), + [anon_sym_LT2] = ACTIONS(2296), + [anon_sym_LT_EQ2] = ACTIONS(2294), + [anon_sym_GT_EQ2] = ACTIONS(2294), + [anon_sym_EQ_TILDE2] = ACTIONS(2294), + [anon_sym_BANG_TILDE2] = ACTIONS(2294), + [anon_sym_like2] = ACTIONS(2294), + [anon_sym_not_DASHlike2] = ACTIONS(2294), + [anon_sym_STAR_STAR2] = ACTIONS(2294), + [anon_sym_PLUS_PLUS2] = ACTIONS(2294), + [anon_sym_SLASH2] = ACTIONS(2296), + [anon_sym_mod2] = ACTIONS(2294), + [anon_sym_SLASH_SLASH2] = ACTIONS(2294), + [anon_sym_PLUS2] = ACTIONS(2296), + [anon_sym_bit_DASHshl2] = ACTIONS(2294), + [anon_sym_bit_DASHshr2] = ACTIONS(2294), + [anon_sym_bit_DASHand2] = ACTIONS(2294), + [anon_sym_bit_DASHxor2] = ACTIONS(2294), + [anon_sym_bit_DASHor2] = ACTIONS(2294), + [anon_sym_COLON2] = ACTIONS(2294), + [anon_sym_err_GT] = ACTIONS(2296), + [anon_sym_out_GT] = ACTIONS(2296), + [anon_sym_e_GT] = ACTIONS(2296), + [anon_sym_o_GT] = ACTIONS(2296), + [anon_sym_err_PLUSout_GT] = ACTIONS(2296), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2296), + [anon_sym_o_PLUSe_GT] = ACTIONS(2296), + [anon_sym_e_PLUSo_GT] = ACTIONS(2296), + [anon_sym_err_GT_GT] = ACTIONS(2294), + [anon_sym_out_GT_GT] = ACTIONS(2294), + [anon_sym_e_GT_GT] = ACTIONS(2294), + [anon_sym_o_GT_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2294), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(765)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1286), + [STATE(770)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1280), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), [sym__val_number_decimal] = STATE(463), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1345), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(765), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(990), + [sym__unquoted_with_expr] = STATE(1324), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(770), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2224), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(766)] = { - [sym_comment] = STATE(766), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_err_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_GT_PIPE] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2278), - [anon_sym_out_GT] = ACTIONS(2278), - [anon_sym_e_GT] = ACTIONS(2278), - [anon_sym_o_GT] = ACTIONS(2278), - [anon_sym_err_PLUSout_GT] = ACTIONS(2278), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), - [anon_sym_o_PLUSe_GT] = ACTIONS(2278), - [anon_sym_e_PLUSo_GT] = ACTIONS(2278), - [anon_sym_err_GT_GT] = ACTIONS(2276), - [anon_sym_out_GT_GT] = ACTIONS(2276), - [anon_sym_e_GT_GT] = ACTIONS(2276), - [anon_sym_o_GT_GT] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), + [STATE(771)] = { + [sym_comment] = STATE(771), + [anon_sym_in] = ACTIONS(2298), + [sym__newline] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_err_GT_PIPE] = ACTIONS(2298), + [anon_sym_out_GT_PIPE] = ACTIONS(2298), + [anon_sym_e_GT_PIPE] = ACTIONS(2298), + [anon_sym_o_GT_PIPE] = ACTIONS(2298), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), + [anon_sym_RPAREN] = ACTIONS(2298), + [anon_sym_GT2] = ACTIONS(2300), + [anon_sym_DASH2] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_STAR2] = ACTIONS(2300), + [anon_sym_and2] = ACTIONS(2298), + [anon_sym_xor2] = ACTIONS(2298), + [anon_sym_or2] = ACTIONS(2298), + [anon_sym_not_DASHin2] = ACTIONS(2298), + [anon_sym_has2] = ACTIONS(2298), + [anon_sym_not_DASHhas2] = ACTIONS(2298), + [anon_sym_starts_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2298), + [anon_sym_ends_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2298), + [anon_sym_EQ_EQ2] = ACTIONS(2298), + [anon_sym_BANG_EQ2] = ACTIONS(2298), + [anon_sym_LT2] = ACTIONS(2300), + [anon_sym_LT_EQ2] = ACTIONS(2298), + [anon_sym_GT_EQ2] = ACTIONS(2298), + [anon_sym_EQ_TILDE2] = ACTIONS(2298), + [anon_sym_BANG_TILDE2] = ACTIONS(2298), + [anon_sym_like2] = ACTIONS(2298), + [anon_sym_not_DASHlike2] = ACTIONS(2298), + [anon_sym_STAR_STAR2] = ACTIONS(2298), + [anon_sym_PLUS_PLUS2] = ACTIONS(2298), + [anon_sym_SLASH2] = ACTIONS(2300), + [anon_sym_mod2] = ACTIONS(2298), + [anon_sym_SLASH_SLASH2] = ACTIONS(2298), + [anon_sym_PLUS2] = ACTIONS(2300), + [anon_sym_bit_DASHshl2] = ACTIONS(2298), + [anon_sym_bit_DASHshr2] = ACTIONS(2298), + [anon_sym_bit_DASHand2] = ACTIONS(2298), + [anon_sym_bit_DASHxor2] = ACTIONS(2298), + [anon_sym_bit_DASHor2] = ACTIONS(2298), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(2300), + [anon_sym_out_GT] = ACTIONS(2300), + [anon_sym_e_GT] = ACTIONS(2300), + [anon_sym_o_GT] = ACTIONS(2300), + [anon_sym_err_PLUSout_GT] = ACTIONS(2300), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2300), + [anon_sym_o_PLUSe_GT] = ACTIONS(2300), + [anon_sym_e_PLUSo_GT] = ACTIONS(2300), + [anon_sym_err_GT_GT] = ACTIONS(2298), + [anon_sym_out_GT_GT] = ACTIONS(2298), + [anon_sym_e_GT_GT] = ACTIONS(2298), + [anon_sym_o_GT_GT] = ACTIONS(2298), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(767)] = { - [aux_sym__repeat_newline] = STATE(980), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(767), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [STATE(772)] = { + [aux_sym__repeat_newline] = STATE(985), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(772), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(768)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1314), + [STATE(773)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1321), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), [sym__val_number_decimal] = STATE(463), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1284), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(768), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1019), + [sym__unquoted_with_expr] = STATE(1297), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(773), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2224), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(769)] = { - [aux_sym__repeat_newline] = STATE(983), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(769), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(770)] = { - [aux_sym__repeat_newline] = STATE(986), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(770), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(771)] = { - [aux_sym__repeat_newline] = STATE(990), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(771), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(772)] = { - [aux_sym__repeat_newline] = STATE(992), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(772), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(773)] = { - [sym_comment] = STATE(773), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_err_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_GT_PIPE] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2287), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2289), - [anon_sym_out_GT] = ACTIONS(2289), - [anon_sym_e_GT] = ACTIONS(2289), - [anon_sym_o_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT] = ACTIONS(2289), - [anon_sym_err_GT_GT] = ACTIONS(2287), - [anon_sym_out_GT_GT] = ACTIONS(2287), - [anon_sym_e_GT_GT] = ACTIONS(2287), - [anon_sym_o_GT_GT] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(774)] = { - [aux_sym__repeat_newline] = STATE(994), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(987), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(774), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(775)] = { - [aux_sym__repeat_newline] = STATE(996), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(989), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(775), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(776)] = { - [aux_sym__repeat_newline] = STATE(998), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(993), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(776), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(777)] = { - [aux_sym__repeat_newline] = STATE(1002), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(777), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2298), + [sym__newline] = ACTIONS(2306), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_err_GT_PIPE] = ACTIONS(2309), + [anon_sym_out_GT_PIPE] = ACTIONS(2309), + [anon_sym_e_GT_PIPE] = ACTIONS(2309), + [anon_sym_o_GT_PIPE] = ACTIONS(2309), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), + [anon_sym_RPAREN] = ACTIONS(2309), + [anon_sym_GT2] = ACTIONS(2300), + [anon_sym_DASH2] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_STAR2] = ACTIONS(2300), + [anon_sym_and2] = ACTIONS(2298), + [anon_sym_xor2] = ACTIONS(2298), + [anon_sym_or2] = ACTIONS(2298), + [anon_sym_not_DASHin2] = ACTIONS(2298), + [anon_sym_has2] = ACTIONS(2298), + [anon_sym_not_DASHhas2] = ACTIONS(2298), + [anon_sym_starts_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2298), + [anon_sym_ends_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2298), + [anon_sym_EQ_EQ2] = ACTIONS(2298), + [anon_sym_BANG_EQ2] = ACTIONS(2298), + [anon_sym_LT2] = ACTIONS(2300), + [anon_sym_LT_EQ2] = ACTIONS(2298), + [anon_sym_GT_EQ2] = ACTIONS(2298), + [anon_sym_EQ_TILDE2] = ACTIONS(2298), + [anon_sym_BANG_TILDE2] = ACTIONS(2298), + [anon_sym_like2] = ACTIONS(2298), + [anon_sym_not_DASHlike2] = ACTIONS(2298), + [anon_sym_STAR_STAR2] = ACTIONS(2298), + [anon_sym_PLUS_PLUS2] = ACTIONS(2298), + [anon_sym_SLASH2] = ACTIONS(2300), + [anon_sym_mod2] = ACTIONS(2298), + [anon_sym_SLASH_SLASH2] = ACTIONS(2298), + [anon_sym_PLUS2] = ACTIONS(2300), + [anon_sym_bit_DASHshl2] = ACTIONS(2298), + [anon_sym_bit_DASHshr2] = ACTIONS(2298), + [anon_sym_bit_DASHand2] = ACTIONS(2298), + [anon_sym_bit_DASHxor2] = ACTIONS(2298), + [anon_sym_bit_DASHor2] = ACTIONS(2298), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(2311), + [anon_sym_out_GT] = ACTIONS(2311), + [anon_sym_e_GT] = ACTIONS(2311), + [anon_sym_o_GT] = ACTIONS(2311), + [anon_sym_err_PLUSout_GT] = ACTIONS(2311), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), + [anon_sym_o_PLUSe_GT] = ACTIONS(2311), + [anon_sym_e_PLUSo_GT] = ACTIONS(2311), + [anon_sym_err_GT_GT] = ACTIONS(2309), + [anon_sym_out_GT_GT] = ACTIONS(2309), + [anon_sym_e_GT_GT] = ACTIONS(2309), + [anon_sym_o_GT_GT] = ACTIONS(2309), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), [anon_sym_POUND] = ACTIONS(3), }, [STATE(778)] = { - [aux_sym__repeat_newline] = STATE(1004), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(995), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(778), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(779)] = { + [aux_sym__repeat_newline] = STATE(997), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(779), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2291), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(780)] = { - [aux_sym__repeat_newline] = STATE(1007), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(999), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(780), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(781)] = { - [aux_sym__repeat_newline] = STATE(1009), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1001), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(781), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(782)] = { - [aux_sym__repeat_newline] = STATE(1011), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1005), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(782), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(783)] = { + [aux_sym__repeat_newline] = STATE(1008), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(784)] = { [sym_comment] = STATE(784), - [ts_builtin_sym_end] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1522), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [anon_sym_DOT] = ACTIONS(2313), + [aux_sym__immediate_decimal_token5] = ACTIONS(1750), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), [anon_sym_POUND] = ACTIONS(3), }, [STATE(785)] = { - [sym_cell_path] = STATE(1272), - [sym_path] = STATE(783), + [aux_sym__repeat_newline] = STATE(1010), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(785), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1858), - [anon_sym_in] = ACTIONS(1858), - [sym__newline] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_GT2] = ACTIONS(1860), - [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_STAR2] = ACTIONS(1860), - [anon_sym_and2] = ACTIONS(1858), - [anon_sym_xor2] = ACTIONS(1858), - [anon_sym_or2] = ACTIONS(1858), - [anon_sym_not_DASHin2] = ACTIONS(1858), - [anon_sym_has2] = ACTIONS(1858), - [anon_sym_not_DASHhas2] = ACTIONS(1858), - [anon_sym_starts_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), - [anon_sym_ends_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), - [anon_sym_EQ_EQ2] = ACTIONS(1858), - [anon_sym_BANG_EQ2] = ACTIONS(1858), - [anon_sym_LT2] = ACTIONS(1860), - [anon_sym_LT_EQ2] = ACTIONS(1858), - [anon_sym_GT_EQ2] = ACTIONS(1858), - [anon_sym_EQ_TILDE2] = ACTIONS(1858), - [anon_sym_BANG_TILDE2] = ACTIONS(1858), - [anon_sym_like2] = ACTIONS(1858), - [anon_sym_not_DASHlike2] = ACTIONS(1858), - [anon_sym_STAR_STAR2] = ACTIONS(1858), - [anon_sym_PLUS_PLUS2] = ACTIONS(1858), - [anon_sym_SLASH2] = ACTIONS(1860), - [anon_sym_mod2] = ACTIONS(1858), - [anon_sym_SLASH_SLASH2] = ACTIONS(1858), - [anon_sym_PLUS2] = ACTIONS(1860), - [anon_sym_bit_DASHshl2] = ACTIONS(1858), - [anon_sym_bit_DASHshr2] = ACTIONS(1858), - [anon_sym_bit_DASHand2] = ACTIONS(1858), - [anon_sym_bit_DASHxor2] = ACTIONS(1858), - [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1860), - [anon_sym_out_GT] = ACTIONS(1860), - [anon_sym_e_GT] = ACTIONS(1860), - [anon_sym_o_GT] = ACTIONS(1860), - [anon_sym_err_PLUSout_GT] = ACTIONS(1860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), - [anon_sym_o_PLUSe_GT] = ACTIONS(1860), - [anon_sym_e_PLUSo_GT] = ACTIONS(1860), - [anon_sym_err_GT_GT] = ACTIONS(1858), - [anon_sym_out_GT_GT] = ACTIONS(1858), - [anon_sym_e_GT_GT] = ACTIONS(1858), - [anon_sym_o_GT_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(786)] = { + [aux_sym__repeat_newline] = STATE(1012), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(2293), - [aux_sym__immediate_decimal_token5] = ACTIONS(2295), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(787)] = { - [sym_cell_path] = STATE(1273), - [sym_path] = STATE(783), + [aux_sym__repeat_newline] = STATE(1014), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(787), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(788)] = { + [sym_cell_path] = STATE(1275), + [sym_path] = STATE(720), + [sym_comment] = STATE(788), + [aux_sym__where_predicate_lhs_repeat1] = STATE(622), [ts_builtin_sym_end] = ACTIONS(1862), [anon_sym_in] = ACTIONS(1862), [sym__newline] = ACTIONS(1862), @@ -106699,7 +107442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1862), [anon_sym_bit_DASHxor2] = ACTIONS(1862), [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(2266), + [anon_sym_DOT2] = ACTIONS(2280), [anon_sym_err_GT] = ACTIONS(1864), [anon_sym_out_GT] = ACTIONS(1864), [anon_sym_e_GT] = ACTIONS(1864), @@ -106718,98 +107461,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(788)] = { - [aux_sym__repeat_newline] = STATE(912), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(788), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_alias] = ACTIONS(2299), - [anon_sym_let] = ACTIONS(2299), - [anon_sym_mut] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [aux_sym_cmd_identifier_token1] = ACTIONS(2297), - [anon_sym_def] = ACTIONS(2299), - [anon_sym_use] = ACTIONS(2299), - [anon_sym_export_DASHenv] = ACTIONS(2299), - [anon_sym_extern] = ACTIONS(2299), - [anon_sym_module] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_loop] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_else] = ACTIONS(2299), - [anon_sym_try] = ACTIONS(2299), - [anon_sym_catch] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2299), - [anon_sym_false] = ACTIONS(2299), - [anon_sym_null] = ACTIONS(2299), - [aux_sym_cmd_identifier_token3] = ACTIONS(2299), - [aux_sym_cmd_identifier_token4] = ACTIONS(2299), - [aux_sym_cmd_identifier_token5] = ACTIONS(2299), - [sym__newline] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_err_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_GT_PIPE] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2297), - [anon_sym_DASH2] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_DOT_DOT] = ACTIONS(2297), - [anon_sym_where] = ACTIONS(2299), - [aux_sym_expr_unary_token1] = ACTIONS(2299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2299), - [anon_sym_DOT_DOT_LT] = ACTIONS(2299), - [aux_sym__val_number_decimal_token1] = ACTIONS(2297), - [aux_sym__val_number_decimal_token2] = ACTIONS(2299), - [aux_sym__val_number_decimal_token3] = ACTIONS(2299), - [aux_sym__val_number_decimal_token4] = ACTIONS(2299), - [aux_sym__val_number_token1] = ACTIONS(2299), - [aux_sym__val_number_token2] = ACTIONS(2299), - [aux_sym__val_number_token3] = ACTIONS(2299), - [anon_sym_0b] = ACTIONS(2297), - [anon_sym_0o] = ACTIONS(2297), - [anon_sym_0x] = ACTIONS(2297), - [sym_val_date] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(2299), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_BQUOTE] = ACTIONS(2299), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2299), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2299), - [anon_sym_CARET] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2299), - }, [STATE(789)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4300), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4588), - [sym__record_key] = STATE(4971), + [sym_cell_path] = STATE(1316), + [sym_path] = STATE(720), [sym_comment] = STATE(789), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), + [aux_sym__where_predicate_lhs_repeat1] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [sym__newline] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_err_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_GT_PIPE] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), + [anon_sym_GT2] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1888), + [anon_sym_STAR2] = ACTIONS(1890), + [anon_sym_and2] = ACTIONS(1888), + [anon_sym_xor2] = ACTIONS(1888), + [anon_sym_or2] = ACTIONS(1888), + [anon_sym_not_DASHin2] = ACTIONS(1888), + [anon_sym_has2] = ACTIONS(1888), + [anon_sym_not_DASHhas2] = ACTIONS(1888), + [anon_sym_starts_DASHwith2] = ACTIONS(1888), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1888), + [anon_sym_ends_DASHwith2] = ACTIONS(1888), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1888), + [anon_sym_EQ_EQ2] = ACTIONS(1888), + [anon_sym_BANG_EQ2] = ACTIONS(1888), + [anon_sym_LT2] = ACTIONS(1890), + [anon_sym_LT_EQ2] = ACTIONS(1888), + [anon_sym_GT_EQ2] = ACTIONS(1888), + [anon_sym_EQ_TILDE2] = ACTIONS(1888), + [anon_sym_BANG_TILDE2] = ACTIONS(1888), + [anon_sym_like2] = ACTIONS(1888), + [anon_sym_not_DASHlike2] = ACTIONS(1888), + [anon_sym_STAR_STAR2] = ACTIONS(1888), + [anon_sym_PLUS_PLUS2] = ACTIONS(1888), + [anon_sym_SLASH2] = ACTIONS(1890), + [anon_sym_mod2] = ACTIONS(1888), + [anon_sym_SLASH_SLASH2] = ACTIONS(1888), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_bit_DASHshl2] = ACTIONS(1888), + [anon_sym_bit_DASHshr2] = ACTIONS(1888), + [anon_sym_bit_DASHand2] = ACTIONS(1888), + [anon_sym_bit_DASHxor2] = ACTIONS(1888), + [anon_sym_bit_DASHor2] = ACTIONS(1888), + [anon_sym_DOT2] = ACTIONS(2280), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1888), + [anon_sym_out_GT_GT] = ACTIONS(1888), + [anon_sym_e_GT_GT] = ACTIONS(1888), + [anon_sym_o_GT_GT] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(790)] = { + [sym_comment] = STATE(790), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1770), + [anon_sym_STAR2] = ACTIONS(1772), + [anon_sym_and2] = ACTIONS(1770), + [anon_sym_xor2] = ACTIONS(1770), + [anon_sym_or2] = ACTIONS(1770), + [anon_sym_not_DASHin2] = ACTIONS(1770), + [anon_sym_has2] = ACTIONS(1770), + [anon_sym_not_DASHhas2] = ACTIONS(1770), + [anon_sym_starts_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), + [anon_sym_ends_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), + [anon_sym_EQ_EQ2] = ACTIONS(1770), + [anon_sym_BANG_EQ2] = ACTIONS(1770), + [anon_sym_LT2] = ACTIONS(1772), + [anon_sym_LT_EQ2] = ACTIONS(1770), + [anon_sym_GT_EQ2] = ACTIONS(1770), + [anon_sym_EQ_TILDE2] = ACTIONS(1770), + [anon_sym_BANG_TILDE2] = ACTIONS(1770), + [anon_sym_like2] = ACTIONS(1770), + [anon_sym_not_DASHlike2] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_STAR_STAR2] = ACTIONS(1770), + [anon_sym_PLUS_PLUS2] = ACTIONS(1770), + [anon_sym_SLASH2] = ACTIONS(1772), + [anon_sym_mod2] = ACTIONS(1770), + [anon_sym_SLASH_SLASH2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_bit_DASHshl2] = ACTIONS(1770), + [anon_sym_bit_DASHshr2] = ACTIONS(1770), + [anon_sym_bit_DASHand2] = ACTIONS(1770), + [anon_sym_bit_DASHxor2] = ACTIONS(1770), + [anon_sym_bit_DASHor2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(2315), + [aux_sym__immediate_decimal_token5] = ACTIONS(2317), + [anon_sym_err_GT] = ACTIONS(1772), + [anon_sym_out_GT] = ACTIONS(1772), + [anon_sym_e_GT] = ACTIONS(1772), + [anon_sym_o_GT] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT] = ACTIONS(1772), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [sym__unquoted_pattern] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(791)] = { + [aux_sym__repeat_newline] = STATE(916), + [aux_sym__pipe_separator] = STATE(887), + [sym_comment] = STATE(791), + [anon_sym_export] = ACTIONS(2319), + [anon_sym_alias] = ACTIONS(2321), + [anon_sym_let] = ACTIONS(2321), + [anon_sym_mut] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [aux_sym_cmd_identifier_token1] = ACTIONS(2319), + [anon_sym_def] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_export_DASHenv] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym_module] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_loop] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_else] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_catch] = ACTIONS(2321), + [anon_sym_match] = ACTIONS(2321), + [anon_sym_in] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2321), + [anon_sym_false] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2321), + [aux_sym_cmd_identifier_token3] = ACTIONS(2321), + [aux_sym_cmd_identifier_token4] = ACTIONS(2321), + [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym__newline] = ACTIONS(2323), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_err_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_GT_PIPE] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_DASH2] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(2319), + [anon_sym_where] = ACTIONS(2321), + [aux_sym_expr_unary_token1] = ACTIONS(2321), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2321), + [anon_sym_DOT_DOT_LT] = ACTIONS(2321), + [aux_sym__val_number_decimal_token1] = ACTIONS(2319), + [aux_sym__val_number_decimal_token2] = ACTIONS(2321), + [aux_sym__val_number_decimal_token3] = ACTIONS(2321), + [aux_sym__val_number_decimal_token4] = ACTIONS(2321), + [aux_sym__val_number_token1] = ACTIONS(2321), + [aux_sym__val_number_token2] = ACTIONS(2321), + [aux_sym__val_number_token3] = ACTIONS(2321), + [anon_sym_0b] = ACTIONS(2319), + [anon_sym_0o] = ACTIONS(2319), + [anon_sym_0x] = ACTIONS(2319), + [sym_val_date] = ACTIONS(2321), + [anon_sym_DQUOTE] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_BQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2321), + [anon_sym_CARET] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2321), + }, + [STATE(792)] = { + [sym_cell_path] = STATE(1273), + [sym_path] = STATE(720), + [sym_comment] = STATE(792), + [aux_sym__where_predicate_lhs_repeat1] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1882), + [sym__newline] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_err_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_GT_PIPE] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), + [anon_sym_GT2] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1882), + [anon_sym_STAR2] = ACTIONS(1885), + [anon_sym_and2] = ACTIONS(1882), + [anon_sym_xor2] = ACTIONS(1882), + [anon_sym_or2] = ACTIONS(1882), + [anon_sym_not_DASHin2] = ACTIONS(1882), + [anon_sym_has2] = ACTIONS(1882), + [anon_sym_not_DASHhas2] = ACTIONS(1882), + [anon_sym_starts_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), + [anon_sym_ends_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), + [anon_sym_EQ_EQ2] = ACTIONS(1882), + [anon_sym_BANG_EQ2] = ACTIONS(1882), + [anon_sym_LT2] = ACTIONS(1885), + [anon_sym_LT_EQ2] = ACTIONS(1882), + [anon_sym_GT_EQ2] = ACTIONS(1882), + [anon_sym_EQ_TILDE2] = ACTIONS(1882), + [anon_sym_BANG_TILDE2] = ACTIONS(1882), + [anon_sym_like2] = ACTIONS(1882), + [anon_sym_not_DASHlike2] = ACTIONS(1882), + [anon_sym_STAR_STAR2] = ACTIONS(1882), + [anon_sym_PLUS_PLUS2] = ACTIONS(1882), + [anon_sym_SLASH2] = ACTIONS(1885), + [anon_sym_mod2] = ACTIONS(1882), + [anon_sym_SLASH_SLASH2] = ACTIONS(1882), + [anon_sym_PLUS2] = ACTIONS(1885), + [anon_sym_bit_DASHshl2] = ACTIONS(1882), + [anon_sym_bit_DASHshr2] = ACTIONS(1882), + [anon_sym_bit_DASHand2] = ACTIONS(1882), + [anon_sym_bit_DASHxor2] = ACTIONS(1882), + [anon_sym_bit_DASHor2] = ACTIONS(1882), + [anon_sym_DOT2] = ACTIONS(2280), + [anon_sym_err_GT] = ACTIONS(1885), + [anon_sym_out_GT] = ACTIONS(1885), + [anon_sym_e_GT] = ACTIONS(1885), + [anon_sym_o_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT] = ACTIONS(1885), + [anon_sym_err_GT_GT] = ACTIONS(1882), + [anon_sym_out_GT_GT] = ACTIONS(1882), + [anon_sym_e_GT_GT] = ACTIONS(1882), + [anon_sym_o_GT_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(793)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(4349), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4710), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(793), + [aux_sym__match_pattern_record_body_repeat1] = STATE(839), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -106830,3276 +107783,3136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1836), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(790)] = { - [sym_cell_path] = STATE(1292), - [sym_path] = STATE(783), - [sym_comment] = STATE(790), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1850), - [anon_sym_in] = ACTIONS(1850), - [sym__newline] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_err_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_GT_PIPE] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1850), - [anon_sym_GT2] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1850), - [anon_sym_STAR2] = ACTIONS(1853), - [anon_sym_and2] = ACTIONS(1850), - [anon_sym_xor2] = ACTIONS(1850), - [anon_sym_or2] = ACTIONS(1850), - [anon_sym_not_DASHin2] = ACTIONS(1850), - [anon_sym_has2] = ACTIONS(1850), - [anon_sym_not_DASHhas2] = ACTIONS(1850), - [anon_sym_starts_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1850), - [anon_sym_ends_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1850), - [anon_sym_EQ_EQ2] = ACTIONS(1850), - [anon_sym_BANG_EQ2] = ACTIONS(1850), - [anon_sym_LT2] = ACTIONS(1853), - [anon_sym_LT_EQ2] = ACTIONS(1850), - [anon_sym_GT_EQ2] = ACTIONS(1850), - [anon_sym_EQ_TILDE2] = ACTIONS(1850), - [anon_sym_BANG_TILDE2] = ACTIONS(1850), - [anon_sym_like2] = ACTIONS(1850), - [anon_sym_not_DASHlike2] = ACTIONS(1850), - [anon_sym_STAR_STAR2] = ACTIONS(1850), - [anon_sym_PLUS_PLUS2] = ACTIONS(1850), - [anon_sym_SLASH2] = ACTIONS(1853), - [anon_sym_mod2] = ACTIONS(1850), - [anon_sym_SLASH_SLASH2] = ACTIONS(1850), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_bit_DASHshl2] = ACTIONS(1850), - [anon_sym_bit_DASHshr2] = ACTIONS(1850), - [anon_sym_bit_DASHand2] = ACTIONS(1850), - [anon_sym_bit_DASHxor2] = ACTIONS(1850), - [anon_sym_bit_DASHor2] = ACTIONS(1850), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1853), - [anon_sym_out_GT] = ACTIONS(1853), - [anon_sym_e_GT] = ACTIONS(1853), - [anon_sym_o_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT] = ACTIONS(1853), - [anon_sym_err_GT_GT] = ACTIONS(1850), - [anon_sym_out_GT_GT] = ACTIONS(1850), - [anon_sym_e_GT_GT] = ACTIONS(1850), - [anon_sym_o_GT_GT] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(791)] = { - [sym_comment] = STATE(791), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2305), - [aux_sym__immediate_decimal_token5] = ACTIONS(2307), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(792)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(792), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(793)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(793), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(794)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(794), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2162), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2164), + [anon_sym_and2] = ACTIONS(2162), + [anon_sym_xor2] = ACTIONS(2162), + [anon_sym_or2] = ACTIONS(2162), + [anon_sym_not_DASHin2] = ACTIONS(2162), + [anon_sym_has2] = ACTIONS(2162), + [anon_sym_not_DASHhas2] = ACTIONS(2162), + [anon_sym_starts_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), + [anon_sym_ends_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), + [anon_sym_EQ_EQ2] = ACTIONS(2162), + [anon_sym_BANG_EQ2] = ACTIONS(2162), + [anon_sym_LT2] = ACTIONS(2164), + [anon_sym_LT_EQ2] = ACTIONS(2162), + [anon_sym_GT_EQ2] = ACTIONS(2162), + [anon_sym_EQ_TILDE2] = ACTIONS(2162), + [anon_sym_BANG_TILDE2] = ACTIONS(2162), + [anon_sym_like2] = ACTIONS(2162), + [anon_sym_not_DASHlike2] = ACTIONS(2162), + [anon_sym_STAR_STAR2] = ACTIONS(2162), + [anon_sym_PLUS_PLUS2] = ACTIONS(2162), + [anon_sym_SLASH2] = ACTIONS(2164), + [anon_sym_mod2] = ACTIONS(2162), + [anon_sym_SLASH_SLASH2] = ACTIONS(2162), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_bit_DASHshl2] = ACTIONS(2162), + [anon_sym_bit_DASHshr2] = ACTIONS(2162), + [anon_sym_bit_DASHand2] = ACTIONS(2162), + [anon_sym_bit_DASHxor2] = ACTIONS(2162), + [anon_sym_bit_DASHor2] = ACTIONS(2162), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_COLON2] = ACTIONS(1715), + [anon_sym_err_GT] = ACTIONS(2168), + [anon_sym_out_GT] = ACTIONS(2168), + [anon_sym_e_GT] = ACTIONS(2168), + [anon_sym_o_GT] = ACTIONS(2168), + [anon_sym_err_PLUSout_GT] = ACTIONS(2168), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), + [anon_sym_o_PLUSe_GT] = ACTIONS(2168), + [anon_sym_e_PLUSo_GT] = ACTIONS(2168), + [anon_sym_err_GT_GT] = ACTIONS(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), [anon_sym_POUND] = ACTIONS(3), }, [STATE(795)] = { + [aux_sym__repeat_newline] = STATE(1038), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(795), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(2066), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(796)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2186), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(796), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [anon_sym_DOT] = ACTIONS(2331), + [aux_sym__immediate_decimal_token5] = ACTIONS(2333), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [sym__unquoted_pattern] = ACTIONS(1746), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(797)] = { - [aux_sym__repeat_newline] = STATE(1037), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1039), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(797), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(798)] = { - [aux_sym__repeat_newline] = STATE(1038), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1040), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(798), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(799)] = { - [aux_sym__repeat_newline] = STATE(1039), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(799), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [aux_sym__immediate_decimal_token5] = ACTIONS(2136), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [sym__unquoted_pattern] = ACTIONS(1746), [anon_sym_POUND] = ACTIONS(3), }, [STATE(800)] = { - [aux_sym__repeat_newline] = STATE(1040), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(800), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(1852), + [sym__newline] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_err_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_GT_PIPE] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_GT2] = ACTIONS(1854), + [anon_sym_DASH2] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_STAR2] = ACTIONS(1854), + [anon_sym_and2] = ACTIONS(1852), + [anon_sym_xor2] = ACTIONS(1852), + [anon_sym_or2] = ACTIONS(1852), + [anon_sym_not_DASHin2] = ACTIONS(1852), + [anon_sym_has2] = ACTIONS(1852), + [anon_sym_not_DASHhas2] = ACTIONS(1852), + [anon_sym_starts_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), + [anon_sym_ends_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), + [anon_sym_EQ_EQ2] = ACTIONS(1852), + [anon_sym_BANG_EQ2] = ACTIONS(1852), + [anon_sym_LT2] = ACTIONS(1854), + [anon_sym_LT_EQ2] = ACTIONS(1852), + [anon_sym_GT_EQ2] = ACTIONS(1852), + [anon_sym_EQ_TILDE2] = ACTIONS(1852), + [anon_sym_BANG_TILDE2] = ACTIONS(1852), + [anon_sym_like2] = ACTIONS(1852), + [anon_sym_not_DASHlike2] = ACTIONS(1852), + [anon_sym_LPAREN2] = ACTIONS(1852), + [anon_sym_STAR_STAR2] = ACTIONS(1852), + [anon_sym_PLUS_PLUS2] = ACTIONS(1852), + [anon_sym_SLASH2] = ACTIONS(1854), + [anon_sym_mod2] = ACTIONS(1852), + [anon_sym_SLASH_SLASH2] = ACTIONS(1852), + [anon_sym_PLUS2] = ACTIONS(1854), + [anon_sym_bit_DASHshl2] = ACTIONS(1852), + [anon_sym_bit_DASHshr2] = ACTIONS(1852), + [anon_sym_bit_DASHand2] = ACTIONS(1852), + [anon_sym_bit_DASHxor2] = ACTIONS(1852), + [anon_sym_bit_DASHor2] = ACTIONS(1852), + [aux_sym__immediate_decimal_token5] = ACTIONS(2335), + [anon_sym_err_GT] = ACTIONS(1854), + [anon_sym_out_GT] = ACTIONS(1854), + [anon_sym_e_GT] = ACTIONS(1854), + [anon_sym_o_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT] = ACTIONS(1854), + [anon_sym_err_GT_GT] = ACTIONS(1852), + [anon_sym_out_GT_GT] = ACTIONS(1852), + [anon_sym_e_GT_GT] = ACTIONS(1852), + [anon_sym_o_GT_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), + [sym__unquoted_pattern] = ACTIONS(1854), [anon_sym_POUND] = ACTIONS(3), }, [STATE(801)] = { [aux_sym__repeat_newline] = STATE(1041), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(801), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(802)] = { - [aux_sym__repeat_newline] = STATE(1130), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1042), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(802), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(803)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1043), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(803), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(804)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1044), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(804), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(805)] = { - [aux_sym__repeat_newline] = STATE(1052), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1045), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(805), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(806)] = { - [aux_sym__repeat_newline] = STATE(1053), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1048), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(806), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(807)] = { - [aux_sym__repeat_newline] = STATE(1055), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1049), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(807), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(808)] = { + [aux_sym__repeat_newline] = STATE(1051), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(808), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(809)] = { - [aux_sym__repeat_newline] = STATE(1057), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1052), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(809), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(810)] = { - [aux_sym__repeat_newline] = STATE(1060), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1138), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(810), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), [anon_sym_POUND] = ACTIONS(3), }, [STATE(811)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1681), + [aux_sym__repeat_newline] = STATE(1064), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(811), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(812)] = { + [aux_sym__repeat_newline] = STATE(1066), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(812), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(813)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4527), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(813), + [aux_sym_record_body_repeat1] = STATE(881), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(814)] = { + [aux_sym__repeat_newline] = STATE(1068), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(814), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(815)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1694), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1121), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1126), [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(811), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(815), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), + [anon_sym_DOT_DOT_LT] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2357), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(812)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1682), + [STATE(816)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1695), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1123), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(812), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1128), + [sym__unquoted_with_expr] = STATE(1331), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(816), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), + [anon_sym_DOT_DOT_LT] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2357), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(813)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1683), + [STATE(817)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1696), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(813), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1129), + [sym__unquoted_with_expr] = STATE(1336), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(817), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), + [anon_sym_DOT_DOT_LT] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2357), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(814)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1684), + [STATE(818)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1697), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(974), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(814), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1135), + [sym__unquoted_with_expr] = STATE(1271), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(818), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), + [anon_sym_DOT_DOT_LT] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2357), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(815)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1685), + [STATE(819)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1698), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1307), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(815), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1136), + [sym__unquoted_with_expr] = STATE(1351), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(819), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), + [anon_sym_DOT_DOT_LT] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2357), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(816)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1686), + [STATE(820)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1699), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1071), - [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(816), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1030), + [sym__unquoted_with_expr] = STATE(1344), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(820), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), + [anon_sym_DOT_DOT_LT] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2357), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(817)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1687), + [STATE(821)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1700), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1127), - [sym__unquoted_with_expr] = STATE(1321), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(817), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(981), + [sym__unquoted_with_expr] = STATE(1314), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(821), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), + [anon_sym_DOT_DOT_LT] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2357), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(818)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1689), + [STATE(822)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1701), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(972), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(818), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1006), + [sym__unquoted_with_expr] = STATE(1292), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(822), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), + [anon_sym_DOT_DOT_LT] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2357), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(819)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1282), + [STATE(823)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1291), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1296), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(819), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1108), + [sym__unquoted_with_expr] = STATE(1305), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(823), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), + [anon_sym_DOT_DOT_LT] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2357), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(820)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1690), + [STATE(824)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1702), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1016), - [sym__unquoted_with_expr] = STATE(1301), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(820), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1125), + [sym__unquoted_with_expr] = STATE(1313), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(824), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), + [anon_sym_DOT_DOT_LT] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2357), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(821)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1691), + [STATE(825)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1703), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1033), - [sym__unquoted_with_expr] = STATE(1280), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(821), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(983), + [sym__unquoted_with_expr] = STATE(1301), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(825), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), + [anon_sym_DOT_DOT_LT] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2357), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(822)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1692), + [STATE(826)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1705), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1345), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(822), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(990), + [sym__unquoted_with_expr] = STATE(1324), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(826), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), + [anon_sym_DOT_DOT_LT] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2357), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(823)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1693), + [STATE(827)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1706), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1284), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(823), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1019), + [sym__unquoted_with_expr] = STATE(1297), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(827), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), + [anon_sym_DOT_DOT_LT] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2357), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(824)] = { - [aux_sym__repeat_newline] = STATE(1062), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(824), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(825)] = { - [aux_sym__repeat_newline] = STATE(1065), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(825), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(826)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4388), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(826), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(827)] = { - [aux_sym__repeat_newline] = STATE(1067), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(827), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(828)] = { [aux_sym__repeat_newline] = STATE(1070), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(828), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), [anon_sym_POUND] = ACTIONS(3), }, [STATE(829)] = { - [aux_sym__repeat_newline] = STATE(1073), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_cell_path] = STATE(1338), + [sym_path] = STATE(720), [sym_comment] = STATE(829), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [aux_sym__where_predicate_lhs_repeat1] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1900), + [sym__newline] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_err_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_GT_PIPE] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1900), + [anon_sym_GT2] = ACTIONS(1902), + [anon_sym_DASH2] = ACTIONS(1900), + [anon_sym_STAR2] = ACTIONS(1902), + [anon_sym_and2] = ACTIONS(1900), + [anon_sym_xor2] = ACTIONS(1900), + [anon_sym_or2] = ACTIONS(1900), + [anon_sym_not_DASHin2] = ACTIONS(1900), + [anon_sym_has2] = ACTIONS(1900), + [anon_sym_not_DASHhas2] = ACTIONS(1900), + [anon_sym_starts_DASHwith2] = ACTIONS(1900), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1900), + [anon_sym_ends_DASHwith2] = ACTIONS(1900), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1900), + [anon_sym_EQ_EQ2] = ACTIONS(1900), + [anon_sym_BANG_EQ2] = ACTIONS(1900), + [anon_sym_LT2] = ACTIONS(1902), + [anon_sym_LT_EQ2] = ACTIONS(1900), + [anon_sym_GT_EQ2] = ACTIONS(1900), + [anon_sym_EQ_TILDE2] = ACTIONS(1900), + [anon_sym_BANG_TILDE2] = ACTIONS(1900), + [anon_sym_like2] = ACTIONS(1900), + [anon_sym_not_DASHlike2] = ACTIONS(1900), + [anon_sym_STAR_STAR2] = ACTIONS(1900), + [anon_sym_PLUS_PLUS2] = ACTIONS(1900), + [anon_sym_SLASH2] = ACTIONS(1902), + [anon_sym_mod2] = ACTIONS(1900), + [anon_sym_SLASH_SLASH2] = ACTIONS(1900), + [anon_sym_PLUS2] = ACTIONS(1902), + [anon_sym_bit_DASHshl2] = ACTIONS(1900), + [anon_sym_bit_DASHshr2] = ACTIONS(1900), + [anon_sym_bit_DASHand2] = ACTIONS(1900), + [anon_sym_bit_DASHxor2] = ACTIONS(1900), + [anon_sym_bit_DASHor2] = ACTIONS(1900), + [anon_sym_DOT2] = ACTIONS(2280), + [anon_sym_err_GT] = ACTIONS(1902), + [anon_sym_out_GT] = ACTIONS(1902), + [anon_sym_e_GT] = ACTIONS(1902), + [anon_sym_o_GT] = ACTIONS(1902), + [anon_sym_err_PLUSout_GT] = ACTIONS(1902), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1902), + [anon_sym_o_PLUSe_GT] = ACTIONS(1902), + [anon_sym_e_PLUSo_GT] = ACTIONS(1902), + [anon_sym_err_GT_GT] = ACTIONS(1900), + [anon_sym_out_GT_GT] = ACTIONS(1900), + [anon_sym_e_GT_GT] = ACTIONS(1900), + [anon_sym_o_GT_GT] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1900), [anon_sym_POUND] = ACTIONS(3), }, [STATE(830)] = { - [sym_cell_path] = STATE(1320), - [sym_path] = STATE(783), + [aux_sym__repeat_newline] = STATE(1073), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(830), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1882), - [anon_sym_in] = ACTIONS(1882), - [sym__newline] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_err_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_GT_PIPE] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), - [anon_sym_GT2] = ACTIONS(1884), - [anon_sym_DASH2] = ACTIONS(1882), - [anon_sym_STAR2] = ACTIONS(1884), - [anon_sym_and2] = ACTIONS(1882), - [anon_sym_xor2] = ACTIONS(1882), - [anon_sym_or2] = ACTIONS(1882), - [anon_sym_not_DASHin2] = ACTIONS(1882), - [anon_sym_has2] = ACTIONS(1882), - [anon_sym_not_DASHhas2] = ACTIONS(1882), - [anon_sym_starts_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), - [anon_sym_ends_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), - [anon_sym_EQ_EQ2] = ACTIONS(1882), - [anon_sym_BANG_EQ2] = ACTIONS(1882), - [anon_sym_LT2] = ACTIONS(1884), - [anon_sym_LT_EQ2] = ACTIONS(1882), - [anon_sym_GT_EQ2] = ACTIONS(1882), - [anon_sym_EQ_TILDE2] = ACTIONS(1882), - [anon_sym_BANG_TILDE2] = ACTIONS(1882), - [anon_sym_like2] = ACTIONS(1882), - [anon_sym_not_DASHlike2] = ACTIONS(1882), - [anon_sym_STAR_STAR2] = ACTIONS(1882), - [anon_sym_PLUS_PLUS2] = ACTIONS(1882), - [anon_sym_SLASH2] = ACTIONS(1884), - [anon_sym_mod2] = ACTIONS(1882), - [anon_sym_SLASH_SLASH2] = ACTIONS(1882), - [anon_sym_PLUS2] = ACTIONS(1884), - [anon_sym_bit_DASHshl2] = ACTIONS(1882), - [anon_sym_bit_DASHshr2] = ACTIONS(1882), - [anon_sym_bit_DASHand2] = ACTIONS(1882), - [anon_sym_bit_DASHxor2] = ACTIONS(1882), - [anon_sym_bit_DASHor2] = ACTIONS(1882), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1884), - [anon_sym_out_GT] = ACTIONS(1884), - [anon_sym_e_GT] = ACTIONS(1884), - [anon_sym_o_GT] = ACTIONS(1884), - [anon_sym_err_PLUSout_GT] = ACTIONS(1884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), - [anon_sym_o_PLUSe_GT] = ACTIONS(1884), - [anon_sym_e_PLUSo_GT] = ACTIONS(1884), - [anon_sym_err_GT_GT] = ACTIONS(1882), - [anon_sym_out_GT_GT] = ACTIONS(1882), - [anon_sym_e_GT_GT] = ACTIONS(1882), - [anon_sym_o_GT_GT] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), [anon_sym_POUND] = ACTIONS(3), }, [STATE(831)] = { - [aux_sym__repeat_newline] = STATE(1078), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1076), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(831), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), [anon_sym_POUND] = ACTIONS(3), }, [STATE(832)] = { - [aux_sym__repeat_newline] = STATE(1080), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1078), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(832), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), [anon_sym_POUND] = ACTIONS(3), }, [STATE(833)] = { [aux_sym__repeat_newline] = STATE(1082), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(833), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), [anon_sym_POUND] = ACTIONS(3), }, [STATE(834)] = { [aux_sym__repeat_newline] = STATE(1085), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(834), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), [anon_sym_POUND] = ACTIONS(3), }, [STATE(835)] = { - [aux_sym__repeat_newline] = STATE(1088), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1087), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(835), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), [anon_sym_POUND] = ACTIONS(3), }, [STATE(836)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4235), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4578), - [sym__record_key] = STATE(4971), + [aux_sym__repeat_newline] = STATE(1089), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(836), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(837)] = { + [aux_sym__repeat_newline] = STATE(1091), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(837), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(838)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(4275), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4678), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(838), + [aux_sym__match_pattern_record_body_repeat1] = STATE(839), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -110120,3709 +110933,3709 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1836), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1806), }, - [STATE(837)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4581), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4758), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(837), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), - [anon_sym_export] = ACTIONS(2335), - [anon_sym_alias] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_mut] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2338), - [anon_sym_use] = ACTIONS(2338), - [anon_sym_export_DASHenv] = ACTIONS(2338), - [anon_sym_extern] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_loop] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_catch] = ACTIONS(2338), - [anon_sym_match] = ACTIONS(2338), - [anon_sym_in] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [anon_sym_null] = ACTIONS(2344), - [aux_sym_cmd_identifier_token3] = ACTIONS(2347), - [aux_sym_cmd_identifier_token4] = ACTIONS(2347), - [aux_sym_cmd_identifier_token5] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_DASH2] = ACTIONS(2356), - [anon_sym_PLUS2] = ACTIONS(2356), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2362), - [aux_sym__val_number_decimal_token1] = ACTIONS(2365), - [aux_sym__val_number_decimal_token2] = ACTIONS(2368), - [aux_sym__val_number_decimal_token3] = ACTIONS(2371), - [aux_sym__val_number_decimal_token4] = ACTIONS(2371), - [aux_sym__val_number_token1] = ACTIONS(2374), - [aux_sym__val_number_token2] = ACTIONS(2374), - [aux_sym__val_number_token3] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2380), - [anon_sym_BQUOTE] = ACTIONS(2383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2386), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2395), + [STATE(839)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(4543), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4861), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(839), + [aux_sym__match_pattern_record_body_repeat1] = STATE(839), + [anon_sym_export] = ACTIONS(2359), + [anon_sym_alias] = ACTIONS(2362), + [anon_sym_let] = ACTIONS(2362), + [anon_sym_mut] = ACTIONS(2362), + [anon_sym_const] = ACTIONS(2362), + [aux_sym_cmd_identifier_token1] = ACTIONS(2365), + [anon_sym_def] = ACTIONS(2362), + [anon_sym_use] = ACTIONS(2362), + [anon_sym_export_DASHenv] = ACTIONS(2362), + [anon_sym_extern] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_else] = ACTIONS(2362), + [anon_sym_try] = ACTIONS(2362), + [anon_sym_catch] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_in] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(2368), + [anon_sym_false] = ACTIONS(2368), + [anon_sym_null] = ACTIONS(2368), + [aux_sym_cmd_identifier_token3] = ACTIONS(2371), + [aux_sym_cmd_identifier_token4] = ACTIONS(2371), + [aux_sym_cmd_identifier_token5] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2377), + [anon_sym_DASH2] = ACTIONS(2380), + [anon_sym_PLUS2] = ACTIONS(2380), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2386), + [aux_sym__val_number_decimal_token1] = ACTIONS(2389), + [aux_sym__val_number_decimal_token2] = ACTIONS(2392), + [aux_sym__val_number_decimal_token3] = ACTIONS(2395), + [aux_sym__val_number_decimal_token4] = ACTIONS(2395), + [aux_sym__val_number_token1] = ACTIONS(2398), + [aux_sym__val_number_token2] = ACTIONS(2398), + [aux_sym__val_number_token3] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2410), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2419), }, - [STATE(838)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2212), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(838), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(840)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2179), + [sym_expr_parenthesized] = STATE(1988), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2140), + [sym_val_variable] = STATE(1950), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1774), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(951), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(840), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [aux_sym_expr_unary_token1] = ACTIONS(2430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_LT] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(839)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2137), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(839), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(841)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2180), + [sym_expr_parenthesized] = STATE(1988), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2140), + [sym_val_variable] = STATE(1950), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1774), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(841), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [aux_sym_expr_unary_token1] = ACTIONS(2430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_LT] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(840)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2138), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(840), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(842)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2181), + [sym_expr_parenthesized] = STATE(1988), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2140), + [sym_val_variable] = STATE(1950), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1774), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(842), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [aux_sym_expr_unary_token1] = ACTIONS(2430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_LT] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(841)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2139), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(841), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(843)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2182), + [sym_expr_parenthesized] = STATE(1988), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2140), + [sym_val_variable] = STATE(1950), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1774), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(907), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(843), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [aux_sym_expr_unary_token1] = ACTIONS(2430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_LT] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(842)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2140), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(842), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(844)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2183), + [sym_expr_parenthesized] = STATE(1988), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2140), + [sym_val_variable] = STATE(1950), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1774), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(692), + [sym__unquoted_with_expr] = STATE(908), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(844), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [aux_sym_expr_unary_token1] = ACTIONS(2430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_LT] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(843)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2141), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(843), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(845)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2184), + [sym_expr_parenthesized] = STATE(1988), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2140), + [sym_val_variable] = STATE(1950), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1774), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(910), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(845), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [aux_sym_expr_unary_token1] = ACTIONS(2430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_LT] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(844)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2142), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(844), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(846)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2185), + [sym_expr_parenthesized] = STATE(1988), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2140), + [sym_val_variable] = STATE(1950), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1774), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(705), + [sym__unquoted_with_expr] = STATE(913), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(846), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [aux_sym_expr_unary_token1] = ACTIONS(2430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_LT] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(845)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2143), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(845), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(847)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2186), + [sym_expr_parenthesized] = STATE(1988), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2140), + [sym_val_variable] = STATE(1950), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1774), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(847), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [aux_sym_expr_unary_token1] = ACTIONS(2430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_LT] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(846)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(846), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(848)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(917), + [sym_expr_parenthesized] = STATE(1988), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2140), + [sym_val_variable] = STATE(1950), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1774), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(714), + [sym__unquoted_with_expr] = STATE(919), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(848), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [aux_sym_expr_unary_token1] = ACTIONS(2430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_LT] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(847)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2144), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(847), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(849)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2187), + [sym_expr_parenthesized] = STATE(1988), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2140), + [sym_val_variable] = STATE(1950), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1774), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(701), + [sym__unquoted_with_expr] = STATE(922), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(849), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [aux_sym_expr_unary_token1] = ACTIONS(2430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_LT] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(848)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2145), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(848), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(850)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2188), + [sym_expr_parenthesized] = STATE(1988), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2140), + [sym_val_variable] = STATE(1950), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1774), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(683), + [sym__unquoted_with_expr] = STATE(925), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(850), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [aux_sym_expr_unary_token1] = ACTIONS(2430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_LT] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(849)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2146), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(849), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(851)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2189), + [sym_expr_parenthesized] = STATE(1988), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2140), + [sym_val_variable] = STATE(1950), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1774), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(684), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(851), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [aux_sym_expr_unary_token1] = ACTIONS(2430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_LT] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(850)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2147), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(850), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(852)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2190), + [sym_expr_parenthesized] = STATE(1988), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2140), + [sym_val_variable] = STATE(1950), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1774), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(685), + [sym__unquoted_with_expr] = STATE(927), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(852), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [aux_sym_expr_unary_token1] = ACTIONS(2430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_LT] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(851)] = { - [aux_sym__repeat_newline] = STATE(1091), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(851), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(852)] = { - [aux_sym__repeat_newline] = STATE(1092), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(852), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(853)] = { - [aux_sym__repeat_newline] = STATE(1093), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1094), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(853), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(854)] = { - [aux_sym__repeat_newline] = STATE(1094), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1095), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(854), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(855)] = { - [aux_sym__repeat_newline] = STATE(1095), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1096), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(855), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(856)] = { - [aux_sym__repeat_newline] = STATE(1096), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1097), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(856), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(857)] = { - [aux_sym__repeat_newline] = STATE(1097), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1098), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(857), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(858)] = { - [aux_sym__repeat_newline] = STATE(1098), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1099), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(858), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(859)] = { [aux_sym__repeat_newline] = STATE(1100), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(859), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(860)] = { [aux_sym__repeat_newline] = STATE(1101), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(860), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(861)] = { - [aux_sym__repeat_newline] = STATE(1102), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1103), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(861), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(862)] = { - [aux_sym__repeat_newline] = STATE(1106), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1104), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(862), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(863)] = { - [aux_sym__repeat_newline] = STATE(1107), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1105), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(863), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(864)] = { - [sym_cell_path] = STATE(1274), - [sym_path] = STATE(783), + [aux_sym__repeat_newline] = STATE(1106), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(864), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(865)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1665), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(1107), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(865), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(866)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1666), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_cell_path] = STATE(1307), + [sym_path] = STATE(720), [sym_comment] = STATE(866), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym__where_predicate_lhs_repeat1] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [sym__newline] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_err_GT_PIPE] = ACTIONS(1912), + [anon_sym_out_GT_PIPE] = ACTIONS(1912), + [anon_sym_e_GT_PIPE] = ACTIONS(1912), + [anon_sym_o_GT_PIPE] = ACTIONS(1912), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1912), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1912), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1912), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1912), + [anon_sym_GT2] = ACTIONS(1914), + [anon_sym_DASH2] = ACTIONS(1912), + [anon_sym_STAR2] = ACTIONS(1914), + [anon_sym_and2] = ACTIONS(1912), + [anon_sym_xor2] = ACTIONS(1912), + [anon_sym_or2] = ACTIONS(1912), + [anon_sym_not_DASHin2] = ACTIONS(1912), + [anon_sym_has2] = ACTIONS(1912), + [anon_sym_not_DASHhas2] = ACTIONS(1912), + [anon_sym_starts_DASHwith2] = ACTIONS(1912), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1912), + [anon_sym_ends_DASHwith2] = ACTIONS(1912), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1912), + [anon_sym_EQ_EQ2] = ACTIONS(1912), + [anon_sym_BANG_EQ2] = ACTIONS(1912), + [anon_sym_LT2] = ACTIONS(1914), + [anon_sym_LT_EQ2] = ACTIONS(1912), + [anon_sym_GT_EQ2] = ACTIONS(1912), + [anon_sym_EQ_TILDE2] = ACTIONS(1912), + [anon_sym_BANG_TILDE2] = ACTIONS(1912), + [anon_sym_like2] = ACTIONS(1912), + [anon_sym_not_DASHlike2] = ACTIONS(1912), + [anon_sym_STAR_STAR2] = ACTIONS(1912), + [anon_sym_PLUS_PLUS2] = ACTIONS(1912), + [anon_sym_SLASH2] = ACTIONS(1914), + [anon_sym_mod2] = ACTIONS(1912), + [anon_sym_SLASH_SLASH2] = ACTIONS(1912), + [anon_sym_PLUS2] = ACTIONS(1914), + [anon_sym_bit_DASHshl2] = ACTIONS(1912), + [anon_sym_bit_DASHshr2] = ACTIONS(1912), + [anon_sym_bit_DASHand2] = ACTIONS(1912), + [anon_sym_bit_DASHxor2] = ACTIONS(1912), + [anon_sym_bit_DASHor2] = ACTIONS(1912), + [anon_sym_DOT2] = ACTIONS(2280), + [anon_sym_err_GT] = ACTIONS(1914), + [anon_sym_out_GT] = ACTIONS(1914), + [anon_sym_e_GT] = ACTIONS(1914), + [anon_sym_o_GT] = ACTIONS(1914), + [anon_sym_err_PLUSout_GT] = ACTIONS(1914), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1914), + [anon_sym_o_PLUSe_GT] = ACTIONS(1914), + [anon_sym_e_PLUSo_GT] = ACTIONS(1914), + [anon_sym_err_GT_GT] = ACTIONS(1912), + [anon_sym_out_GT_GT] = ACTIONS(1912), + [anon_sym_e_GT_GT] = ACTIONS(1912), + [anon_sym_o_GT_GT] = ACTIONS(1912), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1912), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1912), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1912), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(867)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1667), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4695), + [sym__record_key] = STATE(5341), [sym_comment] = STATE(867), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [aux_sym_record_body_repeat1] = STATE(881), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(868)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), [sym__expr_binary_expression] = STATE(1668), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(951), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(868), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(869)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), [sym__expr_binary_expression] = STATE(1669), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(869), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(870)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), [sym__expr_binary_expression] = STATE(1670), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(870), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(871)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), [sym__expr_binary_expression] = STATE(1671), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(907), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(871), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(872)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), [sym__expr_binary_expression] = STATE(1672), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(692), + [sym__unquoted_with_expr] = STATE(908), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(872), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(873)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1673), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(910), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(873), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(874)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1673), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1674), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(705), + [sym__unquoted_with_expr] = STATE(913), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(874), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(875)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1674), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1675), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(875), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(876)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1675), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(917), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(714), [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(876), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(877)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), [sym__expr_binary_expression] = STATE(1676), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(701), [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(877), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(878)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4551), - [sym__record_key] = STATE(4971), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1677), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(683), + [sym__unquoted_with_expr] = STATE(925), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(878), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2069), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(879)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4727), - [sym__record_key] = STATE(4971), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1678), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(684), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(879), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_alias] = ACTIONS(2425), - [anon_sym_let] = ACTIONS(2425), - [anon_sym_mut] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [aux_sym_cmd_identifier_token1] = ACTIONS(2428), - [anon_sym_def] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_export_DASHenv] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym_module] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_loop] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_catch] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [anon_sym_null] = ACTIONS(2431), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_DASH2] = ACTIONS(2443), - [anon_sym_PLUS2] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2446), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), - [aux_sym__val_number_decimal_token1] = ACTIONS(2452), - [aux_sym__val_number_decimal_token2] = ACTIONS(2455), - [aux_sym__val_number_decimal_token3] = ACTIONS(2458), - [aux_sym__val_number_decimal_token4] = ACTIONS(2458), - [aux_sym__val_number_token1] = ACTIONS(2461), - [aux_sym__val_number_token2] = ACTIONS(2461), - [aux_sym__val_number_token3] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_BQUOTE] = ACTIONS(2470), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2479), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2069), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(880)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2185), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1679), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(685), + [sym__unquoted_with_expr] = STATE(927), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(880), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2079), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(881)] = { - [aux_sym__repeat_newline] = STATE(3365), - [aux_sym__pipe_separator] = STATE(885), + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4853), + [sym__record_key] = STATE(5341), [sym_comment] = STATE(881), - [anon_sym_export] = ACTIONS(2485), - [anon_sym_alias] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_mut] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [aux_sym_cmd_identifier_token1] = ACTIONS(2485), - [anon_sym_def] = ACTIONS(2487), - [anon_sym_use] = ACTIONS(2487), - [anon_sym_export_DASHenv] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_loop] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_catch] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_in] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2487), - [anon_sym_false] = ACTIONS(2487), - [anon_sym_null] = ACTIONS(2487), - [aux_sym_cmd_identifier_token3] = ACTIONS(2487), - [aux_sym_cmd_identifier_token4] = ACTIONS(2487), - [aux_sym_cmd_identifier_token5] = ACTIONS(2487), - [sym__newline] = ACTIONS(2489), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_err_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_GT_PIPE] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_DOLLAR] = ACTIONS(2485), - [anon_sym_DASH2] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_where] = ACTIONS(2487), - [aux_sym_expr_unary_token1] = ACTIONS(2487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2487), - [anon_sym_DOT_DOT_LT] = ACTIONS(2487), - [aux_sym__val_number_decimal_token1] = ACTIONS(2485), - [aux_sym__val_number_decimal_token2] = ACTIONS(2487), - [aux_sym__val_number_decimal_token3] = ACTIONS(2487), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2487), - [aux_sym__val_number_token2] = ACTIONS(2487), - [aux_sym__val_number_token3] = ACTIONS(2487), - [anon_sym_0b] = ACTIONS(2485), - [anon_sym_0o] = ACTIONS(2485), - [anon_sym_0x] = ACTIONS(2485), - [sym_val_date] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_BQUOTE] = ACTIONS(2487), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2487), + [aux_sym_record_body_repeat1] = STATE(881), + [anon_sym_export] = ACTIONS(2446), + [anon_sym_alias] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [aux_sym_cmd_identifier_token1] = ACTIONS(2452), + [anon_sym_def] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_export_DASHenv] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_loop] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_catch] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_null] = ACTIONS(2455), + [aux_sym_cmd_identifier_token3] = ACTIONS(2458), + [aux_sym_cmd_identifier_token4] = ACTIONS(2458), + [aux_sym_cmd_identifier_token5] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_DOLLAR] = ACTIONS(2464), + [anon_sym_DASH2] = ACTIONS(2467), + [anon_sym_PLUS2] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2470), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2473), + [aux_sym__val_number_decimal_token1] = ACTIONS(2476), + [aux_sym__val_number_decimal_token2] = ACTIONS(2479), + [aux_sym__val_number_decimal_token3] = ACTIONS(2482), + [aux_sym__val_number_decimal_token4] = ACTIONS(2482), + [aux_sym__val_number_token1] = ACTIONS(2485), + [aux_sym__val_number_token2] = ACTIONS(2485), + [aux_sym__val_number_token3] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2488), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_BQUOTE] = ACTIONS(2494), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2503), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2506), }, [STATE(882)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1323), + [aux_sym__repeat_newline] = STATE(3546), + [aux_sym__pipe_separator] = STATE(887), + [sym_comment] = STATE(882), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_alias] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_mut] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [aux_sym_cmd_identifier_token1] = ACTIONS(2509), + [anon_sym_def] = ACTIONS(2511), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_export_DASHenv] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym_module] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_loop] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_catch] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_in] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2511), + [anon_sym_false] = ACTIONS(2511), + [anon_sym_null] = ACTIONS(2511), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [sym__newline] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_err_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_GT_PIPE] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_DOLLAR] = ACTIONS(2509), + [anon_sym_DASH2] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_DOT_DOT] = ACTIONS(2509), + [anon_sym_where] = ACTIONS(2511), + [aux_sym_expr_unary_token1] = ACTIONS(2511), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2511), + [aux_sym__val_number_decimal_token4] = ACTIONS(2511), + [aux_sym__val_number_token1] = ACTIONS(2511), + [aux_sym__val_number_token2] = ACTIONS(2511), + [aux_sym__val_number_token3] = ACTIONS(2511), + [anon_sym_0b] = ACTIONS(2509), + [anon_sym_0o] = ACTIONS(2509), + [anon_sym_0x] = ACTIONS(2509), + [sym_val_date] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_BQUOTE] = ACTIONS(2511), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_CARET] = ACTIONS(2511), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2511), + }, + [STATE(883)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1325), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), [sym__val_number_decimal] = STATE(463), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1121), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1126), [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(882), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(883), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2224), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(883)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1330), + [STATE(884)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1328), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), [sym__val_number_decimal] = STATE(463), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1123), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(883), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1128), + [sym__unquoted_with_expr] = STATE(1331), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(884), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2224), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(884)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1335), + [STATE(885)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1334), [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), [sym__val_number_decimal] = STATE(463), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(884), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1129), + [sym__unquoted_with_expr] = STATE(1336), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(885), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2224), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(885)] = { - [aux_sym__repeat_newline] = STATE(3365), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(885), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [sym__newline] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_err_GT_PIPE] = ACTIONS(2498), - [anon_sym_out_GT_PIPE] = ACTIONS(2498), - [anon_sym_e_GT_PIPE] = ACTIONS(2498), - [anon_sym_o_GT_PIPE] = ACTIONS(2498), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2498), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2498), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2498), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2491), - [anon_sym_where] = ACTIONS(2493), - [aux_sym_expr_unary_token1] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2493), - [anon_sym_DOT_DOT_LT] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2491), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2491), - [anon_sym_0x] = ACTIONS(2491), - [sym_val_date] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_BQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_CARET] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2493), - }, [STATE(886)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1347), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(463), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1135), + [sym__unquoted_with_expr] = STATE(1271), + [sym__unquoted_anonymous_prefix] = STATE(4744), [sym_comment] = STATE(886), - [anon_sym_in] = ACTIONS(2501), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2501), - [anon_sym_xor2] = ACTIONS(2501), - [anon_sym_or2] = ACTIONS(2501), - [anon_sym_not_DASHin2] = ACTIONS(2501), - [anon_sym_has2] = ACTIONS(2501), - [anon_sym_not_DASHhas2] = ACTIONS(2501), - [anon_sym_starts_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2501), - [anon_sym_ends_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2501), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2501), - [anon_sym_like2] = ACTIONS(2501), - [anon_sym_not_DASHlike2] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_STAR_STAR2] = ACTIONS(2501), - [anon_sym_PLUS_PLUS2] = ACTIONS(2501), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2501), - [anon_sym_SLASH_SLASH2] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2501), - [anon_sym_bit_DASHshr2] = ACTIONS(2501), - [anon_sym_bit_DASHand2] = ACTIONS(2501), - [anon_sym_bit_DASHxor2] = ACTIONS(2501), - [anon_sym_bit_DASHor2] = ACTIONS(2501), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [sym__unquoted_pattern] = ACTIONS(2503), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2214), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(887)] = { + [aux_sym__repeat_newline] = STATE(3546), + [aux_sym__pipe_separator] = STATE(887), [sym_comment] = STATE(887), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2505), - [sym__newline] = ACTIONS(2505), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_err_GT_PIPE] = ACTIONS(2505), - [anon_sym_out_GT_PIPE] = ACTIONS(2505), - [anon_sym_e_GT_PIPE] = ACTIONS(2505), - [anon_sym_o_GT_PIPE] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2505), - [anon_sym_RPAREN] = ACTIONS(2505), - [anon_sym_GT2] = ACTIONS(2507), - [anon_sym_DASH2] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_EQ_GT] = ACTIONS(2505), - [anon_sym_STAR2] = ACTIONS(2507), - [anon_sym_and2] = ACTIONS(2505), - [anon_sym_xor2] = ACTIONS(2505), - [anon_sym_or2] = ACTIONS(2505), - [anon_sym_not_DASHin2] = ACTIONS(2505), - [anon_sym_has2] = ACTIONS(2505), - [anon_sym_not_DASHhas2] = ACTIONS(2505), - [anon_sym_starts_DASHwith2] = ACTIONS(2505), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2505), - [anon_sym_ends_DASHwith2] = ACTIONS(2505), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2505), - [anon_sym_EQ_EQ2] = ACTIONS(2505), - [anon_sym_BANG_EQ2] = ACTIONS(2505), - [anon_sym_LT2] = ACTIONS(2507), - [anon_sym_LT_EQ2] = ACTIONS(2505), - [anon_sym_GT_EQ2] = ACTIONS(2505), - [anon_sym_EQ_TILDE2] = ACTIONS(2505), - [anon_sym_BANG_TILDE2] = ACTIONS(2505), - [anon_sym_like2] = ACTIONS(2505), - [anon_sym_not_DASHlike2] = ACTIONS(2505), - [anon_sym_STAR_STAR2] = ACTIONS(2505), - [anon_sym_PLUS_PLUS2] = ACTIONS(2505), - [anon_sym_SLASH2] = ACTIONS(2507), - [anon_sym_mod2] = ACTIONS(2505), - [anon_sym_SLASH_SLASH2] = ACTIONS(2505), - [anon_sym_PLUS2] = ACTIONS(2507), - [anon_sym_bit_DASHshl2] = ACTIONS(2505), - [anon_sym_bit_DASHshr2] = ACTIONS(2505), - [anon_sym_bit_DASHand2] = ACTIONS(2505), - [anon_sym_bit_DASHxor2] = ACTIONS(2505), - [anon_sym_bit_DASHor2] = ACTIONS(2505), - [anon_sym_err_GT] = ACTIONS(2507), - [anon_sym_out_GT] = ACTIONS(2507), - [anon_sym_e_GT] = ACTIONS(2507), - [anon_sym_o_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT] = ACTIONS(2507), - [anon_sym_err_GT_GT] = ACTIONS(2505), - [anon_sym_out_GT_GT] = ACTIONS(2505), - [anon_sym_e_GT_GT] = ACTIONS(2505), - [anon_sym_o_GT_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2515), + [anon_sym_alias] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_mut] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [aux_sym_cmd_identifier_token1] = ACTIONS(2515), + [anon_sym_def] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_export_DASHenv] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_loop] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_catch] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_in] = ACTIONS(2515), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2517), + [aux_sym_cmd_identifier_token3] = ACTIONS(2517), + [aux_sym_cmd_identifier_token4] = ACTIONS(2517), + [aux_sym_cmd_identifier_token5] = ACTIONS(2517), + [sym__newline] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2522), + [anon_sym_err_GT_PIPE] = ACTIONS(2522), + [anon_sym_out_GT_PIPE] = ACTIONS(2522), + [anon_sym_e_GT_PIPE] = ACTIONS(2522), + [anon_sym_o_GT_PIPE] = ACTIONS(2522), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2522), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2522), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2522), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_DOLLAR] = ACTIONS(2515), + [anon_sym_DASH2] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_DOT_DOT] = ACTIONS(2515), + [anon_sym_where] = ACTIONS(2517), + [aux_sym_expr_unary_token1] = ACTIONS(2517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2515), + [aux_sym__val_number_decimal_token2] = ACTIONS(2517), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(2517), + [aux_sym__val_number_token2] = ACTIONS(2517), + [aux_sym__val_number_token3] = ACTIONS(2517), + [anon_sym_0b] = ACTIONS(2515), + [anon_sym_0o] = ACTIONS(2515), + [anon_sym_0x] = ACTIONS(2515), + [sym_val_date] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2517), + [anon_sym_BQUOTE] = ACTIONS(2517), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_CARET] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2517), }, [STATE(888)] = { [sym_comment] = STATE(888), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_EQ_GT] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(2525), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_RPAREN] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2525), + [anon_sym_xor2] = ACTIONS(2525), + [anon_sym_or2] = ACTIONS(2525), + [anon_sym_not_DASHin2] = ACTIONS(2525), + [anon_sym_has2] = ACTIONS(2525), + [anon_sym_not_DASHhas2] = ACTIONS(2525), + [anon_sym_starts_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), + [anon_sym_ends_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2525), + [anon_sym_like2] = ACTIONS(2525), + [anon_sym_not_DASHlike2] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2525), + [anon_sym_STAR_STAR2] = ACTIONS(2525), + [anon_sym_PLUS_PLUS2] = ACTIONS(2525), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2525), + [anon_sym_SLASH_SLASH2] = ACTIONS(2525), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2525), + [anon_sym_bit_DASHshr2] = ACTIONS(2525), + [anon_sym_bit_DASHand2] = ACTIONS(2525), + [anon_sym_bit_DASHxor2] = ACTIONS(2525), + [anon_sym_bit_DASHor2] = ACTIONS(2525), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [sym__unquoted_pattern] = ACTIONS(2527), [anon_sym_POUND] = ACTIONS(3), }, [STATE(889)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2169), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(889), + [anon_sym_if] = ACTIONS(2529), + [anon_sym_in] = ACTIONS(2529), + [sym__newline] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(2529), + [anon_sym_err_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_GT_PIPE] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2529), + [anon_sym_RPAREN] = ACTIONS(2529), + [anon_sym_GT2] = ACTIONS(2531), + [anon_sym_DASH2] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_EQ_GT] = ACTIONS(2529), + [anon_sym_STAR2] = ACTIONS(2531), + [anon_sym_and2] = ACTIONS(2529), + [anon_sym_xor2] = ACTIONS(2529), + [anon_sym_or2] = ACTIONS(2529), + [anon_sym_not_DASHin2] = ACTIONS(2529), + [anon_sym_has2] = ACTIONS(2529), + [anon_sym_not_DASHhas2] = ACTIONS(2529), + [anon_sym_starts_DASHwith2] = ACTIONS(2529), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2529), + [anon_sym_ends_DASHwith2] = ACTIONS(2529), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2529), + [anon_sym_EQ_EQ2] = ACTIONS(2529), + [anon_sym_BANG_EQ2] = ACTIONS(2529), + [anon_sym_LT2] = ACTIONS(2531), + [anon_sym_LT_EQ2] = ACTIONS(2529), + [anon_sym_GT_EQ2] = ACTIONS(2529), + [anon_sym_EQ_TILDE2] = ACTIONS(2529), + [anon_sym_BANG_TILDE2] = ACTIONS(2529), + [anon_sym_like2] = ACTIONS(2529), + [anon_sym_not_DASHlike2] = ACTIONS(2529), + [anon_sym_STAR_STAR2] = ACTIONS(2529), + [anon_sym_PLUS_PLUS2] = ACTIONS(2529), + [anon_sym_SLASH2] = ACTIONS(2531), + [anon_sym_mod2] = ACTIONS(2529), + [anon_sym_SLASH_SLASH2] = ACTIONS(2529), + [anon_sym_PLUS2] = ACTIONS(2531), + [anon_sym_bit_DASHshl2] = ACTIONS(2529), + [anon_sym_bit_DASHshr2] = ACTIONS(2529), + [anon_sym_bit_DASHand2] = ACTIONS(2529), + [anon_sym_bit_DASHxor2] = ACTIONS(2529), + [anon_sym_bit_DASHor2] = ACTIONS(2529), + [anon_sym_err_GT] = ACTIONS(2531), + [anon_sym_out_GT] = ACTIONS(2531), + [anon_sym_e_GT] = ACTIONS(2531), + [anon_sym_o_GT] = ACTIONS(2531), + [anon_sym_err_PLUSout_GT] = ACTIONS(2531), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2531), + [anon_sym_o_PLUSe_GT] = ACTIONS(2531), + [anon_sym_e_PLUSo_GT] = ACTIONS(2531), + [anon_sym_err_GT_GT] = ACTIONS(2529), + [anon_sym_out_GT_GT] = ACTIONS(2529), + [anon_sym_e_GT_GT] = ACTIONS(2529), + [anon_sym_o_GT_GT] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2529), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(890)] = { + [sym_comment] = STATE(890), + [anon_sym_if] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(891)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2212), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(951), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(891), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -113831,68 +114644,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(890)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2170), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(890), + [STATE(892)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2213), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(892), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -113901,68 +114714,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(891)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2172), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(891), + [STATE(893)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(893), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -113971,68 +114784,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(892)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2175), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(892), + [STATE(894)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(907), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(894), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -114041,68 +114854,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(893)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2177), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(893), + [STATE(895)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(692), + [sym__unquoted_with_expr] = STATE(908), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(895), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -114111,68 +114924,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(894)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2184), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(894), + [STATE(896)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(910), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(896), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -114181,1278 +114994,594 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1934), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(895)] = { - [sym_comment] = STATE(895), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(2509), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(896)] = { - [sym_comment] = STATE(896), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_EQ_GT] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(897)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(705), + [sym__unquoted_with_expr] = STATE(913), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(897), - [anon_sym_in] = ACTIONS(2511), - [sym__newline] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2511), - [anon_sym_err_GT_PIPE] = ACTIONS(2511), - [anon_sym_out_GT_PIPE] = ACTIONS(2511), - [anon_sym_e_GT_PIPE] = ACTIONS(2511), - [anon_sym_o_GT_PIPE] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2511), - [anon_sym_RPAREN] = ACTIONS(2511), - [anon_sym_GT2] = ACTIONS(2513), - [anon_sym_DASH2] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_EQ_GT] = ACTIONS(2511), - [anon_sym_STAR2] = ACTIONS(2513), - [anon_sym_and2] = ACTIONS(2511), - [anon_sym_xor2] = ACTIONS(2511), - [anon_sym_or2] = ACTIONS(2511), - [anon_sym_not_DASHin2] = ACTIONS(2511), - [anon_sym_has2] = ACTIONS(2511), - [anon_sym_not_DASHhas2] = ACTIONS(2511), - [anon_sym_starts_DASHwith2] = ACTIONS(2511), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2511), - [anon_sym_ends_DASHwith2] = ACTIONS(2511), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2511), - [anon_sym_EQ_EQ2] = ACTIONS(2511), - [anon_sym_BANG_EQ2] = ACTIONS(2511), - [anon_sym_LT2] = ACTIONS(2513), - [anon_sym_LT_EQ2] = ACTIONS(2511), - [anon_sym_GT_EQ2] = ACTIONS(2511), - [anon_sym_EQ_TILDE2] = ACTIONS(2511), - [anon_sym_BANG_TILDE2] = ACTIONS(2511), - [anon_sym_like2] = ACTIONS(2511), - [anon_sym_not_DASHlike2] = ACTIONS(2511), - [anon_sym_STAR_STAR2] = ACTIONS(2511), - [anon_sym_PLUS_PLUS2] = ACTIONS(2511), - [anon_sym_SLASH2] = ACTIONS(2513), - [anon_sym_mod2] = ACTIONS(2511), - [anon_sym_SLASH_SLASH2] = ACTIONS(2511), - [anon_sym_PLUS2] = ACTIONS(2513), - [anon_sym_bit_DASHshl2] = ACTIONS(2511), - [anon_sym_bit_DASHshr2] = ACTIONS(2511), - [anon_sym_bit_DASHand2] = ACTIONS(2511), - [anon_sym_bit_DASHxor2] = ACTIONS(2511), - [anon_sym_bit_DASHor2] = ACTIONS(2511), - [anon_sym_err_GT] = ACTIONS(2513), - [anon_sym_out_GT] = ACTIONS(2513), - [anon_sym_e_GT] = ACTIONS(2513), - [anon_sym_o_GT] = ACTIONS(2513), - [anon_sym_err_PLUSout_GT] = ACTIONS(2513), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2513), - [anon_sym_o_PLUSe_GT] = ACTIONS(2513), - [anon_sym_e_PLUSo_GT] = ACTIONS(2513), - [anon_sym_err_GT_GT] = ACTIONS(2511), - [anon_sym_out_GT_GT] = ACTIONS(2511), - [anon_sym_e_GT_GT] = ACTIONS(2511), - [anon_sym_o_GT_GT] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2511), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(898)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2221), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(898), - [anon_sym_in] = ACTIONS(2515), - [sym__newline] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_PIPE] = ACTIONS(2515), - [anon_sym_err_GT_PIPE] = ACTIONS(2515), - [anon_sym_out_GT_PIPE] = ACTIONS(2515), - [anon_sym_e_GT_PIPE] = ACTIONS(2515), - [anon_sym_o_GT_PIPE] = ACTIONS(2515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2515), - [anon_sym_RPAREN] = ACTIONS(2515), - [anon_sym_GT2] = ACTIONS(2517), - [anon_sym_DASH2] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_EQ_GT] = ACTIONS(2515), - [anon_sym_STAR2] = ACTIONS(2517), - [anon_sym_and2] = ACTIONS(2515), - [anon_sym_xor2] = ACTIONS(2515), - [anon_sym_or2] = ACTIONS(2515), - [anon_sym_not_DASHin2] = ACTIONS(2515), - [anon_sym_has2] = ACTIONS(2515), - [anon_sym_not_DASHhas2] = ACTIONS(2515), - [anon_sym_starts_DASHwith2] = ACTIONS(2515), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2515), - [anon_sym_ends_DASHwith2] = ACTIONS(2515), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2515), - [anon_sym_EQ_EQ2] = ACTIONS(2515), - [anon_sym_BANG_EQ2] = ACTIONS(2515), - [anon_sym_LT2] = ACTIONS(2517), - [anon_sym_LT_EQ2] = ACTIONS(2515), - [anon_sym_GT_EQ2] = ACTIONS(2515), - [anon_sym_EQ_TILDE2] = ACTIONS(2515), - [anon_sym_BANG_TILDE2] = ACTIONS(2515), - [anon_sym_like2] = ACTIONS(2515), - [anon_sym_not_DASHlike2] = ACTIONS(2515), - [anon_sym_STAR_STAR2] = ACTIONS(2515), - [anon_sym_PLUS_PLUS2] = ACTIONS(2515), - [anon_sym_SLASH2] = ACTIONS(2517), - [anon_sym_mod2] = ACTIONS(2515), - [anon_sym_SLASH_SLASH2] = ACTIONS(2515), - [anon_sym_PLUS2] = ACTIONS(2517), - [anon_sym_bit_DASHshl2] = ACTIONS(2515), - [anon_sym_bit_DASHshr2] = ACTIONS(2515), - [anon_sym_bit_DASHand2] = ACTIONS(2515), - [anon_sym_bit_DASHxor2] = ACTIONS(2515), - [anon_sym_bit_DASHor2] = ACTIONS(2515), - [anon_sym_err_GT] = ACTIONS(2517), - [anon_sym_out_GT] = ACTIONS(2517), - [anon_sym_e_GT] = ACTIONS(2517), - [anon_sym_o_GT] = ACTIONS(2517), - [anon_sym_err_PLUSout_GT] = ACTIONS(2517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2517), - [anon_sym_o_PLUSe_GT] = ACTIONS(2517), - [anon_sym_e_PLUSo_GT] = ACTIONS(2517), - [anon_sym_err_GT_GT] = ACTIONS(2515), - [anon_sym_out_GT_GT] = ACTIONS(2515), - [anon_sym_e_GT_GT] = ACTIONS(2515), - [anon_sym_o_GT_GT] = ACTIONS(2515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2515), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(899)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(917), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(714), + [sym__unquoted_with_expr] = STATE(919), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(899), - [anon_sym_in] = ACTIONS(2519), - [sym__newline] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_err_GT_PIPE] = ACTIONS(2519), - [anon_sym_out_GT_PIPE] = ACTIONS(2519), - [anon_sym_e_GT_PIPE] = ACTIONS(2519), - [anon_sym_o_GT_PIPE] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2519), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_GT2] = ACTIONS(2521), - [anon_sym_DASH2] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_EQ_GT] = ACTIONS(2519), - [anon_sym_STAR2] = ACTIONS(2521), - [anon_sym_and2] = ACTIONS(2519), - [anon_sym_xor2] = ACTIONS(2519), - [anon_sym_or2] = ACTIONS(2519), - [anon_sym_not_DASHin2] = ACTIONS(2519), - [anon_sym_has2] = ACTIONS(2519), - [anon_sym_not_DASHhas2] = ACTIONS(2519), - [anon_sym_starts_DASHwith2] = ACTIONS(2519), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2519), - [anon_sym_ends_DASHwith2] = ACTIONS(2519), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2519), - [anon_sym_EQ_EQ2] = ACTIONS(2519), - [anon_sym_BANG_EQ2] = ACTIONS(2519), - [anon_sym_LT2] = ACTIONS(2521), - [anon_sym_LT_EQ2] = ACTIONS(2519), - [anon_sym_GT_EQ2] = ACTIONS(2519), - [anon_sym_EQ_TILDE2] = ACTIONS(2519), - [anon_sym_BANG_TILDE2] = ACTIONS(2519), - [anon_sym_like2] = ACTIONS(2519), - [anon_sym_not_DASHlike2] = ACTIONS(2519), - [anon_sym_STAR_STAR2] = ACTIONS(2519), - [anon_sym_PLUS_PLUS2] = ACTIONS(2519), - [anon_sym_SLASH2] = ACTIONS(2521), - [anon_sym_mod2] = ACTIONS(2519), - [anon_sym_SLASH_SLASH2] = ACTIONS(2519), - [anon_sym_PLUS2] = ACTIONS(2521), - [anon_sym_bit_DASHshl2] = ACTIONS(2519), - [anon_sym_bit_DASHshr2] = ACTIONS(2519), - [anon_sym_bit_DASHand2] = ACTIONS(2519), - [anon_sym_bit_DASHxor2] = ACTIONS(2519), - [anon_sym_bit_DASHor2] = ACTIONS(2519), - [anon_sym_err_GT] = ACTIONS(2521), - [anon_sym_out_GT] = ACTIONS(2521), - [anon_sym_e_GT] = ACTIONS(2521), - [anon_sym_o_GT] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT] = ACTIONS(2521), - [anon_sym_err_GT_GT] = ACTIONS(2519), - [anon_sym_out_GT_GT] = ACTIONS(2519), - [anon_sym_e_GT_GT] = ACTIONS(2519), - [anon_sym_o_GT_GT] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2519), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(900)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(701), + [sym__unquoted_with_expr] = STATE(922), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(900), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(901)] = { - [sym_comment] = STATE(901), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(901)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2224), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(683), + [sym__unquoted_with_expr] = STATE(925), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(901), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(902)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(684), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(902), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(903)] = { + [aux_sym__repeat_newline] = STATE(1047), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(903), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(904)] = { [sym_comment] = STATE(904), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_RPAREN] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_EQ_GT] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), + [anon_sym_in] = ACTIONS(1973), + [sym__newline] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_err_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_GT_PIPE] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1973), + [anon_sym_GT2] = ACTIONS(1975), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_EQ_GT] = ACTIONS(1973), + [anon_sym_STAR2] = ACTIONS(1975), + [anon_sym_and2] = ACTIONS(1973), + [anon_sym_xor2] = ACTIONS(1973), + [anon_sym_or2] = ACTIONS(1973), + [anon_sym_not_DASHin2] = ACTIONS(1973), + [anon_sym_has2] = ACTIONS(1973), + [anon_sym_not_DASHhas2] = ACTIONS(1973), + [anon_sym_starts_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), + [anon_sym_ends_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), + [anon_sym_EQ_EQ2] = ACTIONS(1973), + [anon_sym_BANG_EQ2] = ACTIONS(1973), + [anon_sym_LT2] = ACTIONS(1975), + [anon_sym_LT_EQ2] = ACTIONS(1973), + [anon_sym_GT_EQ2] = ACTIONS(1973), + [anon_sym_EQ_TILDE2] = ACTIONS(1973), + [anon_sym_BANG_TILDE2] = ACTIONS(1973), + [anon_sym_like2] = ACTIONS(1973), + [anon_sym_not_DASHlike2] = ACTIONS(1973), + [anon_sym_STAR_STAR2] = ACTIONS(1973), + [anon_sym_PLUS_PLUS2] = ACTIONS(1973), + [anon_sym_SLASH2] = ACTIONS(1975), + [anon_sym_mod2] = ACTIONS(1973), + [anon_sym_SLASH_SLASH2] = ACTIONS(1973), + [anon_sym_PLUS2] = ACTIONS(1975), + [anon_sym_bit_DASHshl2] = ACTIONS(1973), + [anon_sym_bit_DASHshr2] = ACTIONS(1973), + [anon_sym_bit_DASHand2] = ACTIONS(1973), + [anon_sym_bit_DASHxor2] = ACTIONS(1973), + [anon_sym_bit_DASHor2] = ACTIONS(1973), + [anon_sym_err_GT] = ACTIONS(1975), + [anon_sym_out_GT] = ACTIONS(1975), + [anon_sym_e_GT] = ACTIONS(1975), + [anon_sym_o_GT] = ACTIONS(1975), + [anon_sym_err_PLUSout_GT] = ACTIONS(1975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), + [anon_sym_o_PLUSe_GT] = ACTIONS(1975), + [anon_sym_e_PLUSo_GT] = ACTIONS(1975), + [anon_sym_err_GT_GT] = ACTIONS(1973), + [anon_sym_out_GT_GT] = ACTIONS(1973), + [anon_sym_e_GT_GT] = ACTIONS(1973), + [anon_sym_o_GT_GT] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), }, [STATE(905)] = { [sym_comment] = STATE(905), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(906)] = { - [sym_comment] = STATE(906), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(907)] = { - [sym_comment] = STATE(907), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(908)] = { - [sym_comment] = STATE(908), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(909)] = { - [sym_comment] = STATE(909), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(910)] = { - [sym_comment] = STATE(910), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(911)] = { - [sym_comment] = STATE(911), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(912)] = { - [aux_sym__repeat_newline] = STATE(964), - [sym_comment] = STATE(912), - [anon_sym_export] = ACTIONS(2527), - [anon_sym_alias] = ACTIONS(2529), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_mut] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [aux_sym_cmd_identifier_token1] = ACTIONS(2527), - [anon_sym_def] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_export_DASHenv] = ACTIONS(2529), - [anon_sym_extern] = ACTIONS(2529), - [anon_sym_module] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_loop] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_catch] = ACTIONS(2529), - [anon_sym_match] = ACTIONS(2529), - [anon_sym_in] = ACTIONS(2527), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [aux_sym_cmd_identifier_token3] = ACTIONS(2529), - [aux_sym_cmd_identifier_token4] = ACTIONS(2529), - [aux_sym_cmd_identifier_token5] = ACTIONS(2529), - [sym__newline] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2531), - [anon_sym_err_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_GT_PIPE] = ACTIONS(2531), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2531), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_DOLLAR] = ACTIONS(2527), - [anon_sym_DASH2] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(2527), - [anon_sym_where] = ACTIONS(2529), - [aux_sym_expr_unary_token1] = ACTIONS(2529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2529), - [anon_sym_DOT_DOT_LT] = ACTIONS(2529), - [aux_sym__val_number_decimal_token1] = ACTIONS(2527), - [aux_sym__val_number_decimal_token2] = ACTIONS(2529), - [aux_sym__val_number_decimal_token3] = ACTIONS(2529), - [aux_sym__val_number_decimal_token4] = ACTIONS(2529), - [aux_sym__val_number_token1] = ACTIONS(2529), - [aux_sym__val_number_token2] = ACTIONS(2529), - [aux_sym__val_number_token3] = ACTIONS(2529), - [anon_sym_0b] = ACTIONS(2527), - [anon_sym_0o] = ACTIONS(2527), - [anon_sym_0x] = ACTIONS(2527), - [sym_val_date] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2529), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_BQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2529), - [anon_sym_CARET] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2529), - }, - [STATE(913)] = { - [sym_comment] = STATE(913), [anon_sym_in] = ACTIONS(2533), [sym__newline] = ACTIONS(2533), [anon_sym_SEMI] = ACTIONS(2533), @@ -115520,146 +115649,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(914)] = { - [sym_comment] = STATE(914), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(915)] = { - [sym_comment] = STATE(915), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(916)] = { - [sym_comment] = STATE(916), + [STATE(906)] = { + [sym_comment] = STATE(906), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), [anon_sym_SEMI] = ACTIONS(2537), @@ -115727,343 +115718,826 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2537), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(917)] = { - [sym_comment] = STATE(917), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [STATE(907)] = { + [sym_comment] = STATE(907), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(918)] = { - [sym_comment] = STATE(918), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_DOT_DOT2] = ACTIONS(2541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2543), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [STATE(908)] = { + [sym_comment] = STATE(908), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(919)] = { - [sym_comment] = STATE(919), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [STATE(909)] = { + [sym_comment] = STATE(909), + [anon_sym_in] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_STAR2] = ACTIONS(1772), + [anon_sym_and2] = ACTIONS(1770), + [anon_sym_xor2] = ACTIONS(1770), + [anon_sym_or2] = ACTIONS(1770), + [anon_sym_not_DASHin2] = ACTIONS(1770), + [anon_sym_has2] = ACTIONS(1770), + [anon_sym_not_DASHhas2] = ACTIONS(1770), + [anon_sym_starts_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), + [anon_sym_ends_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), + [anon_sym_EQ_EQ2] = ACTIONS(1770), + [anon_sym_BANG_EQ2] = ACTIONS(1770), + [anon_sym_LT2] = ACTIONS(1772), + [anon_sym_LT_EQ2] = ACTIONS(1770), + [anon_sym_GT_EQ2] = ACTIONS(1770), + [anon_sym_EQ_TILDE2] = ACTIONS(1770), + [anon_sym_BANG_TILDE2] = ACTIONS(1770), + [anon_sym_like2] = ACTIONS(1770), + [anon_sym_not_DASHlike2] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_STAR_STAR2] = ACTIONS(1770), + [anon_sym_PLUS_PLUS2] = ACTIONS(1770), + [anon_sym_SLASH2] = ACTIONS(1772), + [anon_sym_mod2] = ACTIONS(1770), + [anon_sym_SLASH_SLASH2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_bit_DASHshl2] = ACTIONS(1770), + [anon_sym_bit_DASHshr2] = ACTIONS(1770), + [anon_sym_bit_DASHand2] = ACTIONS(1770), + [anon_sym_bit_DASHxor2] = ACTIONS(1770), + [anon_sym_bit_DASHor2] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1772), + [anon_sym_out_GT] = ACTIONS(1772), + [anon_sym_e_GT] = ACTIONS(1772), + [anon_sym_o_GT] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT] = ACTIONS(1772), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [sym__unquoted_pattern] = ACTIONS(1772), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(920)] = { - [sym_comment] = STATE(920), - [ts_builtin_sym_end] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_DOT_DOT2] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [STATE(910)] = { + [sym_comment] = STATE(910), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(921)] = { - [aux_sym__repeat_newline] = STATE(978), - [sym__expression_parenthesized] = STATE(4280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(921), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), + [STATE(911)] = { + [sym_comment] = STATE(911), + [anon_sym_in] = ACTIONS(1852), + [sym__newline] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_err_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_GT_PIPE] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_GT2] = ACTIONS(1854), + [anon_sym_DASH2] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_STAR2] = ACTIONS(1854), + [anon_sym_and2] = ACTIONS(1852), + [anon_sym_xor2] = ACTIONS(1852), + [anon_sym_or2] = ACTIONS(1852), + [anon_sym_not_DASHin2] = ACTIONS(1852), + [anon_sym_has2] = ACTIONS(1852), + [anon_sym_not_DASHhas2] = ACTIONS(1852), + [anon_sym_starts_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), + [anon_sym_ends_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), + [anon_sym_EQ_EQ2] = ACTIONS(1852), + [anon_sym_BANG_EQ2] = ACTIONS(1852), + [anon_sym_LT2] = ACTIONS(1854), + [anon_sym_LT_EQ2] = ACTIONS(1852), + [anon_sym_GT_EQ2] = ACTIONS(1852), + [anon_sym_EQ_TILDE2] = ACTIONS(1852), + [anon_sym_BANG_TILDE2] = ACTIONS(1852), + [anon_sym_like2] = ACTIONS(1852), + [anon_sym_not_DASHlike2] = ACTIONS(1852), + [anon_sym_LPAREN2] = ACTIONS(1852), + [anon_sym_STAR_STAR2] = ACTIONS(1852), + [anon_sym_PLUS_PLUS2] = ACTIONS(1852), + [anon_sym_SLASH2] = ACTIONS(1854), + [anon_sym_mod2] = ACTIONS(1852), + [anon_sym_SLASH_SLASH2] = ACTIONS(1852), + [anon_sym_PLUS2] = ACTIONS(1854), + [anon_sym_bit_DASHshl2] = ACTIONS(1852), + [anon_sym_bit_DASHshr2] = ACTIONS(1852), + [anon_sym_bit_DASHand2] = ACTIONS(1852), + [anon_sym_bit_DASHxor2] = ACTIONS(1852), + [anon_sym_bit_DASHor2] = ACTIONS(1852), + [anon_sym_err_GT] = ACTIONS(1854), + [anon_sym_out_GT] = ACTIONS(1854), + [anon_sym_e_GT] = ACTIONS(1854), + [anon_sym_o_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT] = ACTIONS(1854), + [anon_sym_err_GT_GT] = ACTIONS(1852), + [anon_sym_out_GT_GT] = ACTIONS(1852), + [anon_sym_e_GT_GT] = ACTIONS(1852), + [anon_sym_o_GT_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), + [sym__unquoted_pattern] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(912)] = { + [sym_comment] = STATE(912), + [anon_sym_in] = ACTIONS(1870), + [sym__newline] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_err_GT_PIPE] = ACTIONS(1870), + [anon_sym_out_GT_PIPE] = ACTIONS(1870), + [anon_sym_e_GT_PIPE] = ACTIONS(1870), + [anon_sym_o_GT_PIPE] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), + [anon_sym_RPAREN] = ACTIONS(1870), + [anon_sym_GT2] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_STAR2] = ACTIONS(1872), + [anon_sym_and2] = ACTIONS(1870), + [anon_sym_xor2] = ACTIONS(1870), + [anon_sym_or2] = ACTIONS(1870), + [anon_sym_not_DASHin2] = ACTIONS(1870), + [anon_sym_has2] = ACTIONS(1870), + [anon_sym_not_DASHhas2] = ACTIONS(1870), + [anon_sym_starts_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), + [anon_sym_ends_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), + [anon_sym_EQ_EQ2] = ACTIONS(1870), + [anon_sym_BANG_EQ2] = ACTIONS(1870), + [anon_sym_LT2] = ACTIONS(1872), + [anon_sym_LT_EQ2] = ACTIONS(1870), + [anon_sym_GT_EQ2] = ACTIONS(1870), + [anon_sym_EQ_TILDE2] = ACTIONS(1870), + [anon_sym_BANG_TILDE2] = ACTIONS(1870), + [anon_sym_like2] = ACTIONS(1870), + [anon_sym_not_DASHlike2] = ACTIONS(1870), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_STAR_STAR2] = ACTIONS(1870), + [anon_sym_PLUS_PLUS2] = ACTIONS(1870), + [anon_sym_SLASH2] = ACTIONS(1872), + [anon_sym_mod2] = ACTIONS(1870), + [anon_sym_SLASH_SLASH2] = ACTIONS(1870), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_bit_DASHshl2] = ACTIONS(1870), + [anon_sym_bit_DASHshr2] = ACTIONS(1870), + [anon_sym_bit_DASHand2] = ACTIONS(1870), + [anon_sym_bit_DASHxor2] = ACTIONS(1870), + [anon_sym_bit_DASHor2] = ACTIONS(1870), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1870), + [anon_sym_out_GT_GT] = ACTIONS(1870), + [anon_sym_e_GT_GT] = ACTIONS(1870), + [anon_sym_o_GT_GT] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), + [sym__unquoted_pattern] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(913)] = { + [sym_comment] = STATE(913), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(914)] = { + [sym_comment] = STATE(914), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(915)] = { + [sym_comment] = STATE(915), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(916)] = { + [aux_sym__repeat_newline] = STATE(937), + [sym_comment] = STATE(916), + [anon_sym_export] = ACTIONS(2545), + [anon_sym_alias] = ACTIONS(2547), + [anon_sym_let] = ACTIONS(2547), + [anon_sym_mut] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [aux_sym_cmd_identifier_token1] = ACTIONS(2545), + [anon_sym_def] = ACTIONS(2547), + [anon_sym_use] = ACTIONS(2547), + [anon_sym_export_DASHenv] = ACTIONS(2547), + [anon_sym_extern] = ACTIONS(2547), + [anon_sym_module] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_loop] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_else] = ACTIONS(2547), + [anon_sym_try] = ACTIONS(2547), + [anon_sym_catch] = ACTIONS(2547), + [anon_sym_match] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2547), + [anon_sym_false] = ACTIONS(2547), + [anon_sym_null] = ACTIONS(2547), + [aux_sym_cmd_identifier_token3] = ACTIONS(2547), + [aux_sym_cmd_identifier_token4] = ACTIONS(2547), + [aux_sym_cmd_identifier_token5] = ACTIONS(2547), + [sym__newline] = ACTIONS(2323), + [anon_sym_PIPE] = ACTIONS(2549), + [anon_sym_err_GT_PIPE] = ACTIONS(2549), + [anon_sym_out_GT_PIPE] = ACTIONS(2549), + [anon_sym_e_GT_PIPE] = ACTIONS(2549), + [anon_sym_o_GT_PIPE] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_DOLLAR] = ACTIONS(2545), + [anon_sym_DASH2] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_DOT_DOT] = ACTIONS(2545), + [anon_sym_where] = ACTIONS(2547), + [aux_sym_expr_unary_token1] = ACTIONS(2547), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), + [anon_sym_DOT_DOT_LT] = ACTIONS(2547), + [aux_sym__val_number_decimal_token1] = ACTIONS(2545), + [aux_sym__val_number_decimal_token2] = ACTIONS(2547), + [aux_sym__val_number_decimal_token3] = ACTIONS(2547), + [aux_sym__val_number_decimal_token4] = ACTIONS(2547), + [aux_sym__val_number_token1] = ACTIONS(2547), + [aux_sym__val_number_token2] = ACTIONS(2547), + [aux_sym__val_number_token3] = ACTIONS(2547), + [anon_sym_0b] = ACTIONS(2545), + [anon_sym_0o] = ACTIONS(2545), + [anon_sym_0x] = ACTIONS(2545), + [sym_val_date] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_BQUOTE] = ACTIONS(2547), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2547), + }, + [STATE(917)] = { + [sym_comment] = STATE(917), + [anon_sym_in] = ACTIONS(2551), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2553), + [anon_sym_DASH2] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2553), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2551), + [anon_sym_has2] = ACTIONS(2551), + [anon_sym_not_DASHhas2] = ACTIONS(2551), + [anon_sym_starts_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), + [anon_sym_ends_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), + [anon_sym_EQ_EQ2] = ACTIONS(2551), + [anon_sym_BANG_EQ2] = ACTIONS(2551), + [anon_sym_LT2] = ACTIONS(2553), + [anon_sym_LT_EQ2] = ACTIONS(2551), + [anon_sym_GT_EQ2] = ACTIONS(2551), + [anon_sym_EQ_TILDE2] = ACTIONS(2551), + [anon_sym_BANG_TILDE2] = ACTIONS(2551), + [anon_sym_like2] = ACTIONS(2551), + [anon_sym_not_DASHlike2] = ACTIONS(2551), + [anon_sym_STAR_STAR2] = ACTIONS(2551), + [anon_sym_PLUS_PLUS2] = ACTIONS(2551), + [anon_sym_SLASH2] = ACTIONS(2553), + [anon_sym_mod2] = ACTIONS(2551), + [anon_sym_SLASH_SLASH2] = ACTIONS(2551), + [anon_sym_PLUS2] = ACTIONS(2553), + [anon_sym_bit_DASHshl2] = ACTIONS(2551), + [anon_sym_bit_DASHshr2] = ACTIONS(2551), + [anon_sym_bit_DASHand2] = ACTIONS(2551), + [anon_sym_bit_DASHxor2] = ACTIONS(2551), + [anon_sym_bit_DASHor2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(918)] = { + [aux_sym__repeat_newline] = STATE(991), + [sym__expression_parenthesized] = STATE(4510), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2160), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_comment] = STATE(918), + [aux_sym_cmd_identifier_token2] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [sym__newline] = ACTIONS(2563), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2567), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -116072,560 +116546,1320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(919)] = { + [sym_comment] = STATE(919), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(920)] = { + [sym_comment] = STATE(920), + [ts_builtin_sym_end] = ACTIONS(2102), + [anon_sym_in] = ACTIONS(2102), + [sym__newline] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_err_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_GT_PIPE] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2102), + [anon_sym_GT2] = ACTIONS(2104), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_STAR2] = ACTIONS(2104), + [anon_sym_and2] = ACTIONS(2102), + [anon_sym_xor2] = ACTIONS(2102), + [anon_sym_or2] = ACTIONS(2102), + [anon_sym_not_DASHin2] = ACTIONS(2102), + [anon_sym_has2] = ACTIONS(2102), + [anon_sym_not_DASHhas2] = ACTIONS(2102), + [anon_sym_starts_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2102), + [anon_sym_ends_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2102), + [anon_sym_EQ_EQ2] = ACTIONS(2102), + [anon_sym_BANG_EQ2] = ACTIONS(2102), + [anon_sym_LT2] = ACTIONS(2104), + [anon_sym_LT_EQ2] = ACTIONS(2102), + [anon_sym_GT_EQ2] = ACTIONS(2102), + [anon_sym_EQ_TILDE2] = ACTIONS(2102), + [anon_sym_BANG_TILDE2] = ACTIONS(2102), + [anon_sym_like2] = ACTIONS(2102), + [anon_sym_not_DASHlike2] = ACTIONS(2102), + [anon_sym_STAR_STAR2] = ACTIONS(2102), + [anon_sym_PLUS_PLUS2] = ACTIONS(2102), + [anon_sym_SLASH2] = ACTIONS(2104), + [anon_sym_mod2] = ACTIONS(2102), + [anon_sym_SLASH_SLASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_bit_DASHshl2] = ACTIONS(2102), + [anon_sym_bit_DASHshr2] = ACTIONS(2102), + [anon_sym_bit_DASHand2] = ACTIONS(2102), + [anon_sym_bit_DASHxor2] = ACTIONS(2102), + [anon_sym_bit_DASHor2] = ACTIONS(2102), + [anon_sym_DOT_DOT2] = ACTIONS(2569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2104), + [anon_sym_out_GT] = ACTIONS(2104), + [anon_sym_e_GT] = ACTIONS(2104), + [anon_sym_o_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT] = ACTIONS(2104), + [anon_sym_err_GT_GT] = ACTIONS(2102), + [anon_sym_out_GT_GT] = ACTIONS(2102), + [anon_sym_e_GT_GT] = ACTIONS(2102), + [anon_sym_o_GT_GT] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2102), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(921)] = { + [sym_comment] = STATE(921), + [anon_sym_in] = ACTIONS(2573), + [sym__newline] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2573), + [anon_sym_err_GT_PIPE] = ACTIONS(2573), + [anon_sym_out_GT_PIPE] = ACTIONS(2573), + [anon_sym_e_GT_PIPE] = ACTIONS(2573), + [anon_sym_o_GT_PIPE] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2573), + [anon_sym_RPAREN] = ACTIONS(2573), + [anon_sym_GT2] = ACTIONS(2575), + [anon_sym_DASH2] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(2573), + [anon_sym_EQ_GT] = ACTIONS(2573), + [anon_sym_STAR2] = ACTIONS(2575), + [anon_sym_and2] = ACTIONS(2573), + [anon_sym_xor2] = ACTIONS(2573), + [anon_sym_or2] = ACTIONS(2573), + [anon_sym_not_DASHin2] = ACTIONS(2573), + [anon_sym_has2] = ACTIONS(2573), + [anon_sym_not_DASHhas2] = ACTIONS(2573), + [anon_sym_starts_DASHwith2] = ACTIONS(2573), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2573), + [anon_sym_ends_DASHwith2] = ACTIONS(2573), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2573), + [anon_sym_EQ_EQ2] = ACTIONS(2573), + [anon_sym_BANG_EQ2] = ACTIONS(2573), + [anon_sym_LT2] = ACTIONS(2575), + [anon_sym_LT_EQ2] = ACTIONS(2573), + [anon_sym_GT_EQ2] = ACTIONS(2573), + [anon_sym_EQ_TILDE2] = ACTIONS(2573), + [anon_sym_BANG_TILDE2] = ACTIONS(2573), + [anon_sym_like2] = ACTIONS(2573), + [anon_sym_not_DASHlike2] = ACTIONS(2573), + [anon_sym_STAR_STAR2] = ACTIONS(2573), + [anon_sym_PLUS_PLUS2] = ACTIONS(2573), + [anon_sym_SLASH2] = ACTIONS(2575), + [anon_sym_mod2] = ACTIONS(2573), + [anon_sym_SLASH_SLASH2] = ACTIONS(2573), + [anon_sym_PLUS2] = ACTIONS(2575), + [anon_sym_bit_DASHshl2] = ACTIONS(2573), + [anon_sym_bit_DASHshr2] = ACTIONS(2573), + [anon_sym_bit_DASHand2] = ACTIONS(2573), + [anon_sym_bit_DASHxor2] = ACTIONS(2573), + [anon_sym_bit_DASHor2] = ACTIONS(2573), + [anon_sym_err_GT] = ACTIONS(2575), + [anon_sym_out_GT] = ACTIONS(2575), + [anon_sym_e_GT] = ACTIONS(2575), + [anon_sym_o_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT] = ACTIONS(2575), + [anon_sym_err_GT_GT] = ACTIONS(2573), + [anon_sym_out_GT_GT] = ACTIONS(2573), + [anon_sym_e_GT_GT] = ACTIONS(2573), + [anon_sym_o_GT_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(922)] = { [sym_comment] = STATE(922), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(923)] = { [sym_comment] = STATE(923), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [ts_builtin_sym_end] = ACTIONS(2110), + [anon_sym_in] = ACTIONS(2110), + [sym__newline] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_err_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_GT_PIPE] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), + [anon_sym_GT2] = ACTIONS(2112), + [anon_sym_DASH2] = ACTIONS(2110), + [anon_sym_STAR2] = ACTIONS(2112), + [anon_sym_and2] = ACTIONS(2110), + [anon_sym_xor2] = ACTIONS(2110), + [anon_sym_or2] = ACTIONS(2110), + [anon_sym_not_DASHin2] = ACTIONS(2110), + [anon_sym_has2] = ACTIONS(2110), + [anon_sym_not_DASHhas2] = ACTIONS(2110), + [anon_sym_starts_DASHwith2] = ACTIONS(2110), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2110), + [anon_sym_ends_DASHwith2] = ACTIONS(2110), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2110), + [anon_sym_EQ_EQ2] = ACTIONS(2110), + [anon_sym_BANG_EQ2] = ACTIONS(2110), + [anon_sym_LT2] = ACTIONS(2112), + [anon_sym_LT_EQ2] = ACTIONS(2110), + [anon_sym_GT_EQ2] = ACTIONS(2110), + [anon_sym_EQ_TILDE2] = ACTIONS(2110), + [anon_sym_BANG_TILDE2] = ACTIONS(2110), + [anon_sym_like2] = ACTIONS(2110), + [anon_sym_not_DASHlike2] = ACTIONS(2110), + [anon_sym_STAR_STAR2] = ACTIONS(2110), + [anon_sym_PLUS_PLUS2] = ACTIONS(2110), + [anon_sym_SLASH2] = ACTIONS(2112), + [anon_sym_mod2] = ACTIONS(2110), + [anon_sym_SLASH_SLASH2] = ACTIONS(2110), + [anon_sym_PLUS2] = ACTIONS(2112), + [anon_sym_bit_DASHshl2] = ACTIONS(2110), + [anon_sym_bit_DASHshr2] = ACTIONS(2110), + [anon_sym_bit_DASHand2] = ACTIONS(2110), + [anon_sym_bit_DASHxor2] = ACTIONS(2110), + [anon_sym_bit_DASHor2] = ACTIONS(2110), + [anon_sym_DOT_DOT2] = ACTIONS(2577), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2579), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2579), + [anon_sym_err_GT] = ACTIONS(2112), + [anon_sym_out_GT] = ACTIONS(2112), + [anon_sym_e_GT] = ACTIONS(2112), + [anon_sym_o_GT] = ACTIONS(2112), + [anon_sym_err_PLUSout_GT] = ACTIONS(2112), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2112), + [anon_sym_o_PLUSe_GT] = ACTIONS(2112), + [anon_sym_e_PLUSo_GT] = ACTIONS(2112), + [anon_sym_err_GT_GT] = ACTIONS(2110), + [anon_sym_out_GT_GT] = ACTIONS(2110), + [anon_sym_e_GT_GT] = ACTIONS(2110), + [anon_sym_o_GT_GT] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2110), [anon_sym_POUND] = ACTIONS(3), }, [STATE(924)] = { [sym_comment] = STATE(924), - [anon_sym_in] = ACTIONS(2563), - [sym__newline] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2563), - [anon_sym_err_GT_PIPE] = ACTIONS(2563), - [anon_sym_out_GT_PIPE] = ACTIONS(2563), - [anon_sym_e_GT_PIPE] = ACTIONS(2563), - [anon_sym_o_GT_PIPE] = ACTIONS(2563), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2563), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2563), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2563), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_GT2] = ACTIONS(2565), - [anon_sym_DASH2] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_EQ_GT] = ACTIONS(2563), - [anon_sym_STAR2] = ACTIONS(2565), - [anon_sym_and2] = ACTIONS(2563), - [anon_sym_xor2] = ACTIONS(2563), - [anon_sym_or2] = ACTIONS(2563), - [anon_sym_not_DASHin2] = ACTIONS(2563), - [anon_sym_has2] = ACTIONS(2563), - [anon_sym_not_DASHhas2] = ACTIONS(2563), - [anon_sym_starts_DASHwith2] = ACTIONS(2563), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2563), - [anon_sym_ends_DASHwith2] = ACTIONS(2563), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2563), - [anon_sym_EQ_EQ2] = ACTIONS(2563), - [anon_sym_BANG_EQ2] = ACTIONS(2563), - [anon_sym_LT2] = ACTIONS(2565), - [anon_sym_LT_EQ2] = ACTIONS(2563), - [anon_sym_GT_EQ2] = ACTIONS(2563), - [anon_sym_EQ_TILDE2] = ACTIONS(2563), - [anon_sym_BANG_TILDE2] = ACTIONS(2563), - [anon_sym_like2] = ACTIONS(2563), - [anon_sym_not_DASHlike2] = ACTIONS(2563), - [anon_sym_STAR_STAR2] = ACTIONS(2563), - [anon_sym_PLUS_PLUS2] = ACTIONS(2563), - [anon_sym_SLASH2] = ACTIONS(2565), - [anon_sym_mod2] = ACTIONS(2563), - [anon_sym_SLASH_SLASH2] = ACTIONS(2563), - [anon_sym_PLUS2] = ACTIONS(2565), - [anon_sym_bit_DASHshl2] = ACTIONS(2563), - [anon_sym_bit_DASHshr2] = ACTIONS(2563), - [anon_sym_bit_DASHand2] = ACTIONS(2563), - [anon_sym_bit_DASHxor2] = ACTIONS(2563), - [anon_sym_bit_DASHor2] = ACTIONS(2563), - [anon_sym_err_GT] = ACTIONS(2565), - [anon_sym_out_GT] = ACTIONS(2565), - [anon_sym_e_GT] = ACTIONS(2565), - [anon_sym_o_GT] = ACTIONS(2565), - [anon_sym_err_PLUSout_GT] = ACTIONS(2565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2565), - [anon_sym_o_PLUSe_GT] = ACTIONS(2565), - [anon_sym_e_PLUSo_GT] = ACTIONS(2565), - [anon_sym_err_GT_GT] = ACTIONS(2563), - [anon_sym_out_GT_GT] = ACTIONS(2563), - [anon_sym_e_GT_GT] = ACTIONS(2563), - [anon_sym_o_GT_GT] = ACTIONS(2563), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2563), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2563), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2563), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2563), + [ts_builtin_sym_end] = ACTIONS(2166), + [anon_sym_in] = ACTIONS(2162), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_STAR2] = ACTIONS(2164), + [anon_sym_and2] = ACTIONS(2162), + [anon_sym_xor2] = ACTIONS(2162), + [anon_sym_or2] = ACTIONS(2162), + [anon_sym_not_DASHin2] = ACTIONS(2162), + [anon_sym_has2] = ACTIONS(2162), + [anon_sym_not_DASHhas2] = ACTIONS(2162), + [anon_sym_starts_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), + [anon_sym_ends_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), + [anon_sym_EQ_EQ2] = ACTIONS(2162), + [anon_sym_BANG_EQ2] = ACTIONS(2162), + [anon_sym_LT2] = ACTIONS(2164), + [anon_sym_LT_EQ2] = ACTIONS(2162), + [anon_sym_GT_EQ2] = ACTIONS(2162), + [anon_sym_EQ_TILDE2] = ACTIONS(2162), + [anon_sym_BANG_TILDE2] = ACTIONS(2162), + [anon_sym_like2] = ACTIONS(2162), + [anon_sym_not_DASHlike2] = ACTIONS(2162), + [anon_sym_STAR_STAR2] = ACTIONS(2162), + [anon_sym_PLUS_PLUS2] = ACTIONS(2162), + [anon_sym_SLASH2] = ACTIONS(2164), + [anon_sym_mod2] = ACTIONS(2162), + [anon_sym_SLASH_SLASH2] = ACTIONS(2162), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_bit_DASHshl2] = ACTIONS(2162), + [anon_sym_bit_DASHshr2] = ACTIONS(2162), + [anon_sym_bit_DASHand2] = ACTIONS(2162), + [anon_sym_bit_DASHxor2] = ACTIONS(2162), + [anon_sym_bit_DASHor2] = ACTIONS(2162), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(2168), + [anon_sym_out_GT] = ACTIONS(2168), + [anon_sym_e_GT] = ACTIONS(2168), + [anon_sym_o_GT] = ACTIONS(2168), + [anon_sym_err_PLUSout_GT] = ACTIONS(2168), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), + [anon_sym_o_PLUSe_GT] = ACTIONS(2168), + [anon_sym_e_PLUSo_GT] = ACTIONS(2168), + [anon_sym_err_GT_GT] = ACTIONS(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), [anon_sym_POUND] = ACTIONS(3), }, [STATE(925)] = { [sym_comment] = STATE(925), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_EQ_GT] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(926)] = { [sym_comment] = STATE(926), - [anon_sym_in] = ACTIONS(2571), - [sym__newline] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_PIPE] = ACTIONS(2571), - [anon_sym_err_GT_PIPE] = ACTIONS(2571), - [anon_sym_out_GT_PIPE] = ACTIONS(2571), - [anon_sym_e_GT_PIPE] = ACTIONS(2571), - [anon_sym_o_GT_PIPE] = ACTIONS(2571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2571), - [anon_sym_RPAREN] = ACTIONS(2571), - [anon_sym_GT2] = ACTIONS(2573), - [anon_sym_DASH2] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_EQ_GT] = ACTIONS(2571), - [anon_sym_STAR2] = ACTIONS(2573), - [anon_sym_and2] = ACTIONS(2571), - [anon_sym_xor2] = ACTIONS(2571), - [anon_sym_or2] = ACTIONS(2571), - [anon_sym_not_DASHin2] = ACTIONS(2571), - [anon_sym_has2] = ACTIONS(2571), - [anon_sym_not_DASHhas2] = ACTIONS(2571), - [anon_sym_starts_DASHwith2] = ACTIONS(2571), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2571), - [anon_sym_ends_DASHwith2] = ACTIONS(2571), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2571), - [anon_sym_EQ_EQ2] = ACTIONS(2571), - [anon_sym_BANG_EQ2] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2573), - [anon_sym_LT_EQ2] = ACTIONS(2571), - [anon_sym_GT_EQ2] = ACTIONS(2571), - [anon_sym_EQ_TILDE2] = ACTIONS(2571), - [anon_sym_BANG_TILDE2] = ACTIONS(2571), - [anon_sym_like2] = ACTIONS(2571), - [anon_sym_not_DASHlike2] = ACTIONS(2571), - [anon_sym_STAR_STAR2] = ACTIONS(2571), - [anon_sym_PLUS_PLUS2] = ACTIONS(2571), - [anon_sym_SLASH2] = ACTIONS(2573), - [anon_sym_mod2] = ACTIONS(2571), - [anon_sym_SLASH_SLASH2] = ACTIONS(2571), - [anon_sym_PLUS2] = ACTIONS(2573), - [anon_sym_bit_DASHshl2] = ACTIONS(2571), - [anon_sym_bit_DASHshr2] = ACTIONS(2571), - [anon_sym_bit_DASHand2] = ACTIONS(2571), - [anon_sym_bit_DASHxor2] = ACTIONS(2571), - [anon_sym_bit_DASHor2] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2571), - [anon_sym_out_GT_GT] = ACTIONS(2571), - [anon_sym_e_GT_GT] = ACTIONS(2571), - [anon_sym_o_GT_GT] = ACTIONS(2571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(927)] = { [sym_comment] = STATE(927), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_EQ_GT] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(928)] = { [sym_comment] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(2581), + [sym__newline] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_PIPE] = ACTIONS(2581), + [anon_sym_err_GT_PIPE] = ACTIONS(2581), + [anon_sym_out_GT_PIPE] = ACTIONS(2581), + [anon_sym_e_GT_PIPE] = ACTIONS(2581), + [anon_sym_o_GT_PIPE] = ACTIONS(2581), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2581), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2581), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2581), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2581), + [anon_sym_RPAREN] = ACTIONS(2581), + [anon_sym_GT2] = ACTIONS(2583), + [anon_sym_DASH2] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_EQ_GT] = ACTIONS(2581), + [anon_sym_STAR2] = ACTIONS(2583), + [anon_sym_and2] = ACTIONS(2581), + [anon_sym_xor2] = ACTIONS(2581), + [anon_sym_or2] = ACTIONS(2581), + [anon_sym_not_DASHin2] = ACTIONS(2581), + [anon_sym_has2] = ACTIONS(2581), + [anon_sym_not_DASHhas2] = ACTIONS(2581), + [anon_sym_starts_DASHwith2] = ACTIONS(2581), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2581), + [anon_sym_ends_DASHwith2] = ACTIONS(2581), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2581), + [anon_sym_EQ_EQ2] = ACTIONS(2581), + [anon_sym_BANG_EQ2] = ACTIONS(2581), + [anon_sym_LT2] = ACTIONS(2583), + [anon_sym_LT_EQ2] = ACTIONS(2581), + [anon_sym_GT_EQ2] = ACTIONS(2581), + [anon_sym_EQ_TILDE2] = ACTIONS(2581), + [anon_sym_BANG_TILDE2] = ACTIONS(2581), + [anon_sym_like2] = ACTIONS(2581), + [anon_sym_not_DASHlike2] = ACTIONS(2581), + [anon_sym_STAR_STAR2] = ACTIONS(2581), + [anon_sym_PLUS_PLUS2] = ACTIONS(2581), + [anon_sym_SLASH2] = ACTIONS(2583), + [anon_sym_mod2] = ACTIONS(2581), + [anon_sym_SLASH_SLASH2] = ACTIONS(2581), + [anon_sym_PLUS2] = ACTIONS(2583), + [anon_sym_bit_DASHshl2] = ACTIONS(2581), + [anon_sym_bit_DASHshr2] = ACTIONS(2581), + [anon_sym_bit_DASHand2] = ACTIONS(2581), + [anon_sym_bit_DASHxor2] = ACTIONS(2581), + [anon_sym_bit_DASHor2] = ACTIONS(2581), + [anon_sym_err_GT] = ACTIONS(2583), + [anon_sym_out_GT] = ACTIONS(2583), + [anon_sym_e_GT] = ACTIONS(2583), + [anon_sym_o_GT] = ACTIONS(2583), + [anon_sym_err_PLUSout_GT] = ACTIONS(2583), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2583), + [anon_sym_o_PLUSe_GT] = ACTIONS(2583), + [anon_sym_e_PLUSo_GT] = ACTIONS(2583), + [anon_sym_err_GT_GT] = ACTIONS(2581), + [anon_sym_out_GT_GT] = ACTIONS(2581), + [anon_sym_e_GT_GT] = ACTIONS(2581), + [anon_sym_o_GT_GT] = ACTIONS(2581), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2581), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2581), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2581), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2581), [anon_sym_POUND] = ACTIONS(3), }, [STATE(929)] = { [sym_comment] = STATE(929), - [ts_builtin_sym_end] = ACTIONS(2120), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2579), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2581), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), + [ts_builtin_sym_end] = ACTIONS(2118), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_err_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_GT_PIPE] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2118), + [anon_sym_GT2] = ACTIONS(2120), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_STAR2] = ACTIONS(2120), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2120), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2120), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2120), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(2585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2587), + [anon_sym_err_GT] = ACTIONS(2120), + [anon_sym_out_GT] = ACTIONS(2120), + [anon_sym_e_GT] = ACTIONS(2120), + [anon_sym_o_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT] = ACTIONS(2120), + [anon_sym_err_GT_GT] = ACTIONS(2118), + [anon_sym_out_GT_GT] = ACTIONS(2118), + [anon_sym_e_GT_GT] = ACTIONS(2118), + [anon_sym_o_GT_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2118), [anon_sym_POUND] = ACTIONS(3), }, [STATE(930)] = { [sym_comment] = STATE(930), + [anon_sym_in] = ACTIONS(2589), + [sym__newline] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_err_GT_PIPE] = ACTIONS(2589), + [anon_sym_out_GT_PIPE] = ACTIONS(2589), + [anon_sym_e_GT_PIPE] = ACTIONS(2589), + [anon_sym_o_GT_PIPE] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2589), + [anon_sym_RPAREN] = ACTIONS(2589), + [anon_sym_GT2] = ACTIONS(2591), + [anon_sym_DASH2] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_RBRACE] = ACTIONS(2589), + [anon_sym_EQ_GT] = ACTIONS(2589), + [anon_sym_STAR2] = ACTIONS(2591), + [anon_sym_and2] = ACTIONS(2589), + [anon_sym_xor2] = ACTIONS(2589), + [anon_sym_or2] = ACTIONS(2589), + [anon_sym_not_DASHin2] = ACTIONS(2589), + [anon_sym_has2] = ACTIONS(2589), + [anon_sym_not_DASHhas2] = ACTIONS(2589), + [anon_sym_starts_DASHwith2] = ACTIONS(2589), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2589), + [anon_sym_ends_DASHwith2] = ACTIONS(2589), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2589), + [anon_sym_EQ_EQ2] = ACTIONS(2589), + [anon_sym_BANG_EQ2] = ACTIONS(2589), + [anon_sym_LT2] = ACTIONS(2591), + [anon_sym_LT_EQ2] = ACTIONS(2589), + [anon_sym_GT_EQ2] = ACTIONS(2589), + [anon_sym_EQ_TILDE2] = ACTIONS(2589), + [anon_sym_BANG_TILDE2] = ACTIONS(2589), + [anon_sym_like2] = ACTIONS(2589), + [anon_sym_not_DASHlike2] = ACTIONS(2589), + [anon_sym_STAR_STAR2] = ACTIONS(2589), + [anon_sym_PLUS_PLUS2] = ACTIONS(2589), + [anon_sym_SLASH2] = ACTIONS(2591), + [anon_sym_mod2] = ACTIONS(2589), + [anon_sym_SLASH_SLASH2] = ACTIONS(2589), + [anon_sym_PLUS2] = ACTIONS(2591), + [anon_sym_bit_DASHshl2] = ACTIONS(2589), + [anon_sym_bit_DASHshr2] = ACTIONS(2589), + [anon_sym_bit_DASHand2] = ACTIONS(2589), + [anon_sym_bit_DASHxor2] = ACTIONS(2589), + [anon_sym_bit_DASHor2] = ACTIONS(2589), + [anon_sym_err_GT] = ACTIONS(2591), + [anon_sym_out_GT] = ACTIONS(2591), + [anon_sym_e_GT] = ACTIONS(2591), + [anon_sym_o_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT] = ACTIONS(2591), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(931)] = { + [sym_comment] = STATE(931), + [anon_sym_in] = ACTIONS(2593), + [sym__newline] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_PIPE] = ACTIONS(2593), + [anon_sym_err_GT_PIPE] = ACTIONS(2593), + [anon_sym_out_GT_PIPE] = ACTIONS(2593), + [anon_sym_e_GT_PIPE] = ACTIONS(2593), + [anon_sym_o_GT_PIPE] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2593), + [anon_sym_RPAREN] = ACTIONS(2593), + [anon_sym_GT2] = ACTIONS(2595), + [anon_sym_DASH2] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_RBRACE] = ACTIONS(2593), + [anon_sym_EQ_GT] = ACTIONS(2593), + [anon_sym_STAR2] = ACTIONS(2595), + [anon_sym_and2] = ACTIONS(2593), + [anon_sym_xor2] = ACTIONS(2593), + [anon_sym_or2] = ACTIONS(2593), + [anon_sym_not_DASHin2] = ACTIONS(2593), + [anon_sym_has2] = ACTIONS(2593), + [anon_sym_not_DASHhas2] = ACTIONS(2593), + [anon_sym_starts_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2593), + [anon_sym_ends_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2593), + [anon_sym_EQ_EQ2] = ACTIONS(2593), + [anon_sym_BANG_EQ2] = ACTIONS(2593), + [anon_sym_LT2] = ACTIONS(2595), + [anon_sym_LT_EQ2] = ACTIONS(2593), + [anon_sym_GT_EQ2] = ACTIONS(2593), + [anon_sym_EQ_TILDE2] = ACTIONS(2593), + [anon_sym_BANG_TILDE2] = ACTIONS(2593), + [anon_sym_like2] = ACTIONS(2593), + [anon_sym_not_DASHlike2] = ACTIONS(2593), + [anon_sym_STAR_STAR2] = ACTIONS(2593), + [anon_sym_PLUS_PLUS2] = ACTIONS(2593), + [anon_sym_SLASH2] = ACTIONS(2595), + [anon_sym_mod2] = ACTIONS(2593), + [anon_sym_SLASH_SLASH2] = ACTIONS(2593), + [anon_sym_PLUS2] = ACTIONS(2595), + [anon_sym_bit_DASHshl2] = ACTIONS(2593), + [anon_sym_bit_DASHshr2] = ACTIONS(2593), + [anon_sym_bit_DASHand2] = ACTIONS(2593), + [anon_sym_bit_DASHxor2] = ACTIONS(2593), + [anon_sym_bit_DASHor2] = ACTIONS(2593), + [anon_sym_err_GT] = ACTIONS(2595), + [anon_sym_out_GT] = ACTIONS(2595), + [anon_sym_e_GT] = ACTIONS(2595), + [anon_sym_o_GT] = ACTIONS(2595), + [anon_sym_err_PLUSout_GT] = ACTIONS(2595), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2595), + [anon_sym_o_PLUSe_GT] = ACTIONS(2595), + [anon_sym_e_PLUSo_GT] = ACTIONS(2595), + [anon_sym_err_GT_GT] = ACTIONS(2593), + [anon_sym_out_GT_GT] = ACTIONS(2593), + [anon_sym_e_GT_GT] = ACTIONS(2593), + [anon_sym_o_GT_GT] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2593), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(932)] = { + [sym_comment] = STATE(932), + [anon_sym_in] = ACTIONS(1912), + [sym__newline] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_err_GT_PIPE] = ACTIONS(1912), + [anon_sym_out_GT_PIPE] = ACTIONS(1912), + [anon_sym_e_GT_PIPE] = ACTIONS(1912), + [anon_sym_o_GT_PIPE] = ACTIONS(1912), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1912), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1912), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1912), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1912), + [anon_sym_GT2] = ACTIONS(1914), + [anon_sym_DASH2] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_EQ_GT] = ACTIONS(1912), + [anon_sym_STAR2] = ACTIONS(1914), + [anon_sym_and2] = ACTIONS(1912), + [anon_sym_xor2] = ACTIONS(1912), + [anon_sym_or2] = ACTIONS(1912), + [anon_sym_not_DASHin2] = ACTIONS(1912), + [anon_sym_has2] = ACTIONS(1912), + [anon_sym_not_DASHhas2] = ACTIONS(1912), + [anon_sym_starts_DASHwith2] = ACTIONS(1912), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1912), + [anon_sym_ends_DASHwith2] = ACTIONS(1912), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1912), + [anon_sym_EQ_EQ2] = ACTIONS(1912), + [anon_sym_BANG_EQ2] = ACTIONS(1912), + [anon_sym_LT2] = ACTIONS(1914), + [anon_sym_LT_EQ2] = ACTIONS(1912), + [anon_sym_GT_EQ2] = ACTIONS(1912), + [anon_sym_EQ_TILDE2] = ACTIONS(1912), + [anon_sym_BANG_TILDE2] = ACTIONS(1912), + [anon_sym_like2] = ACTIONS(1912), + [anon_sym_not_DASHlike2] = ACTIONS(1912), + [anon_sym_STAR_STAR2] = ACTIONS(1912), + [anon_sym_PLUS_PLUS2] = ACTIONS(1912), + [anon_sym_SLASH2] = ACTIONS(1914), + [anon_sym_mod2] = ACTIONS(1912), + [anon_sym_SLASH_SLASH2] = ACTIONS(1912), + [anon_sym_PLUS2] = ACTIONS(1914), + [anon_sym_bit_DASHshl2] = ACTIONS(1912), + [anon_sym_bit_DASHshr2] = ACTIONS(1912), + [anon_sym_bit_DASHand2] = ACTIONS(1912), + [anon_sym_bit_DASHxor2] = ACTIONS(1912), + [anon_sym_bit_DASHor2] = ACTIONS(1912), + [anon_sym_err_GT] = ACTIONS(1914), + [anon_sym_out_GT] = ACTIONS(1914), + [anon_sym_e_GT] = ACTIONS(1914), + [anon_sym_o_GT] = ACTIONS(1914), + [anon_sym_err_PLUSout_GT] = ACTIONS(1914), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1914), + [anon_sym_o_PLUSe_GT] = ACTIONS(1914), + [anon_sym_e_PLUSo_GT] = ACTIONS(1914), + [anon_sym_err_GT_GT] = ACTIONS(1912), + [anon_sym_out_GT_GT] = ACTIONS(1912), + [anon_sym_e_GT_GT] = ACTIONS(1912), + [anon_sym_o_GT_GT] = ACTIONS(1912), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1912), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1912), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1912), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(933)] = { + [sym_comment] = STATE(933), + [ts_builtin_sym_end] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1713), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1713), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(934)] = { + [sym_comment] = STATE(934), + [anon_sym_in] = ACTIONS(2597), + [sym__newline] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_PIPE] = ACTIONS(2597), + [anon_sym_err_GT_PIPE] = ACTIONS(2597), + [anon_sym_out_GT_PIPE] = ACTIONS(2597), + [anon_sym_e_GT_PIPE] = ACTIONS(2597), + [anon_sym_o_GT_PIPE] = ACTIONS(2597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2597), + [anon_sym_RPAREN] = ACTIONS(2597), + [anon_sym_GT2] = ACTIONS(2599), + [anon_sym_DASH2] = ACTIONS(2597), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_EQ_GT] = ACTIONS(2597), + [anon_sym_STAR2] = ACTIONS(2599), + [anon_sym_and2] = ACTIONS(2597), + [anon_sym_xor2] = ACTIONS(2597), + [anon_sym_or2] = ACTIONS(2597), + [anon_sym_not_DASHin2] = ACTIONS(2597), + [anon_sym_has2] = ACTIONS(2597), + [anon_sym_not_DASHhas2] = ACTIONS(2597), + [anon_sym_starts_DASHwith2] = ACTIONS(2597), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2597), + [anon_sym_ends_DASHwith2] = ACTIONS(2597), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2597), + [anon_sym_EQ_EQ2] = ACTIONS(2597), + [anon_sym_BANG_EQ2] = ACTIONS(2597), + [anon_sym_LT2] = ACTIONS(2599), + [anon_sym_LT_EQ2] = ACTIONS(2597), + [anon_sym_GT_EQ2] = ACTIONS(2597), + [anon_sym_EQ_TILDE2] = ACTIONS(2597), + [anon_sym_BANG_TILDE2] = ACTIONS(2597), + [anon_sym_like2] = ACTIONS(2597), + [anon_sym_not_DASHlike2] = ACTIONS(2597), + [anon_sym_STAR_STAR2] = ACTIONS(2597), + [anon_sym_PLUS_PLUS2] = ACTIONS(2597), + [anon_sym_SLASH2] = ACTIONS(2599), + [anon_sym_mod2] = ACTIONS(2597), + [anon_sym_SLASH_SLASH2] = ACTIONS(2597), + [anon_sym_PLUS2] = ACTIONS(2599), + [anon_sym_bit_DASHshl2] = ACTIONS(2597), + [anon_sym_bit_DASHshr2] = ACTIONS(2597), + [anon_sym_bit_DASHand2] = ACTIONS(2597), + [anon_sym_bit_DASHxor2] = ACTIONS(2597), + [anon_sym_bit_DASHor2] = ACTIONS(2597), + [anon_sym_err_GT] = ACTIONS(2599), + [anon_sym_out_GT] = ACTIONS(2599), + [anon_sym_e_GT] = ACTIONS(2599), + [anon_sym_o_GT] = ACTIONS(2599), + [anon_sym_err_PLUSout_GT] = ACTIONS(2599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2599), + [anon_sym_o_PLUSe_GT] = ACTIONS(2599), + [anon_sym_e_PLUSo_GT] = ACTIONS(2599), + [anon_sym_err_GT_GT] = ACTIONS(2597), + [anon_sym_out_GT_GT] = ACTIONS(2597), + [anon_sym_e_GT_GT] = ACTIONS(2597), + [anon_sym_o_GT_GT] = ACTIONS(2597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2597), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(935)] = { + [sym_comment] = STATE(935), + [ts_builtin_sym_end] = ACTIONS(1973), + [anon_sym_in] = ACTIONS(1973), + [sym__newline] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_err_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_GT_PIPE] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), + [anon_sym_GT2] = ACTIONS(1975), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_STAR2] = ACTIONS(1975), + [anon_sym_and2] = ACTIONS(1973), + [anon_sym_xor2] = ACTIONS(1973), + [anon_sym_or2] = ACTIONS(1973), + [anon_sym_not_DASHin2] = ACTIONS(1973), + [anon_sym_has2] = ACTIONS(1973), + [anon_sym_not_DASHhas2] = ACTIONS(1973), + [anon_sym_starts_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), + [anon_sym_ends_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), + [anon_sym_EQ_EQ2] = ACTIONS(1973), + [anon_sym_BANG_EQ2] = ACTIONS(1973), + [anon_sym_LT2] = ACTIONS(1975), + [anon_sym_LT_EQ2] = ACTIONS(1973), + [anon_sym_GT_EQ2] = ACTIONS(1973), + [anon_sym_EQ_TILDE2] = ACTIONS(1973), + [anon_sym_BANG_TILDE2] = ACTIONS(1973), + [anon_sym_like2] = ACTIONS(1973), + [anon_sym_not_DASHlike2] = ACTIONS(1973), + [anon_sym_STAR_STAR2] = ACTIONS(1973), + [anon_sym_PLUS_PLUS2] = ACTIONS(1973), + [anon_sym_SLASH2] = ACTIONS(1975), + [anon_sym_mod2] = ACTIONS(1973), + [anon_sym_SLASH_SLASH2] = ACTIONS(1973), + [anon_sym_PLUS2] = ACTIONS(1975), + [anon_sym_bit_DASHshl2] = ACTIONS(1973), + [anon_sym_bit_DASHshr2] = ACTIONS(1973), + [anon_sym_bit_DASHand2] = ACTIONS(1973), + [anon_sym_bit_DASHxor2] = ACTIONS(1973), + [anon_sym_bit_DASHor2] = ACTIONS(1973), + [anon_sym_DOT_DOT2] = ACTIONS(2601), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2603), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2603), + [anon_sym_err_GT] = ACTIONS(1975), + [anon_sym_out_GT] = ACTIONS(1975), + [anon_sym_e_GT] = ACTIONS(1975), + [anon_sym_o_GT] = ACTIONS(1975), + [anon_sym_err_PLUSout_GT] = ACTIONS(1975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), + [anon_sym_o_PLUSe_GT] = ACTIONS(1975), + [anon_sym_e_PLUSo_GT] = ACTIONS(1975), + [anon_sym_err_GT_GT] = ACTIONS(1973), + [anon_sym_out_GT_GT] = ACTIONS(1973), + [anon_sym_e_GT_GT] = ACTIONS(1973), + [anon_sym_o_GT_GT] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(936)] = { + [sym_comment] = STATE(936), + [anon_sym_in] = ACTIONS(2162), + [sym__newline] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_err_GT_PIPE] = ACTIONS(2162), + [anon_sym_out_GT_PIPE] = ACTIONS(2162), + [anon_sym_e_GT_PIPE] = ACTIONS(2162), + [anon_sym_o_GT_PIPE] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2162), + [anon_sym_RPAREN] = ACTIONS(2162), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_EQ_GT] = ACTIONS(2162), + [anon_sym_STAR2] = ACTIONS(2164), + [anon_sym_and2] = ACTIONS(2162), + [anon_sym_xor2] = ACTIONS(2162), + [anon_sym_or2] = ACTIONS(2162), + [anon_sym_not_DASHin2] = ACTIONS(2162), + [anon_sym_has2] = ACTIONS(2162), + [anon_sym_not_DASHhas2] = ACTIONS(2162), + [anon_sym_starts_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), + [anon_sym_ends_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), + [anon_sym_EQ_EQ2] = ACTIONS(2162), + [anon_sym_BANG_EQ2] = ACTIONS(2162), + [anon_sym_LT2] = ACTIONS(2164), + [anon_sym_LT_EQ2] = ACTIONS(2162), + [anon_sym_GT_EQ2] = ACTIONS(2162), + [anon_sym_EQ_TILDE2] = ACTIONS(2162), + [anon_sym_BANG_TILDE2] = ACTIONS(2162), + [anon_sym_like2] = ACTIONS(2162), + [anon_sym_not_DASHlike2] = ACTIONS(2162), + [anon_sym_STAR_STAR2] = ACTIONS(2162), + [anon_sym_PLUS_PLUS2] = ACTIONS(2162), + [anon_sym_SLASH2] = ACTIONS(2164), + [anon_sym_mod2] = ACTIONS(2162), + [anon_sym_SLASH_SLASH2] = ACTIONS(2162), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_bit_DASHshl2] = ACTIONS(2162), + [anon_sym_bit_DASHshr2] = ACTIONS(2162), + [anon_sym_bit_DASHand2] = ACTIONS(2162), + [anon_sym_bit_DASHxor2] = ACTIONS(2162), + [anon_sym_bit_DASHor2] = ACTIONS(2162), + [anon_sym_err_GT] = ACTIONS(2164), + [anon_sym_out_GT] = ACTIONS(2164), + [anon_sym_e_GT] = ACTIONS(2164), + [anon_sym_o_GT] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT] = ACTIONS(2164), + [anon_sym_err_GT_GT] = ACTIONS(2162), + [anon_sym_out_GT_GT] = ACTIONS(2162), + [anon_sym_e_GT_GT] = ACTIONS(2162), + [anon_sym_o_GT_GT] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(937)] = { + [aux_sym__repeat_newline] = STATE(937), + [sym_comment] = STATE(937), + [anon_sym_export] = ACTIONS(1971), + [anon_sym_alias] = ACTIONS(1966), + [anon_sym_let] = ACTIONS(1966), + [anon_sym_mut] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [aux_sym_cmd_identifier_token1] = ACTIONS(1971), + [anon_sym_def] = ACTIONS(1966), + [anon_sym_use] = ACTIONS(1966), + [anon_sym_export_DASHenv] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym_module] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_loop] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [anon_sym_catch] = ACTIONS(1966), + [anon_sym_match] = ACTIONS(1966), + [anon_sym_in] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1966), + [aux_sym_cmd_identifier_token3] = ACTIONS(1966), + [aux_sym_cmd_identifier_token4] = ACTIONS(1966), + [aux_sym_cmd_identifier_token5] = ACTIONS(1966), + [sym__newline] = ACTIONS(2605), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_err_GT_PIPE] = ACTIONS(1966), + [anon_sym_out_GT_PIPE] = ACTIONS(1966), + [anon_sym_e_GT_PIPE] = ACTIONS(1966), + [anon_sym_o_GT_PIPE] = ACTIONS(1966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_DASH2] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_DOT_DOT] = ACTIONS(1971), + [anon_sym_where] = ACTIONS(1966), + [aux_sym_expr_unary_token1] = ACTIONS(1966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1971), + [aux_sym__val_number_decimal_token2] = ACTIONS(1966), + [aux_sym__val_number_decimal_token3] = ACTIONS(1966), + [aux_sym__val_number_decimal_token4] = ACTIONS(1966), + [aux_sym__val_number_token1] = ACTIONS(1966), + [aux_sym__val_number_token2] = ACTIONS(1966), + [aux_sym__val_number_token3] = ACTIONS(1966), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1971), + [anon_sym_0x] = ACTIONS(1971), + [sym_val_date] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1966), + [anon_sym_CARET] = ACTIONS(1966), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1966), + }, + [STATE(938)] = { + [sym_comment] = STATE(938), + [ts_builtin_sym_end] = ACTIONS(1858), [anon_sym_in] = ACTIONS(1858), [sym__newline] = ACTIONS(1858), [anon_sym_SEMI] = ACTIONS(1858), @@ -116638,12 +117872,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), [anon_sym_GT2] = ACTIONS(1860), [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_EQ_GT] = ACTIONS(1858), [anon_sym_STAR2] = ACTIONS(1860), [anon_sym_and2] = ACTIONS(1858), [anon_sym_xor2] = ACTIONS(1858), @@ -116675,6 +117905,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1858), [anon_sym_bit_DASHxor2] = ACTIONS(1858), [anon_sym_bit_DASHor2] = ACTIONS(1858), + [anon_sym_DOT_DOT2] = ACTIONS(1860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1858), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1858), [anon_sym_err_GT] = ACTIONS(1860), [anon_sym_out_GT] = ACTIONS(1860), [anon_sym_e_GT] = ACTIONS(1860), @@ -116693,2275 +117926,1792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(931)] = { - [sym_comment] = STATE(931), - [anon_sym_in] = ACTIONS(1018), - [sym__newline] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_err_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_GT_PIPE] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1018), - [anon_sym_xor2] = ACTIONS(1018), - [anon_sym_or2] = ACTIONS(1018), - [anon_sym_not_DASHin2] = ACTIONS(1018), - [anon_sym_has2] = ACTIONS(1018), - [anon_sym_not_DASHhas2] = ACTIONS(1018), - [anon_sym_starts_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), - [anon_sym_ends_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), - [anon_sym_EQ_EQ2] = ACTIONS(1018), - [anon_sym_BANG_EQ2] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1018), - [anon_sym_GT_EQ2] = ACTIONS(1018), - [anon_sym_EQ_TILDE2] = ACTIONS(1018), - [anon_sym_BANG_TILDE2] = ACTIONS(1018), - [anon_sym_like2] = ACTIONS(1018), - [anon_sym_not_DASHlike2] = ACTIONS(1018), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(1018), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1018), - [anon_sym_SLASH_SLASH2] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1018), - [anon_sym_bit_DASHshr2] = ACTIONS(1018), - [anon_sym_bit_DASHand2] = ACTIONS(1018), - [anon_sym_bit_DASHxor2] = ACTIONS(1018), - [anon_sym_bit_DASHor2] = ACTIONS(1018), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1018), - [anon_sym_out_GT_GT] = ACTIONS(1018), - [anon_sym_e_GT_GT] = ACTIONS(1018), - [anon_sym_o_GT_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), - [sym__unquoted_pattern] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(932)] = { - [sym_comment] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(933)] = { - [sym_comment] = STATE(933), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1558), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(934)] = { - [sym_comment] = STATE(934), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2589), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(935)] = { - [sym_comment] = STATE(935), - [ts_builtin_sym_end] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_err_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_GT_PIPE] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_GT2] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1822), - [anon_sym_STAR2] = ACTIONS(1824), - [anon_sym_and2] = ACTIONS(1822), - [anon_sym_xor2] = ACTIONS(1822), - [anon_sym_or2] = ACTIONS(1822), - [anon_sym_not_DASHin2] = ACTIONS(1822), - [anon_sym_has2] = ACTIONS(1822), - [anon_sym_not_DASHhas2] = ACTIONS(1822), - [anon_sym_starts_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1822), - [anon_sym_ends_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1822), - [anon_sym_EQ_EQ2] = ACTIONS(1822), - [anon_sym_BANG_EQ2] = ACTIONS(1822), - [anon_sym_LT2] = ACTIONS(1824), - [anon_sym_LT_EQ2] = ACTIONS(1822), - [anon_sym_GT_EQ2] = ACTIONS(1822), - [anon_sym_EQ_TILDE2] = ACTIONS(1822), - [anon_sym_BANG_TILDE2] = ACTIONS(1822), - [anon_sym_like2] = ACTIONS(1822), - [anon_sym_not_DASHlike2] = ACTIONS(1822), - [anon_sym_STAR_STAR2] = ACTIONS(1822), - [anon_sym_PLUS_PLUS2] = ACTIONS(1822), - [anon_sym_SLASH2] = ACTIONS(1824), - [anon_sym_mod2] = ACTIONS(1822), - [anon_sym_SLASH_SLASH2] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_bit_DASHshl2] = ACTIONS(1822), - [anon_sym_bit_DASHshr2] = ACTIONS(1822), - [anon_sym_bit_DASHand2] = ACTIONS(1822), - [anon_sym_bit_DASHxor2] = ACTIONS(1822), - [anon_sym_bit_DASHor2] = ACTIONS(1822), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(936)] = { - [sym_comment] = STATE(936), - [anon_sym_in] = ACTIONS(2591), - [sym__newline] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_PIPE] = ACTIONS(2591), - [anon_sym_err_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_GT_PIPE] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2591), - [anon_sym_GT2] = ACTIONS(2593), - [anon_sym_DASH2] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2591), - [anon_sym_EQ_GT] = ACTIONS(2591), - [anon_sym_STAR2] = ACTIONS(2593), - [anon_sym_and2] = ACTIONS(2591), - [anon_sym_xor2] = ACTIONS(2591), - [anon_sym_or2] = ACTIONS(2591), - [anon_sym_not_DASHin2] = ACTIONS(2591), - [anon_sym_has2] = ACTIONS(2591), - [anon_sym_not_DASHhas2] = ACTIONS(2591), - [anon_sym_starts_DASHwith2] = ACTIONS(2591), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2591), - [anon_sym_ends_DASHwith2] = ACTIONS(2591), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2591), - [anon_sym_EQ_EQ2] = ACTIONS(2591), - [anon_sym_BANG_EQ2] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2593), - [anon_sym_LT_EQ2] = ACTIONS(2591), - [anon_sym_GT_EQ2] = ACTIONS(2591), - [anon_sym_EQ_TILDE2] = ACTIONS(2591), - [anon_sym_BANG_TILDE2] = ACTIONS(2591), - [anon_sym_like2] = ACTIONS(2591), - [anon_sym_not_DASHlike2] = ACTIONS(2591), - [anon_sym_STAR_STAR2] = ACTIONS(2591), - [anon_sym_PLUS_PLUS2] = ACTIONS(2591), - [anon_sym_SLASH2] = ACTIONS(2593), - [anon_sym_mod2] = ACTIONS(2591), - [anon_sym_SLASH_SLASH2] = ACTIONS(2591), - [anon_sym_PLUS2] = ACTIONS(2593), - [anon_sym_bit_DASHshl2] = ACTIONS(2591), - [anon_sym_bit_DASHshr2] = ACTIONS(2591), - [anon_sym_bit_DASHand2] = ACTIONS(2591), - [anon_sym_bit_DASHxor2] = ACTIONS(2591), - [anon_sym_bit_DASHor2] = ACTIONS(2591), - [anon_sym_err_GT] = ACTIONS(2593), - [anon_sym_out_GT] = ACTIONS(2593), - [anon_sym_e_GT] = ACTIONS(2593), - [anon_sym_o_GT] = ACTIONS(2593), - [anon_sym_err_PLUSout_GT] = ACTIONS(2593), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), - [anon_sym_o_PLUSe_GT] = ACTIONS(2593), - [anon_sym_e_PLUSo_GT] = ACTIONS(2593), - [anon_sym_err_GT_GT] = ACTIONS(2591), - [anon_sym_out_GT_GT] = ACTIONS(2591), - [anon_sym_e_GT_GT] = ACTIONS(2591), - [anon_sym_o_GT_GT] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(937)] = { - [sym_comment] = STATE(937), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(2595), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [sym__unquoted_pattern] = ACTIONS(2597), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(938)] = { - [sym_comment] = STATE(938), - [ts_builtin_sym_end] = ACTIONS(1874), - [anon_sym_in] = ACTIONS(1874), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_GT2] = ACTIONS(1876), - [anon_sym_DASH2] = ACTIONS(1874), - [anon_sym_STAR2] = ACTIONS(1876), - [anon_sym_and2] = ACTIONS(1874), - [anon_sym_xor2] = ACTIONS(1874), - [anon_sym_or2] = ACTIONS(1874), - [anon_sym_not_DASHin2] = ACTIONS(1874), - [anon_sym_has2] = ACTIONS(1874), - [anon_sym_not_DASHhas2] = ACTIONS(1874), - [anon_sym_starts_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), - [anon_sym_ends_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), - [anon_sym_EQ_EQ2] = ACTIONS(1874), - [anon_sym_BANG_EQ2] = ACTIONS(1874), - [anon_sym_LT2] = ACTIONS(1876), - [anon_sym_LT_EQ2] = ACTIONS(1874), - [anon_sym_GT_EQ2] = ACTIONS(1874), - [anon_sym_EQ_TILDE2] = ACTIONS(1874), - [anon_sym_BANG_TILDE2] = ACTIONS(1874), - [anon_sym_like2] = ACTIONS(1874), - [anon_sym_not_DASHlike2] = ACTIONS(1874), - [anon_sym_STAR_STAR2] = ACTIONS(1874), - [anon_sym_PLUS_PLUS2] = ACTIONS(1874), - [anon_sym_SLASH2] = ACTIONS(1876), - [anon_sym_mod2] = ACTIONS(1874), - [anon_sym_SLASH_SLASH2] = ACTIONS(1874), - [anon_sym_PLUS2] = ACTIONS(1876), - [anon_sym_bit_DASHshl2] = ACTIONS(1874), - [anon_sym_bit_DASHshr2] = ACTIONS(1874), - [anon_sym_bit_DASHand2] = ACTIONS(1874), - [anon_sym_bit_DASHxor2] = ACTIONS(1874), - [anon_sym_bit_DASHor2] = ACTIONS(1874), - [anon_sym_DOT_DOT2] = ACTIONS(1876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1876), - [anon_sym_out_GT] = ACTIONS(1876), - [anon_sym_e_GT] = ACTIONS(1876), - [anon_sym_o_GT] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT] = ACTIONS(1876), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(939)] = { [sym_comment] = STATE(939), - [ts_builtin_sym_end] = ACTIONS(2136), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [anon_sym_in] = ACTIONS(1862), + [sym__newline] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_err_GT_PIPE] = ACTIONS(1862), + [anon_sym_out_GT_PIPE] = ACTIONS(1862), + [anon_sym_e_GT_PIPE] = ACTIONS(1862), + [anon_sym_o_GT_PIPE] = ACTIONS(1862), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_GT2] = ACTIONS(1864), + [anon_sym_DASH2] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_EQ_GT] = ACTIONS(1862), + [anon_sym_STAR2] = ACTIONS(1864), + [anon_sym_and2] = ACTIONS(1862), + [anon_sym_xor2] = ACTIONS(1862), + [anon_sym_or2] = ACTIONS(1862), + [anon_sym_not_DASHin2] = ACTIONS(1862), + [anon_sym_has2] = ACTIONS(1862), + [anon_sym_not_DASHhas2] = ACTIONS(1862), + [anon_sym_starts_DASHwith2] = ACTIONS(1862), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), + [anon_sym_ends_DASHwith2] = ACTIONS(1862), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), + [anon_sym_EQ_EQ2] = ACTIONS(1862), + [anon_sym_BANG_EQ2] = ACTIONS(1862), + [anon_sym_LT2] = ACTIONS(1864), + [anon_sym_LT_EQ2] = ACTIONS(1862), + [anon_sym_GT_EQ2] = ACTIONS(1862), + [anon_sym_EQ_TILDE2] = ACTIONS(1862), + [anon_sym_BANG_TILDE2] = ACTIONS(1862), + [anon_sym_like2] = ACTIONS(1862), + [anon_sym_not_DASHlike2] = ACTIONS(1862), + [anon_sym_STAR_STAR2] = ACTIONS(1862), + [anon_sym_PLUS_PLUS2] = ACTIONS(1862), + [anon_sym_SLASH2] = ACTIONS(1864), + [anon_sym_mod2] = ACTIONS(1862), + [anon_sym_SLASH_SLASH2] = ACTIONS(1862), + [anon_sym_PLUS2] = ACTIONS(1864), + [anon_sym_bit_DASHshl2] = ACTIONS(1862), + [anon_sym_bit_DASHshr2] = ACTIONS(1862), + [anon_sym_bit_DASHand2] = ACTIONS(1862), + [anon_sym_bit_DASHxor2] = ACTIONS(1862), + [anon_sym_bit_DASHor2] = ACTIONS(1862), + [anon_sym_err_GT] = ACTIONS(1864), + [anon_sym_out_GT] = ACTIONS(1864), + [anon_sym_e_GT] = ACTIONS(1864), + [anon_sym_o_GT] = ACTIONS(1864), + [anon_sym_err_PLUSout_GT] = ACTIONS(1864), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), + [anon_sym_o_PLUSe_GT] = ACTIONS(1864), + [anon_sym_e_PLUSo_GT] = ACTIONS(1864), + [anon_sym_err_GT_GT] = ACTIONS(1862), + [anon_sym_out_GT_GT] = ACTIONS(1862), + [anon_sym_e_GT_GT] = ACTIONS(1862), + [anon_sym_o_GT_GT] = ACTIONS(1862), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), [anon_sym_POUND] = ACTIONS(3), }, [STATE(940)] = { [sym_comment] = STATE(940), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(2307), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(2608), + [sym__newline] = ACTIONS(2608), + [anon_sym_SEMI] = ACTIONS(2608), + [anon_sym_PIPE] = ACTIONS(2608), + [anon_sym_err_GT_PIPE] = ACTIONS(2608), + [anon_sym_out_GT_PIPE] = ACTIONS(2608), + [anon_sym_e_GT_PIPE] = ACTIONS(2608), + [anon_sym_o_GT_PIPE] = ACTIONS(2608), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2608), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2608), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2608), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2608), + [anon_sym_RPAREN] = ACTIONS(2608), + [anon_sym_GT2] = ACTIONS(2610), + [anon_sym_DASH2] = ACTIONS(2608), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_RBRACE] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_STAR2] = ACTIONS(2610), + [anon_sym_and2] = ACTIONS(2608), + [anon_sym_xor2] = ACTIONS(2608), + [anon_sym_or2] = ACTIONS(2608), + [anon_sym_not_DASHin2] = ACTIONS(2608), + [anon_sym_has2] = ACTIONS(2608), + [anon_sym_not_DASHhas2] = ACTIONS(2608), + [anon_sym_starts_DASHwith2] = ACTIONS(2608), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2608), + [anon_sym_ends_DASHwith2] = ACTIONS(2608), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2608), + [anon_sym_EQ_EQ2] = ACTIONS(2608), + [anon_sym_BANG_EQ2] = ACTIONS(2608), + [anon_sym_LT2] = ACTIONS(2610), + [anon_sym_LT_EQ2] = ACTIONS(2608), + [anon_sym_GT_EQ2] = ACTIONS(2608), + [anon_sym_EQ_TILDE2] = ACTIONS(2608), + [anon_sym_BANG_TILDE2] = ACTIONS(2608), + [anon_sym_like2] = ACTIONS(2608), + [anon_sym_not_DASHlike2] = ACTIONS(2608), + [anon_sym_STAR_STAR2] = ACTIONS(2608), + [anon_sym_PLUS_PLUS2] = ACTIONS(2608), + [anon_sym_SLASH2] = ACTIONS(2610), + [anon_sym_mod2] = ACTIONS(2608), + [anon_sym_SLASH_SLASH2] = ACTIONS(2608), + [anon_sym_PLUS2] = ACTIONS(2610), + [anon_sym_bit_DASHshl2] = ACTIONS(2608), + [anon_sym_bit_DASHshr2] = ACTIONS(2608), + [anon_sym_bit_DASHand2] = ACTIONS(2608), + [anon_sym_bit_DASHxor2] = ACTIONS(2608), + [anon_sym_bit_DASHor2] = ACTIONS(2608), + [anon_sym_err_GT] = ACTIONS(2610), + [anon_sym_out_GT] = ACTIONS(2610), + [anon_sym_e_GT] = ACTIONS(2610), + [anon_sym_o_GT] = ACTIONS(2610), + [anon_sym_err_PLUSout_GT] = ACTIONS(2610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2610), + [anon_sym_o_PLUSe_GT] = ACTIONS(2610), + [anon_sym_e_PLUSo_GT] = ACTIONS(2610), + [anon_sym_err_GT_GT] = ACTIONS(2608), + [anon_sym_out_GT_GT] = ACTIONS(2608), + [anon_sym_e_GT_GT] = ACTIONS(2608), + [anon_sym_o_GT_GT] = ACTIONS(2608), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2608), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2608), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2608), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2608), [anon_sym_POUND] = ACTIONS(3), }, [STATE(941)] = { [sym_comment] = STATE(941), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), + [ts_builtin_sym_end] = ACTIONS(1892), + [anon_sym_in] = ACTIONS(1892), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_GT2] = ACTIONS(1894), + [anon_sym_DASH2] = ACTIONS(1892), + [anon_sym_STAR2] = ACTIONS(1894), + [anon_sym_and2] = ACTIONS(1892), + [anon_sym_xor2] = ACTIONS(1892), + [anon_sym_or2] = ACTIONS(1892), + [anon_sym_not_DASHin2] = ACTIONS(1892), + [anon_sym_has2] = ACTIONS(1892), + [anon_sym_not_DASHhas2] = ACTIONS(1892), + [anon_sym_starts_DASHwith2] = ACTIONS(1892), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1892), + [anon_sym_ends_DASHwith2] = ACTIONS(1892), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1892), + [anon_sym_EQ_EQ2] = ACTIONS(1892), + [anon_sym_BANG_EQ2] = ACTIONS(1892), + [anon_sym_LT2] = ACTIONS(1894), + [anon_sym_LT_EQ2] = ACTIONS(1892), + [anon_sym_GT_EQ2] = ACTIONS(1892), + [anon_sym_EQ_TILDE2] = ACTIONS(1892), + [anon_sym_BANG_TILDE2] = ACTIONS(1892), + [anon_sym_like2] = ACTIONS(1892), + [anon_sym_not_DASHlike2] = ACTIONS(1892), + [anon_sym_STAR_STAR2] = ACTIONS(1892), + [anon_sym_PLUS_PLUS2] = ACTIONS(1892), + [anon_sym_SLASH2] = ACTIONS(1894), + [anon_sym_mod2] = ACTIONS(1892), + [anon_sym_SLASH_SLASH2] = ACTIONS(1892), + [anon_sym_PLUS2] = ACTIONS(1894), + [anon_sym_bit_DASHshl2] = ACTIONS(1892), + [anon_sym_bit_DASHshr2] = ACTIONS(1892), + [anon_sym_bit_DASHand2] = ACTIONS(1892), + [anon_sym_bit_DASHxor2] = ACTIONS(1892), + [anon_sym_bit_DASHor2] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1894), + [anon_sym_out_GT] = ACTIONS(1894), + [anon_sym_e_GT] = ACTIONS(1894), + [anon_sym_o_GT] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT] = ACTIONS(1894), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), [anon_sym_POUND] = ACTIONS(3), }, [STATE(942)] = { [sym_comment] = STATE(942), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1886), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_GT2] = ACTIONS(1888), - [anon_sym_DASH2] = ACTIONS(1886), - [anon_sym_STAR2] = ACTIONS(1888), - [anon_sym_and2] = ACTIONS(1886), - [anon_sym_xor2] = ACTIONS(1886), - [anon_sym_or2] = ACTIONS(1886), - [anon_sym_not_DASHin2] = ACTIONS(1886), - [anon_sym_has2] = ACTIONS(1886), - [anon_sym_not_DASHhas2] = ACTIONS(1886), - [anon_sym_starts_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1886), - [anon_sym_ends_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1886), - [anon_sym_EQ_EQ2] = ACTIONS(1886), - [anon_sym_BANG_EQ2] = ACTIONS(1886), - [anon_sym_LT2] = ACTIONS(1888), - [anon_sym_LT_EQ2] = ACTIONS(1886), - [anon_sym_GT_EQ2] = ACTIONS(1886), - [anon_sym_EQ_TILDE2] = ACTIONS(1886), - [anon_sym_BANG_TILDE2] = ACTIONS(1886), - [anon_sym_like2] = ACTIONS(1886), - [anon_sym_not_DASHlike2] = ACTIONS(1886), - [anon_sym_STAR_STAR2] = ACTIONS(1886), - [anon_sym_PLUS_PLUS2] = ACTIONS(1886), - [anon_sym_SLASH2] = ACTIONS(1888), - [anon_sym_mod2] = ACTIONS(1886), - [anon_sym_SLASH_SLASH2] = ACTIONS(1886), - [anon_sym_PLUS2] = ACTIONS(1888), - [anon_sym_bit_DASHshl2] = ACTIONS(1886), - [anon_sym_bit_DASHshr2] = ACTIONS(1886), - [anon_sym_bit_DASHand2] = ACTIONS(1886), - [anon_sym_bit_DASHxor2] = ACTIONS(1886), - [anon_sym_bit_DASHor2] = ACTIONS(1886), - [anon_sym_DOT_DOT2] = ACTIONS(1888), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1888), - [anon_sym_out_GT] = ACTIONS(1888), - [anon_sym_e_GT] = ACTIONS(1888), - [anon_sym_o_GT] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT] = ACTIONS(1888), - [anon_sym_err_GT_GT] = ACTIONS(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_RPAREN] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_LPAREN2] = ACTIONS(2612), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1713), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [sym__unquoted_pattern] = ACTIONS(2614), [anon_sym_POUND] = ACTIONS(3), }, [STATE(943)] = { [sym_comment] = STATE(943), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_EQ_GT] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [ts_builtin_sym_end] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [aux_sym__immediate_decimal_token5] = ACTIONS(2333), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [sym__unquoted_pattern] = ACTIONS(1746), [anon_sym_POUND] = ACTIONS(3), }, [STATE(944)] = { [sym_comment] = STATE(944), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_EQ_GT] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [ts_builtin_sym_end] = ACTIONS(1878), + [anon_sym_in] = ACTIONS(1878), + [sym__newline] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_err_GT_PIPE] = ACTIONS(1878), + [anon_sym_out_GT_PIPE] = ACTIONS(1878), + [anon_sym_e_GT_PIPE] = ACTIONS(1878), + [anon_sym_o_GT_PIPE] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), + [anon_sym_GT2] = ACTIONS(1880), + [anon_sym_DASH2] = ACTIONS(1878), + [anon_sym_STAR2] = ACTIONS(1880), + [anon_sym_and2] = ACTIONS(1878), + [anon_sym_xor2] = ACTIONS(1878), + [anon_sym_or2] = ACTIONS(1878), + [anon_sym_not_DASHin2] = ACTIONS(1878), + [anon_sym_has2] = ACTIONS(1878), + [anon_sym_not_DASHhas2] = ACTIONS(1878), + [anon_sym_starts_DASHwith2] = ACTIONS(1878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1878), + [anon_sym_ends_DASHwith2] = ACTIONS(1878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1878), + [anon_sym_EQ_EQ2] = ACTIONS(1878), + [anon_sym_BANG_EQ2] = ACTIONS(1878), + [anon_sym_LT2] = ACTIONS(1880), + [anon_sym_LT_EQ2] = ACTIONS(1878), + [anon_sym_GT_EQ2] = ACTIONS(1878), + [anon_sym_EQ_TILDE2] = ACTIONS(1878), + [anon_sym_BANG_TILDE2] = ACTIONS(1878), + [anon_sym_like2] = ACTIONS(1878), + [anon_sym_not_DASHlike2] = ACTIONS(1878), + [anon_sym_STAR_STAR2] = ACTIONS(1878), + [anon_sym_PLUS_PLUS2] = ACTIONS(1878), + [anon_sym_SLASH2] = ACTIONS(1880), + [anon_sym_mod2] = ACTIONS(1878), + [anon_sym_SLASH_SLASH2] = ACTIONS(1878), + [anon_sym_PLUS2] = ACTIONS(1880), + [anon_sym_bit_DASHshl2] = ACTIONS(1878), + [anon_sym_bit_DASHshr2] = ACTIONS(1878), + [anon_sym_bit_DASHand2] = ACTIONS(1878), + [anon_sym_bit_DASHxor2] = ACTIONS(1878), + [anon_sym_bit_DASHor2] = ACTIONS(1878), + [anon_sym_DOT_DOT2] = ACTIONS(1880), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1878), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1878), + [anon_sym_err_GT] = ACTIONS(1880), + [anon_sym_out_GT] = ACTIONS(1880), + [anon_sym_e_GT] = ACTIONS(1880), + [anon_sym_o_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT] = ACTIONS(1880), + [anon_sym_err_GT_GT] = ACTIONS(1878), + [anon_sym_out_GT_GT] = ACTIONS(1878), + [anon_sym_e_GT_GT] = ACTIONS(1878), + [anon_sym_o_GT_GT] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), [anon_sym_POUND] = ACTIONS(3), }, [STATE(945)] = { [sym_comment] = STATE(945), - [anon_sym_in] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(2599), - [anon_sym_err_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_GT_PIPE] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2599), - [anon_sym_RPAREN] = ACTIONS(2599), - [anon_sym_GT2] = ACTIONS(2601), - [anon_sym_DASH2] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_EQ_GT] = ACTIONS(2599), - [anon_sym_STAR2] = ACTIONS(2601), - [anon_sym_and2] = ACTIONS(2599), - [anon_sym_xor2] = ACTIONS(2599), - [anon_sym_or2] = ACTIONS(2599), - [anon_sym_not_DASHin2] = ACTIONS(2599), - [anon_sym_has2] = ACTIONS(2599), - [anon_sym_not_DASHhas2] = ACTIONS(2599), - [anon_sym_starts_DASHwith2] = ACTIONS(2599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2599), - [anon_sym_ends_DASHwith2] = ACTIONS(2599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2599), - [anon_sym_EQ_EQ2] = ACTIONS(2599), - [anon_sym_BANG_EQ2] = ACTIONS(2599), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LT_EQ2] = ACTIONS(2599), - [anon_sym_GT_EQ2] = ACTIONS(2599), - [anon_sym_EQ_TILDE2] = ACTIONS(2599), - [anon_sym_BANG_TILDE2] = ACTIONS(2599), - [anon_sym_like2] = ACTIONS(2599), - [anon_sym_not_DASHlike2] = ACTIONS(2599), - [anon_sym_STAR_STAR2] = ACTIONS(2599), - [anon_sym_PLUS_PLUS2] = ACTIONS(2599), - [anon_sym_SLASH2] = ACTIONS(2601), - [anon_sym_mod2] = ACTIONS(2599), - [anon_sym_SLASH_SLASH2] = ACTIONS(2599), - [anon_sym_PLUS2] = ACTIONS(2601), - [anon_sym_bit_DASHshl2] = ACTIONS(2599), - [anon_sym_bit_DASHshr2] = ACTIONS(2599), - [anon_sym_bit_DASHand2] = ACTIONS(2599), - [anon_sym_bit_DASHxor2] = ACTIONS(2599), - [anon_sym_bit_DASHor2] = ACTIONS(2599), - [anon_sym_err_GT] = ACTIONS(2601), - [anon_sym_out_GT] = ACTIONS(2601), - [anon_sym_e_GT] = ACTIONS(2601), - [anon_sym_o_GT] = ACTIONS(2601), - [anon_sym_err_PLUSout_GT] = ACTIONS(2601), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2601), - [anon_sym_o_PLUSe_GT] = ACTIONS(2601), - [anon_sym_e_PLUSo_GT] = ACTIONS(2601), - [anon_sym_err_GT_GT] = ACTIONS(2599), - [anon_sym_out_GT_GT] = ACTIONS(2599), - [anon_sym_e_GT_GT] = ACTIONS(2599), - [anon_sym_o_GT_GT] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2599), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1960), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [sym__unquoted_pattern] = ACTIONS(1635), [anon_sym_POUND] = ACTIONS(3), }, [STATE(946)] = { [sym_comment] = STATE(946), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_EQ_GT] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_RPAREN] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(1713), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1713), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), [anon_sym_POUND] = ACTIONS(3), }, [STATE(947)] = { [sym_comment] = STATE(947), - [anon_sym_in] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_PIPE] = ACTIONS(2603), - [anon_sym_err_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_GT_PIPE] = ACTIONS(2603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2603), - [anon_sym_RPAREN] = ACTIONS(2603), - [anon_sym_GT2] = ACTIONS(2605), - [anon_sym_DASH2] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_EQ_GT] = ACTIONS(2603), - [anon_sym_STAR2] = ACTIONS(2605), - [anon_sym_and2] = ACTIONS(2603), - [anon_sym_xor2] = ACTIONS(2603), - [anon_sym_or2] = ACTIONS(2603), - [anon_sym_not_DASHin2] = ACTIONS(2603), - [anon_sym_has2] = ACTIONS(2603), - [anon_sym_not_DASHhas2] = ACTIONS(2603), - [anon_sym_starts_DASHwith2] = ACTIONS(2603), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2603), - [anon_sym_ends_DASHwith2] = ACTIONS(2603), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2603), - [anon_sym_EQ_EQ2] = ACTIONS(2603), - [anon_sym_BANG_EQ2] = ACTIONS(2603), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LT_EQ2] = ACTIONS(2603), - [anon_sym_GT_EQ2] = ACTIONS(2603), - [anon_sym_EQ_TILDE2] = ACTIONS(2603), - [anon_sym_BANG_TILDE2] = ACTIONS(2603), - [anon_sym_like2] = ACTIONS(2603), - [anon_sym_not_DASHlike2] = ACTIONS(2603), - [anon_sym_STAR_STAR2] = ACTIONS(2603), - [anon_sym_PLUS_PLUS2] = ACTIONS(2603), - [anon_sym_SLASH2] = ACTIONS(2605), - [anon_sym_mod2] = ACTIONS(2603), - [anon_sym_SLASH_SLASH2] = ACTIONS(2603), - [anon_sym_PLUS2] = ACTIONS(2605), - [anon_sym_bit_DASHshl2] = ACTIONS(2603), - [anon_sym_bit_DASHshr2] = ACTIONS(2603), - [anon_sym_bit_DASHand2] = ACTIONS(2603), - [anon_sym_bit_DASHxor2] = ACTIONS(2603), - [anon_sym_bit_DASHor2] = ACTIONS(2603), - [anon_sym_err_GT] = ACTIONS(2605), - [anon_sym_out_GT] = ACTIONS(2605), - [anon_sym_e_GT] = ACTIONS(2605), - [anon_sym_o_GT] = ACTIONS(2605), - [anon_sym_err_PLUSout_GT] = ACTIONS(2605), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2605), - [anon_sym_o_PLUSe_GT] = ACTIONS(2605), - [anon_sym_e_PLUSo_GT] = ACTIONS(2605), - [anon_sym_err_GT_GT] = ACTIONS(2603), - [anon_sym_out_GT_GT] = ACTIONS(2603), - [anon_sym_e_GT_GT] = ACTIONS(2603), - [anon_sym_o_GT_GT] = ACTIONS(2603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2603), + [anon_sym_in] = ACTIONS(2162), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2164), + [anon_sym_and2] = ACTIONS(2162), + [anon_sym_xor2] = ACTIONS(2162), + [anon_sym_or2] = ACTIONS(2162), + [anon_sym_not_DASHin2] = ACTIONS(2162), + [anon_sym_has2] = ACTIONS(2162), + [anon_sym_not_DASHhas2] = ACTIONS(2162), + [anon_sym_starts_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), + [anon_sym_ends_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), + [anon_sym_EQ_EQ2] = ACTIONS(2162), + [anon_sym_BANG_EQ2] = ACTIONS(2162), + [anon_sym_LT2] = ACTIONS(2164), + [anon_sym_LT_EQ2] = ACTIONS(2162), + [anon_sym_GT_EQ2] = ACTIONS(2162), + [anon_sym_EQ_TILDE2] = ACTIONS(2162), + [anon_sym_BANG_TILDE2] = ACTIONS(2162), + [anon_sym_like2] = ACTIONS(2162), + [anon_sym_not_DASHlike2] = ACTIONS(2162), + [anon_sym_STAR_STAR2] = ACTIONS(2162), + [anon_sym_PLUS_PLUS2] = ACTIONS(2162), + [anon_sym_SLASH2] = ACTIONS(2164), + [anon_sym_mod2] = ACTIONS(2162), + [anon_sym_SLASH_SLASH2] = ACTIONS(2162), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_bit_DASHshl2] = ACTIONS(2162), + [anon_sym_bit_DASHshr2] = ACTIONS(2162), + [anon_sym_bit_DASHand2] = ACTIONS(2162), + [anon_sym_bit_DASHxor2] = ACTIONS(2162), + [anon_sym_bit_DASHor2] = ACTIONS(2162), + [anon_sym_err_GT] = ACTIONS(2168), + [anon_sym_out_GT] = ACTIONS(2168), + [anon_sym_e_GT] = ACTIONS(2168), + [anon_sym_o_GT] = ACTIONS(2168), + [anon_sym_err_PLUSout_GT] = ACTIONS(2168), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), + [anon_sym_o_PLUSe_GT] = ACTIONS(2168), + [anon_sym_e_PLUSo_GT] = ACTIONS(2168), + [anon_sym_err_GT_GT] = ACTIONS(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), [anon_sym_POUND] = ACTIONS(3), }, [STATE(948)] = { [sym_comment] = STATE(948), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(2616), + [sym__newline] = ACTIONS(2616), + [anon_sym_SEMI] = ACTIONS(2616), + [anon_sym_PIPE] = ACTIONS(2616), + [anon_sym_err_GT_PIPE] = ACTIONS(2616), + [anon_sym_out_GT_PIPE] = ACTIONS(2616), + [anon_sym_e_GT_PIPE] = ACTIONS(2616), + [anon_sym_o_GT_PIPE] = ACTIONS(2616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2616), + [anon_sym_RPAREN] = ACTIONS(2616), + [anon_sym_GT2] = ACTIONS(2618), + [anon_sym_DASH2] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2616), + [anon_sym_RBRACE] = ACTIONS(2616), + [anon_sym_EQ_GT] = ACTIONS(2616), + [anon_sym_STAR2] = ACTIONS(2618), + [anon_sym_and2] = ACTIONS(2616), + [anon_sym_xor2] = ACTIONS(2616), + [anon_sym_or2] = ACTIONS(2616), + [anon_sym_not_DASHin2] = ACTIONS(2616), + [anon_sym_has2] = ACTIONS(2616), + [anon_sym_not_DASHhas2] = ACTIONS(2616), + [anon_sym_starts_DASHwith2] = ACTIONS(2616), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2616), + [anon_sym_ends_DASHwith2] = ACTIONS(2616), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2616), + [anon_sym_EQ_EQ2] = ACTIONS(2616), + [anon_sym_BANG_EQ2] = ACTIONS(2616), + [anon_sym_LT2] = ACTIONS(2618), + [anon_sym_LT_EQ2] = ACTIONS(2616), + [anon_sym_GT_EQ2] = ACTIONS(2616), + [anon_sym_EQ_TILDE2] = ACTIONS(2616), + [anon_sym_BANG_TILDE2] = ACTIONS(2616), + [anon_sym_like2] = ACTIONS(2616), + [anon_sym_not_DASHlike2] = ACTIONS(2616), + [anon_sym_STAR_STAR2] = ACTIONS(2616), + [anon_sym_PLUS_PLUS2] = ACTIONS(2616), + [anon_sym_SLASH2] = ACTIONS(2618), + [anon_sym_mod2] = ACTIONS(2616), + [anon_sym_SLASH_SLASH2] = ACTIONS(2616), + [anon_sym_PLUS2] = ACTIONS(2618), + [anon_sym_bit_DASHshl2] = ACTIONS(2616), + [anon_sym_bit_DASHshr2] = ACTIONS(2616), + [anon_sym_bit_DASHand2] = ACTIONS(2616), + [anon_sym_bit_DASHxor2] = ACTIONS(2616), + [anon_sym_bit_DASHor2] = ACTIONS(2616), + [anon_sym_err_GT] = ACTIONS(2618), + [anon_sym_out_GT] = ACTIONS(2618), + [anon_sym_e_GT] = ACTIONS(2618), + [anon_sym_o_GT] = ACTIONS(2618), + [anon_sym_err_PLUSout_GT] = ACTIONS(2618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2618), + [anon_sym_o_PLUSe_GT] = ACTIONS(2618), + [anon_sym_e_PLUSo_GT] = ACTIONS(2618), + [anon_sym_err_GT_GT] = ACTIONS(2616), + [anon_sym_out_GT_GT] = ACTIONS(2616), + [anon_sym_e_GT_GT] = ACTIONS(2616), + [anon_sym_o_GT_GT] = ACTIONS(2616), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2616), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2616), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2616), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2616), [anon_sym_POUND] = ACTIONS(3), }, [STATE(949)] = { [sym_comment] = STATE(949), - [anon_sym_in] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_PIPE] = ACTIONS(2607), - [anon_sym_err_GT_PIPE] = ACTIONS(2607), - [anon_sym_out_GT_PIPE] = ACTIONS(2607), - [anon_sym_e_GT_PIPE] = ACTIONS(2607), - [anon_sym_o_GT_PIPE] = ACTIONS(2607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2607), - [anon_sym_RPAREN] = ACTIONS(2607), - [anon_sym_GT2] = ACTIONS(2609), - [anon_sym_DASH2] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_EQ_GT] = ACTIONS(2607), - [anon_sym_STAR2] = ACTIONS(2609), - [anon_sym_and2] = ACTIONS(2607), - [anon_sym_xor2] = ACTIONS(2607), - [anon_sym_or2] = ACTIONS(2607), - [anon_sym_not_DASHin2] = ACTIONS(2607), - [anon_sym_has2] = ACTIONS(2607), - [anon_sym_not_DASHhas2] = ACTIONS(2607), - [anon_sym_starts_DASHwith2] = ACTIONS(2607), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2607), - [anon_sym_ends_DASHwith2] = ACTIONS(2607), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2607), - [anon_sym_EQ_EQ2] = ACTIONS(2607), - [anon_sym_BANG_EQ2] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LT_EQ2] = ACTIONS(2607), - [anon_sym_GT_EQ2] = ACTIONS(2607), - [anon_sym_EQ_TILDE2] = ACTIONS(2607), - [anon_sym_BANG_TILDE2] = ACTIONS(2607), - [anon_sym_like2] = ACTIONS(2607), - [anon_sym_not_DASHlike2] = ACTIONS(2607), - [anon_sym_STAR_STAR2] = ACTIONS(2607), - [anon_sym_PLUS_PLUS2] = ACTIONS(2607), - [anon_sym_SLASH2] = ACTIONS(2609), - [anon_sym_mod2] = ACTIONS(2607), - [anon_sym_SLASH_SLASH2] = ACTIONS(2607), - [anon_sym_PLUS2] = ACTIONS(2609), - [anon_sym_bit_DASHshl2] = ACTIONS(2607), - [anon_sym_bit_DASHshr2] = ACTIONS(2607), - [anon_sym_bit_DASHand2] = ACTIONS(2607), - [anon_sym_bit_DASHxor2] = ACTIONS(2607), - [anon_sym_bit_DASHor2] = ACTIONS(2607), - [anon_sym_err_GT] = ACTIONS(2609), - [anon_sym_out_GT] = ACTIONS(2609), - [anon_sym_e_GT] = ACTIONS(2609), - [anon_sym_o_GT] = ACTIONS(2609), - [anon_sym_err_PLUSout_GT] = ACTIONS(2609), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2609), - [anon_sym_o_PLUSe_GT] = ACTIONS(2609), - [anon_sym_e_PLUSo_GT] = ACTIONS(2609), - [anon_sym_err_GT_GT] = ACTIONS(2607), - [anon_sym_out_GT_GT] = ACTIONS(2607), - [anon_sym_e_GT_GT] = ACTIONS(2607), - [anon_sym_o_GT_GT] = ACTIONS(2607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2607), + [anon_sym_in] = ACTIONS(2620), + [sym__newline] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_PIPE] = ACTIONS(2620), + [anon_sym_err_GT_PIPE] = ACTIONS(2620), + [anon_sym_out_GT_PIPE] = ACTIONS(2620), + [anon_sym_e_GT_PIPE] = ACTIONS(2620), + [anon_sym_o_GT_PIPE] = ACTIONS(2620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2620), + [anon_sym_RPAREN] = ACTIONS(2620), + [anon_sym_GT2] = ACTIONS(2622), + [anon_sym_DASH2] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2620), + [anon_sym_RBRACE] = ACTIONS(2620), + [anon_sym_EQ_GT] = ACTIONS(2620), + [anon_sym_STAR2] = ACTIONS(2622), + [anon_sym_and2] = ACTIONS(2620), + [anon_sym_xor2] = ACTIONS(2620), + [anon_sym_or2] = ACTIONS(2620), + [anon_sym_not_DASHin2] = ACTIONS(2620), + [anon_sym_has2] = ACTIONS(2620), + [anon_sym_not_DASHhas2] = ACTIONS(2620), + [anon_sym_starts_DASHwith2] = ACTIONS(2620), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2620), + [anon_sym_ends_DASHwith2] = ACTIONS(2620), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2620), + [anon_sym_EQ_EQ2] = ACTIONS(2620), + [anon_sym_BANG_EQ2] = ACTIONS(2620), + [anon_sym_LT2] = ACTIONS(2622), + [anon_sym_LT_EQ2] = ACTIONS(2620), + [anon_sym_GT_EQ2] = ACTIONS(2620), + [anon_sym_EQ_TILDE2] = ACTIONS(2620), + [anon_sym_BANG_TILDE2] = ACTIONS(2620), + [anon_sym_like2] = ACTIONS(2620), + [anon_sym_not_DASHlike2] = ACTIONS(2620), + [anon_sym_STAR_STAR2] = ACTIONS(2620), + [anon_sym_PLUS_PLUS2] = ACTIONS(2620), + [anon_sym_SLASH2] = ACTIONS(2622), + [anon_sym_mod2] = ACTIONS(2620), + [anon_sym_SLASH_SLASH2] = ACTIONS(2620), + [anon_sym_PLUS2] = ACTIONS(2622), + [anon_sym_bit_DASHshl2] = ACTIONS(2620), + [anon_sym_bit_DASHshr2] = ACTIONS(2620), + [anon_sym_bit_DASHand2] = ACTIONS(2620), + [anon_sym_bit_DASHxor2] = ACTIONS(2620), + [anon_sym_bit_DASHor2] = ACTIONS(2620), + [anon_sym_err_GT] = ACTIONS(2622), + [anon_sym_out_GT] = ACTIONS(2622), + [anon_sym_e_GT] = ACTIONS(2622), + [anon_sym_o_GT] = ACTIONS(2622), + [anon_sym_err_PLUSout_GT] = ACTIONS(2622), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2622), + [anon_sym_o_PLUSe_GT] = ACTIONS(2622), + [anon_sym_e_PLUSo_GT] = ACTIONS(2622), + [anon_sym_err_GT_GT] = ACTIONS(2620), + [anon_sym_out_GT_GT] = ACTIONS(2620), + [anon_sym_e_GT_GT] = ACTIONS(2620), + [anon_sym_o_GT_GT] = ACTIONS(2620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2620), [anon_sym_POUND] = ACTIONS(3), }, [STATE(950)] = { [sym_comment] = STATE(950), - [ts_builtin_sym_end] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(2611), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2613), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2613), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_DOT_DOT2] = ACTIONS(2624), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2626), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2626), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), [anon_sym_POUND] = ACTIONS(3), }, [STATE(951)] = { [sym_comment] = STATE(951), - [anon_sym_in] = ACTIONS(2615), - [sym__newline] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_PIPE] = ACTIONS(2615), - [anon_sym_err_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_GT_PIPE] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2615), - [anon_sym_RPAREN] = ACTIONS(2615), - [anon_sym_GT2] = ACTIONS(2617), - [anon_sym_DASH2] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_EQ_GT] = ACTIONS(2615), - [anon_sym_STAR2] = ACTIONS(2617), - [anon_sym_and2] = ACTIONS(2615), - [anon_sym_xor2] = ACTIONS(2615), - [anon_sym_or2] = ACTIONS(2615), - [anon_sym_not_DASHin2] = ACTIONS(2615), - [anon_sym_has2] = ACTIONS(2615), - [anon_sym_not_DASHhas2] = ACTIONS(2615), - [anon_sym_starts_DASHwith2] = ACTIONS(2615), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2615), - [anon_sym_ends_DASHwith2] = ACTIONS(2615), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2615), - [anon_sym_EQ_EQ2] = ACTIONS(2615), - [anon_sym_BANG_EQ2] = ACTIONS(2615), - [anon_sym_LT2] = ACTIONS(2617), - [anon_sym_LT_EQ2] = ACTIONS(2615), - [anon_sym_GT_EQ2] = ACTIONS(2615), - [anon_sym_EQ_TILDE2] = ACTIONS(2615), - [anon_sym_BANG_TILDE2] = ACTIONS(2615), - [anon_sym_like2] = ACTIONS(2615), - [anon_sym_not_DASHlike2] = ACTIONS(2615), - [anon_sym_STAR_STAR2] = ACTIONS(2615), - [anon_sym_PLUS_PLUS2] = ACTIONS(2615), - [anon_sym_SLASH2] = ACTIONS(2617), - [anon_sym_mod2] = ACTIONS(2615), - [anon_sym_SLASH_SLASH2] = ACTIONS(2615), - [anon_sym_PLUS2] = ACTIONS(2617), - [anon_sym_bit_DASHshl2] = ACTIONS(2615), - [anon_sym_bit_DASHshr2] = ACTIONS(2615), - [anon_sym_bit_DASHand2] = ACTIONS(2615), - [anon_sym_bit_DASHxor2] = ACTIONS(2615), - [anon_sym_bit_DASHor2] = ACTIONS(2615), - [anon_sym_err_GT] = ACTIONS(2617), - [anon_sym_out_GT] = ACTIONS(2617), - [anon_sym_e_GT] = ACTIONS(2617), - [anon_sym_o_GT] = ACTIONS(2617), - [anon_sym_err_PLUSout_GT] = ACTIONS(2617), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2617), - [anon_sym_o_PLUSe_GT] = ACTIONS(2617), - [anon_sym_e_PLUSo_GT] = ACTIONS(2617), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(952)] = { [sym_comment] = STATE(952), - [ts_builtin_sym_end] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [ts_builtin_sym_end] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [sym__newline] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_err_GT_PIPE] = ACTIONS(2162), + [anon_sym_out_GT_PIPE] = ACTIONS(2162), + [anon_sym_e_GT_PIPE] = ACTIONS(2162), + [anon_sym_o_GT_PIPE] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2162), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_STAR2] = ACTIONS(2164), + [anon_sym_and2] = ACTIONS(2162), + [anon_sym_xor2] = ACTIONS(2162), + [anon_sym_or2] = ACTIONS(2162), + [anon_sym_not_DASHin2] = ACTIONS(2162), + [anon_sym_has2] = ACTIONS(2162), + [anon_sym_not_DASHhas2] = ACTIONS(2162), + [anon_sym_starts_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), + [anon_sym_ends_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), + [anon_sym_EQ_EQ2] = ACTIONS(2162), + [anon_sym_BANG_EQ2] = ACTIONS(2162), + [anon_sym_LT2] = ACTIONS(2164), + [anon_sym_LT_EQ2] = ACTIONS(2162), + [anon_sym_GT_EQ2] = ACTIONS(2162), + [anon_sym_EQ_TILDE2] = ACTIONS(2162), + [anon_sym_BANG_TILDE2] = ACTIONS(2162), + [anon_sym_like2] = ACTIONS(2162), + [anon_sym_not_DASHlike2] = ACTIONS(2162), + [anon_sym_STAR_STAR2] = ACTIONS(2162), + [anon_sym_PLUS_PLUS2] = ACTIONS(2162), + [anon_sym_SLASH2] = ACTIONS(2164), + [anon_sym_mod2] = ACTIONS(2162), + [anon_sym_SLASH_SLASH2] = ACTIONS(2162), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_bit_DASHshl2] = ACTIONS(2162), + [anon_sym_bit_DASHshr2] = ACTIONS(2162), + [anon_sym_bit_DASHand2] = ACTIONS(2162), + [anon_sym_bit_DASHxor2] = ACTIONS(2162), + [anon_sym_bit_DASHor2] = ACTIONS(2162), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(2164), + [anon_sym_out_GT] = ACTIONS(2164), + [anon_sym_e_GT] = ACTIONS(2164), + [anon_sym_o_GT] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT] = ACTIONS(2164), + [anon_sym_err_GT_GT] = ACTIONS(2162), + [anon_sym_out_GT_GT] = ACTIONS(2162), + [anon_sym_e_GT_GT] = ACTIONS(2162), + [anon_sym_o_GT_GT] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2162), [anon_sym_POUND] = ACTIONS(3), }, [STATE(953)] = { [sym_comment] = STATE(953), - [anon_sym_in] = ACTIONS(2619), - [sym__newline] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_PIPE] = ACTIONS(2619), - [anon_sym_err_GT_PIPE] = ACTIONS(2619), - [anon_sym_out_GT_PIPE] = ACTIONS(2619), - [anon_sym_e_GT_PIPE] = ACTIONS(2619), - [anon_sym_o_GT_PIPE] = ACTIONS(2619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2619), - [anon_sym_GT2] = ACTIONS(2621), - [anon_sym_DASH2] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_RBRACE] = ACTIONS(2619), - [anon_sym_EQ_GT] = ACTIONS(2619), - [anon_sym_STAR2] = ACTIONS(2621), - [anon_sym_and2] = ACTIONS(2619), - [anon_sym_xor2] = ACTIONS(2619), - [anon_sym_or2] = ACTIONS(2619), - [anon_sym_not_DASHin2] = ACTIONS(2619), - [anon_sym_has2] = ACTIONS(2619), - [anon_sym_not_DASHhas2] = ACTIONS(2619), - [anon_sym_starts_DASHwith2] = ACTIONS(2619), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2619), - [anon_sym_ends_DASHwith2] = ACTIONS(2619), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2619), - [anon_sym_EQ_EQ2] = ACTIONS(2619), - [anon_sym_BANG_EQ2] = ACTIONS(2619), - [anon_sym_LT2] = ACTIONS(2621), - [anon_sym_LT_EQ2] = ACTIONS(2619), - [anon_sym_GT_EQ2] = ACTIONS(2619), - [anon_sym_EQ_TILDE2] = ACTIONS(2619), - [anon_sym_BANG_TILDE2] = ACTIONS(2619), - [anon_sym_like2] = ACTIONS(2619), - [anon_sym_not_DASHlike2] = ACTIONS(2619), - [anon_sym_STAR_STAR2] = ACTIONS(2619), - [anon_sym_PLUS_PLUS2] = ACTIONS(2619), - [anon_sym_SLASH2] = ACTIONS(2621), - [anon_sym_mod2] = ACTIONS(2619), - [anon_sym_SLASH_SLASH2] = ACTIONS(2619), - [anon_sym_PLUS2] = ACTIONS(2621), - [anon_sym_bit_DASHshl2] = ACTIONS(2619), - [anon_sym_bit_DASHshr2] = ACTIONS(2619), - [anon_sym_bit_DASHand2] = ACTIONS(2619), - [anon_sym_bit_DASHxor2] = ACTIONS(2619), - [anon_sym_bit_DASHor2] = ACTIONS(2619), - [anon_sym_err_GT] = ACTIONS(2621), - [anon_sym_out_GT] = ACTIONS(2621), - [anon_sym_e_GT] = ACTIONS(2621), - [anon_sym_o_GT] = ACTIONS(2621), - [anon_sym_err_PLUSout_GT] = ACTIONS(2621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2621), - [anon_sym_o_PLUSe_GT] = ACTIONS(2621), - [anon_sym_e_PLUSo_GT] = ACTIONS(2621), - [anon_sym_err_GT_GT] = ACTIONS(2619), - [anon_sym_out_GT_GT] = ACTIONS(2619), - [anon_sym_e_GT_GT] = ACTIONS(2619), - [anon_sym_o_GT_GT] = ACTIONS(2619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2619), + [ts_builtin_sym_end] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [anon_sym_DOT_DOT2] = ACTIONS(2628), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2630), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2630), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), [anon_sym_POUND] = ACTIONS(3), }, [STATE(954)] = { [sym_comment] = STATE(954), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(2632), + [sym__newline] = ACTIONS(2632), + [anon_sym_SEMI] = ACTIONS(2632), + [anon_sym_PIPE] = ACTIONS(2632), + [anon_sym_err_GT_PIPE] = ACTIONS(2632), + [anon_sym_out_GT_PIPE] = ACTIONS(2632), + [anon_sym_e_GT_PIPE] = ACTIONS(2632), + [anon_sym_o_GT_PIPE] = ACTIONS(2632), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2632), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2632), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2632), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2632), + [anon_sym_RPAREN] = ACTIONS(2632), + [anon_sym_GT2] = ACTIONS(2634), + [anon_sym_DASH2] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_RBRACE] = ACTIONS(2632), + [anon_sym_EQ_GT] = ACTIONS(2632), + [anon_sym_STAR2] = ACTIONS(2634), + [anon_sym_and2] = ACTIONS(2632), + [anon_sym_xor2] = ACTIONS(2632), + [anon_sym_or2] = ACTIONS(2632), + [anon_sym_not_DASHin2] = ACTIONS(2632), + [anon_sym_has2] = ACTIONS(2632), + [anon_sym_not_DASHhas2] = ACTIONS(2632), + [anon_sym_starts_DASHwith2] = ACTIONS(2632), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2632), + [anon_sym_ends_DASHwith2] = ACTIONS(2632), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2632), + [anon_sym_EQ_EQ2] = ACTIONS(2632), + [anon_sym_BANG_EQ2] = ACTIONS(2632), + [anon_sym_LT2] = ACTIONS(2634), + [anon_sym_LT_EQ2] = ACTIONS(2632), + [anon_sym_GT_EQ2] = ACTIONS(2632), + [anon_sym_EQ_TILDE2] = ACTIONS(2632), + [anon_sym_BANG_TILDE2] = ACTIONS(2632), + [anon_sym_like2] = ACTIONS(2632), + [anon_sym_not_DASHlike2] = ACTIONS(2632), + [anon_sym_STAR_STAR2] = ACTIONS(2632), + [anon_sym_PLUS_PLUS2] = ACTIONS(2632), + [anon_sym_SLASH2] = ACTIONS(2634), + [anon_sym_mod2] = ACTIONS(2632), + [anon_sym_SLASH_SLASH2] = ACTIONS(2632), + [anon_sym_PLUS2] = ACTIONS(2634), + [anon_sym_bit_DASHshl2] = ACTIONS(2632), + [anon_sym_bit_DASHshr2] = ACTIONS(2632), + [anon_sym_bit_DASHand2] = ACTIONS(2632), + [anon_sym_bit_DASHxor2] = ACTIONS(2632), + [anon_sym_bit_DASHor2] = ACTIONS(2632), + [anon_sym_err_GT] = ACTIONS(2634), + [anon_sym_out_GT] = ACTIONS(2634), + [anon_sym_e_GT] = ACTIONS(2634), + [anon_sym_o_GT] = ACTIONS(2634), + [anon_sym_err_PLUSout_GT] = ACTIONS(2634), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2634), + [anon_sym_o_PLUSe_GT] = ACTIONS(2634), + [anon_sym_e_PLUSo_GT] = ACTIONS(2634), + [anon_sym_err_GT_GT] = ACTIONS(2632), + [anon_sym_out_GT_GT] = ACTIONS(2632), + [anon_sym_e_GT_GT] = ACTIONS(2632), + [anon_sym_o_GT_GT] = ACTIONS(2632), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2632), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2632), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2632), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2632), [anon_sym_POUND] = ACTIONS(3), }, [STATE(955)] = { [sym_comment] = STATE(955), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(2636), + [sym__newline] = ACTIONS(2636), + [anon_sym_SEMI] = ACTIONS(2636), + [anon_sym_PIPE] = ACTIONS(2636), + [anon_sym_err_GT_PIPE] = ACTIONS(2636), + [anon_sym_out_GT_PIPE] = ACTIONS(2636), + [anon_sym_e_GT_PIPE] = ACTIONS(2636), + [anon_sym_o_GT_PIPE] = ACTIONS(2636), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2636), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2636), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2636), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2636), + [anon_sym_RPAREN] = ACTIONS(2636), + [anon_sym_GT2] = ACTIONS(2638), + [anon_sym_DASH2] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2636), + [anon_sym_EQ_GT] = ACTIONS(2636), + [anon_sym_STAR2] = ACTIONS(2638), + [anon_sym_and2] = ACTIONS(2636), + [anon_sym_xor2] = ACTIONS(2636), + [anon_sym_or2] = ACTIONS(2636), + [anon_sym_not_DASHin2] = ACTIONS(2636), + [anon_sym_has2] = ACTIONS(2636), + [anon_sym_not_DASHhas2] = ACTIONS(2636), + [anon_sym_starts_DASHwith2] = ACTIONS(2636), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2636), + [anon_sym_ends_DASHwith2] = ACTIONS(2636), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2636), + [anon_sym_EQ_EQ2] = ACTIONS(2636), + [anon_sym_BANG_EQ2] = ACTIONS(2636), + [anon_sym_LT2] = ACTIONS(2638), + [anon_sym_LT_EQ2] = ACTIONS(2636), + [anon_sym_GT_EQ2] = ACTIONS(2636), + [anon_sym_EQ_TILDE2] = ACTIONS(2636), + [anon_sym_BANG_TILDE2] = ACTIONS(2636), + [anon_sym_like2] = ACTIONS(2636), + [anon_sym_not_DASHlike2] = ACTIONS(2636), + [anon_sym_STAR_STAR2] = ACTIONS(2636), + [anon_sym_PLUS_PLUS2] = ACTIONS(2636), + [anon_sym_SLASH2] = ACTIONS(2638), + [anon_sym_mod2] = ACTIONS(2636), + [anon_sym_SLASH_SLASH2] = ACTIONS(2636), + [anon_sym_PLUS2] = ACTIONS(2638), + [anon_sym_bit_DASHshl2] = ACTIONS(2636), + [anon_sym_bit_DASHshr2] = ACTIONS(2636), + [anon_sym_bit_DASHand2] = ACTIONS(2636), + [anon_sym_bit_DASHxor2] = ACTIONS(2636), + [anon_sym_bit_DASHor2] = ACTIONS(2636), + [anon_sym_err_GT] = ACTIONS(2638), + [anon_sym_out_GT] = ACTIONS(2638), + [anon_sym_e_GT] = ACTIONS(2638), + [anon_sym_o_GT] = ACTIONS(2638), + [anon_sym_err_PLUSout_GT] = ACTIONS(2638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2638), + [anon_sym_o_PLUSe_GT] = ACTIONS(2638), + [anon_sym_e_PLUSo_GT] = ACTIONS(2638), + [anon_sym_err_GT_GT] = ACTIONS(2636), + [anon_sym_out_GT_GT] = ACTIONS(2636), + [anon_sym_e_GT_GT] = ACTIONS(2636), + [anon_sym_o_GT_GT] = ACTIONS(2636), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2636), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2636), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2636), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2636), [anon_sym_POUND] = ACTIONS(3), }, [STATE(956)] = { [sym_comment] = STATE(956), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(2597), + [sym__newline] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_PIPE] = ACTIONS(2597), + [anon_sym_err_GT_PIPE] = ACTIONS(2597), + [anon_sym_out_GT_PIPE] = ACTIONS(2597), + [anon_sym_e_GT_PIPE] = ACTIONS(2597), + [anon_sym_o_GT_PIPE] = ACTIONS(2597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2597), + [anon_sym_RPAREN] = ACTIONS(2597), + [anon_sym_GT2] = ACTIONS(2599), + [anon_sym_DASH2] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_STAR2] = ACTIONS(2599), + [anon_sym_and2] = ACTIONS(2597), + [anon_sym_xor2] = ACTIONS(2597), + [anon_sym_or2] = ACTIONS(2597), + [anon_sym_not_DASHin2] = ACTIONS(2597), + [anon_sym_has2] = ACTIONS(2597), + [anon_sym_not_DASHhas2] = ACTIONS(2597), + [anon_sym_starts_DASHwith2] = ACTIONS(2597), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2597), + [anon_sym_ends_DASHwith2] = ACTIONS(2597), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2597), + [anon_sym_EQ_EQ2] = ACTIONS(2597), + [anon_sym_BANG_EQ2] = ACTIONS(2597), + [anon_sym_LT2] = ACTIONS(2599), + [anon_sym_LT_EQ2] = ACTIONS(2597), + [anon_sym_GT_EQ2] = ACTIONS(2597), + [anon_sym_EQ_TILDE2] = ACTIONS(2597), + [anon_sym_BANG_TILDE2] = ACTIONS(2597), + [anon_sym_like2] = ACTIONS(2597), + [anon_sym_not_DASHlike2] = ACTIONS(2597), + [anon_sym_LPAREN2] = ACTIONS(1977), + [anon_sym_STAR_STAR2] = ACTIONS(2597), + [anon_sym_PLUS_PLUS2] = ACTIONS(2597), + [anon_sym_SLASH2] = ACTIONS(2599), + [anon_sym_mod2] = ACTIONS(2597), + [anon_sym_SLASH_SLASH2] = ACTIONS(2597), + [anon_sym_PLUS2] = ACTIONS(2599), + [anon_sym_bit_DASHshl2] = ACTIONS(2597), + [anon_sym_bit_DASHshr2] = ACTIONS(2597), + [anon_sym_bit_DASHand2] = ACTIONS(2597), + [anon_sym_bit_DASHxor2] = ACTIONS(2597), + [anon_sym_bit_DASHor2] = ACTIONS(2597), + [anon_sym_err_GT] = ACTIONS(2599), + [anon_sym_out_GT] = ACTIONS(2599), + [anon_sym_e_GT] = ACTIONS(2599), + [anon_sym_o_GT] = ACTIONS(2599), + [anon_sym_err_PLUSout_GT] = ACTIONS(2599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2599), + [anon_sym_o_PLUSe_GT] = ACTIONS(2599), + [anon_sym_e_PLUSo_GT] = ACTIONS(2599), + [anon_sym_err_GT_GT] = ACTIONS(2597), + [anon_sym_out_GT_GT] = ACTIONS(2597), + [anon_sym_e_GT_GT] = ACTIONS(2597), + [anon_sym_o_GT_GT] = ACTIONS(2597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2597), + [sym__unquoted_pattern] = ACTIONS(1983), [anon_sym_POUND] = ACTIONS(3), }, [STATE(957)] = { [sym_comment] = STATE(957), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(2627), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_EQ_GT] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), [anon_sym_POUND] = ACTIONS(3), }, [STATE(958)] = { [sym_comment] = STATE(958), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_RPAREN] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), - [sym__unquoted_pattern] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1973), + [sym__newline] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_err_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_GT_PIPE] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1973), + [anon_sym_GT2] = ACTIONS(1975), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_STAR2] = ACTIONS(1975), + [anon_sym_and2] = ACTIONS(1973), + [anon_sym_xor2] = ACTIONS(1973), + [anon_sym_or2] = ACTIONS(1973), + [anon_sym_not_DASHin2] = ACTIONS(1973), + [anon_sym_has2] = ACTIONS(1973), + [anon_sym_not_DASHhas2] = ACTIONS(1973), + [anon_sym_starts_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), + [anon_sym_ends_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), + [anon_sym_EQ_EQ2] = ACTIONS(1973), + [anon_sym_BANG_EQ2] = ACTIONS(1973), + [anon_sym_LT2] = ACTIONS(1975), + [anon_sym_LT_EQ2] = ACTIONS(1973), + [anon_sym_GT_EQ2] = ACTIONS(1973), + [anon_sym_EQ_TILDE2] = ACTIONS(1973), + [anon_sym_BANG_TILDE2] = ACTIONS(1973), + [anon_sym_like2] = ACTIONS(1973), + [anon_sym_not_DASHlike2] = ACTIONS(1973), + [anon_sym_LPAREN2] = ACTIONS(1977), + [anon_sym_STAR_STAR2] = ACTIONS(1973), + [anon_sym_PLUS_PLUS2] = ACTIONS(1973), + [anon_sym_SLASH2] = ACTIONS(1975), + [anon_sym_mod2] = ACTIONS(1973), + [anon_sym_SLASH_SLASH2] = ACTIONS(1973), + [anon_sym_PLUS2] = ACTIONS(1975), + [anon_sym_bit_DASHshl2] = ACTIONS(1973), + [anon_sym_bit_DASHshr2] = ACTIONS(1973), + [anon_sym_bit_DASHand2] = ACTIONS(1973), + [anon_sym_bit_DASHxor2] = ACTIONS(1973), + [anon_sym_bit_DASHor2] = ACTIONS(1973), + [anon_sym_err_GT] = ACTIONS(1975), + [anon_sym_out_GT] = ACTIONS(1975), + [anon_sym_e_GT] = ACTIONS(1975), + [anon_sym_o_GT] = ACTIONS(1975), + [anon_sym_err_PLUSout_GT] = ACTIONS(1975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), + [anon_sym_o_PLUSe_GT] = ACTIONS(1975), + [anon_sym_e_PLUSo_GT] = ACTIONS(1975), + [anon_sym_err_GT_GT] = ACTIONS(1973), + [anon_sym_out_GT_GT] = ACTIONS(1973), + [anon_sym_e_GT_GT] = ACTIONS(1973), + [anon_sym_o_GT_GT] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), + [sym__unquoted_pattern] = ACTIONS(1983), [anon_sym_POUND] = ACTIONS(3), }, [STATE(959)] = { [sym_comment] = STATE(959), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), - [sym__unquoted_pattern] = ACTIONS(2633), + [ts_builtin_sym_end] = ACTIONS(1852), + [anon_sym_in] = ACTIONS(1852), + [sym__newline] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_err_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_GT_PIPE] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), + [anon_sym_GT2] = ACTIONS(1854), + [anon_sym_DASH2] = ACTIONS(1852), + [anon_sym_STAR2] = ACTIONS(1854), + [anon_sym_and2] = ACTIONS(1852), + [anon_sym_xor2] = ACTIONS(1852), + [anon_sym_or2] = ACTIONS(1852), + [anon_sym_not_DASHin2] = ACTIONS(1852), + [anon_sym_has2] = ACTIONS(1852), + [anon_sym_not_DASHhas2] = ACTIONS(1852), + [anon_sym_starts_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), + [anon_sym_ends_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), + [anon_sym_EQ_EQ2] = ACTIONS(1852), + [anon_sym_BANG_EQ2] = ACTIONS(1852), + [anon_sym_LT2] = ACTIONS(1854), + [anon_sym_LT_EQ2] = ACTIONS(1852), + [anon_sym_GT_EQ2] = ACTIONS(1852), + [anon_sym_EQ_TILDE2] = ACTIONS(1852), + [anon_sym_BANG_TILDE2] = ACTIONS(1852), + [anon_sym_like2] = ACTIONS(1852), + [anon_sym_not_DASHlike2] = ACTIONS(1852), + [anon_sym_LPAREN2] = ACTIONS(1852), + [anon_sym_STAR_STAR2] = ACTIONS(1852), + [anon_sym_PLUS_PLUS2] = ACTIONS(1852), + [anon_sym_SLASH2] = ACTIONS(1854), + [anon_sym_mod2] = ACTIONS(1852), + [anon_sym_SLASH_SLASH2] = ACTIONS(1852), + [anon_sym_PLUS2] = ACTIONS(1854), + [anon_sym_bit_DASHshl2] = ACTIONS(1852), + [anon_sym_bit_DASHshr2] = ACTIONS(1852), + [anon_sym_bit_DASHand2] = ACTIONS(1852), + [anon_sym_bit_DASHxor2] = ACTIONS(1852), + [anon_sym_bit_DASHor2] = ACTIONS(1852), + [aux_sym__immediate_decimal_token5] = ACTIONS(2640), + [anon_sym_err_GT] = ACTIONS(1854), + [anon_sym_out_GT] = ACTIONS(1854), + [anon_sym_e_GT] = ACTIONS(1854), + [anon_sym_o_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT] = ACTIONS(1854), + [anon_sym_err_GT_GT] = ACTIONS(1852), + [anon_sym_out_GT_GT] = ACTIONS(1852), + [anon_sym_e_GT_GT] = ACTIONS(1852), + [anon_sym_o_GT_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), + [sym__unquoted_pattern] = ACTIONS(1854), [anon_sym_POUND] = ACTIONS(3), }, [STATE(960)] = { [sym_comment] = STATE(960), - [anon_sym_in] = ACTIONS(2635), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2635), - [anon_sym_xor2] = ACTIONS(2635), - [anon_sym_or2] = ACTIONS(2635), - [anon_sym_not_DASHin2] = ACTIONS(2635), - [anon_sym_has2] = ACTIONS(2635), - [anon_sym_not_DASHhas2] = ACTIONS(2635), - [anon_sym_starts_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2635), - [anon_sym_ends_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2635), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2635), - [anon_sym_like2] = ACTIONS(2635), - [anon_sym_not_DASHlike2] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_STAR_STAR2] = ACTIONS(2635), - [anon_sym_PLUS_PLUS2] = ACTIONS(2635), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2635), - [anon_sym_SLASH_SLASH2] = ACTIONS(2635), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2635), - [anon_sym_bit_DASHshr2] = ACTIONS(2635), - [anon_sym_bit_DASHand2] = ACTIONS(2635), - [anon_sym_bit_DASHxor2] = ACTIONS(2635), - [anon_sym_bit_DASHor2] = ACTIONS(2635), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [sym__unquoted_pattern] = ACTIONS(2641), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [sym__unquoted_pattern] = ACTIONS(1679), [anon_sym_POUND] = ACTIONS(3), }, [STATE(961)] = { [sym_comment] = STATE(961), - [anon_sym_in] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_like2] = ACTIONS(994), - [anon_sym_not_DASHlike2] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [sym__unquoted_pattern] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(2589), + [sym__newline] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_err_GT_PIPE] = ACTIONS(2589), + [anon_sym_out_GT_PIPE] = ACTIONS(2589), + [anon_sym_e_GT_PIPE] = ACTIONS(2589), + [anon_sym_o_GT_PIPE] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2589), + [anon_sym_RPAREN] = ACTIONS(2589), + [anon_sym_GT2] = ACTIONS(2591), + [anon_sym_DASH2] = ACTIONS(2589), + [anon_sym_RBRACE] = ACTIONS(2589), + [anon_sym_STAR2] = ACTIONS(2591), + [anon_sym_and2] = ACTIONS(2589), + [anon_sym_xor2] = ACTIONS(2589), + [anon_sym_or2] = ACTIONS(2589), + [anon_sym_not_DASHin2] = ACTIONS(2589), + [anon_sym_has2] = ACTIONS(2589), + [anon_sym_not_DASHhas2] = ACTIONS(2589), + [anon_sym_starts_DASHwith2] = ACTIONS(2589), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2589), + [anon_sym_ends_DASHwith2] = ACTIONS(2589), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2589), + [anon_sym_EQ_EQ2] = ACTIONS(2589), + [anon_sym_BANG_EQ2] = ACTIONS(2589), + [anon_sym_LT2] = ACTIONS(2591), + [anon_sym_LT_EQ2] = ACTIONS(2589), + [anon_sym_GT_EQ2] = ACTIONS(2589), + [anon_sym_EQ_TILDE2] = ACTIONS(2589), + [anon_sym_BANG_TILDE2] = ACTIONS(2589), + [anon_sym_like2] = ACTIONS(2589), + [anon_sym_not_DASHlike2] = ACTIONS(2589), + [anon_sym_LPAREN2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2589), + [anon_sym_PLUS_PLUS2] = ACTIONS(2589), + [anon_sym_SLASH2] = ACTIONS(2591), + [anon_sym_mod2] = ACTIONS(2589), + [anon_sym_SLASH_SLASH2] = ACTIONS(2589), + [anon_sym_PLUS2] = ACTIONS(2591), + [anon_sym_bit_DASHshl2] = ACTIONS(2589), + [anon_sym_bit_DASHshr2] = ACTIONS(2589), + [anon_sym_bit_DASHand2] = ACTIONS(2589), + [anon_sym_bit_DASHxor2] = ACTIONS(2589), + [anon_sym_bit_DASHor2] = ACTIONS(2589), + [anon_sym_err_GT] = ACTIONS(2591), + [anon_sym_out_GT] = ACTIONS(2591), + [anon_sym_e_GT] = ACTIONS(2591), + [anon_sym_o_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT] = ACTIONS(2591), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [sym__unquoted_pattern] = ACTIONS(2646), [anon_sym_POUND] = ACTIONS(3), }, [STATE(962)] = { - [aux_sym__repeat_newline] = STATE(1129), - [sym__expression_parenthesized] = STATE(4352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), [sym_comment] = STATE(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [sym__unquoted_pattern] = ACTIONS(2654), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(963)] = { - [aux_sym__repeat_newline] = STATE(1005), - [sym__expression_parenthesized] = STATE(4360), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), [sym_comment] = STATE(963), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_in] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_GT2] = ACTIONS(1647), + [anon_sym_DASH2] = ACTIONS(1645), + [anon_sym_STAR2] = ACTIONS(1647), + [anon_sym_and2] = ACTIONS(1645), + [anon_sym_xor2] = ACTIONS(1645), + [anon_sym_or2] = ACTIONS(1645), + [anon_sym_not_DASHin2] = ACTIONS(1645), + [anon_sym_has2] = ACTIONS(1645), + [anon_sym_not_DASHhas2] = ACTIONS(1645), + [anon_sym_starts_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1645), + [anon_sym_ends_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1645), + [anon_sym_EQ_EQ2] = ACTIONS(1645), + [anon_sym_BANG_EQ2] = ACTIONS(1645), + [anon_sym_LT2] = ACTIONS(1647), + [anon_sym_LT_EQ2] = ACTIONS(1645), + [anon_sym_GT_EQ2] = ACTIONS(1645), + [anon_sym_EQ_TILDE2] = ACTIONS(1645), + [anon_sym_BANG_TILDE2] = ACTIONS(1645), + [anon_sym_like2] = ACTIONS(1645), + [anon_sym_not_DASHlike2] = ACTIONS(1645), + [anon_sym_STAR_STAR2] = ACTIONS(1645), + [anon_sym_PLUS_PLUS2] = ACTIONS(1645), + [anon_sym_SLASH2] = ACTIONS(1647), + [anon_sym_mod2] = ACTIONS(1645), + [anon_sym_SLASH_SLASH2] = ACTIONS(1645), + [anon_sym_PLUS2] = ACTIONS(1647), + [anon_sym_bit_DASHshl2] = ACTIONS(1645), + [anon_sym_bit_DASHshr2] = ACTIONS(1645), + [anon_sym_bit_DASHand2] = ACTIONS(1645), + [anon_sym_bit_DASHxor2] = ACTIONS(1645), + [anon_sym_bit_DASHor2] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1647), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1647), + [anon_sym_out_GT] = ACTIONS(1647), + [anon_sym_e_GT] = ACTIONS(1647), + [anon_sym_o_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT] = ACTIONS(1647), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(964)] = { + [aux_sym__repeat_newline] = STATE(982), + [sym__expression_parenthesized] = STATE(4326), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2160), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_comment] = STATE(964), + [aux_sym_cmd_identifier_token2] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [sym__newline] = ACTIONS(2563), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2567), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -118970,757 +119720,1036 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(964)] = { - [aux_sym__repeat_newline] = STATE(964), - [sym_comment] = STATE(964), - [anon_sym_export] = ACTIONS(1960), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1960), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [sym__newline] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_DASH2] = ACTIONS(1960), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1960), - [anon_sym_where] = ACTIONS(1955), - [aux_sym_expr_unary_token1] = ACTIONS(1955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1960), - [anon_sym_0o] = ACTIONS(1960), - [anon_sym_0x] = ACTIONS(1960), - [sym_val_date] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [anon_sym_SQUOTE] = ACTIONS(1955), - [anon_sym_BQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1955), - }, [STATE(965)] = { [sym_comment] = STATE(965), - [anon_sym_export] = ACTIONS(2646), - [anon_sym_alias] = ACTIONS(2648), - [anon_sym_let] = ACTIONS(2648), - [anon_sym_mut] = ACTIONS(2648), - [anon_sym_const] = ACTIONS(2648), - [aux_sym_cmd_identifier_token1] = ACTIONS(2646), - [anon_sym_def] = ACTIONS(2648), - [anon_sym_use] = ACTIONS(2648), - [anon_sym_export_DASHenv] = ACTIONS(2648), - [anon_sym_extern] = ACTIONS(2648), - [anon_sym_module] = ACTIONS(2648), - [anon_sym_for] = ACTIONS(2648), - [anon_sym_loop] = ACTIONS(2648), - [anon_sym_while] = ACTIONS(2648), - [anon_sym_if] = ACTIONS(2648), - [anon_sym_else] = ACTIONS(2648), - [anon_sym_try] = ACTIONS(2648), - [anon_sym_catch] = ACTIONS(2648), - [anon_sym_match] = ACTIONS(2648), - [anon_sym_in] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_null] = ACTIONS(2648), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [sym__newline] = ACTIONS(2648), - [anon_sym_PIPE] = ACTIONS(2648), - [anon_sym_err_GT_PIPE] = ACTIONS(2648), - [anon_sym_out_GT_PIPE] = ACTIONS(2648), - [anon_sym_e_GT_PIPE] = ACTIONS(2648), - [anon_sym_o_GT_PIPE] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(2648), - [anon_sym_LPAREN] = ACTIONS(2648), - [anon_sym_DOLLAR] = ACTIONS(2646), - [anon_sym_DASH2] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_DOT_DOT] = ACTIONS(2646), - [anon_sym_where] = ACTIONS(2648), - [aux_sym_expr_unary_token1] = ACTIONS(2648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2648), - [anon_sym_DOT_DOT_LT] = ACTIONS(2648), - [aux_sym__val_number_decimal_token1] = ACTIONS(2646), - [aux_sym__val_number_decimal_token2] = ACTIONS(2648), - [aux_sym__val_number_decimal_token3] = ACTIONS(2648), - [aux_sym__val_number_decimal_token4] = ACTIONS(2648), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2646), - [anon_sym_0o] = ACTIONS(2646), - [anon_sym_0x] = ACTIONS(2646), - [sym_val_date] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_BQUOTE] = ACTIONS(2648), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2648), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), - [anon_sym_CARET] = ACTIONS(2648), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2648), + [anon_sym_in] = ACTIONS(1022), + [sym__newline] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_err_GT_PIPE] = ACTIONS(1022), + [anon_sym_out_GT_PIPE] = ACTIONS(1022), + [anon_sym_e_GT_PIPE] = ACTIONS(1022), + [anon_sym_o_GT_PIPE] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1022), + [anon_sym_RPAREN] = ACTIONS(1022), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1022), + [anon_sym_xor2] = ACTIONS(1022), + [anon_sym_or2] = ACTIONS(1022), + [anon_sym_not_DASHin2] = ACTIONS(1022), + [anon_sym_has2] = ACTIONS(1022), + [anon_sym_not_DASHhas2] = ACTIONS(1022), + [anon_sym_starts_DASHwith2] = ACTIONS(1022), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1022), + [anon_sym_ends_DASHwith2] = ACTIONS(1022), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1022), + [anon_sym_EQ_EQ2] = ACTIONS(1022), + [anon_sym_BANG_EQ2] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1022), + [anon_sym_GT_EQ2] = ACTIONS(1022), + [anon_sym_EQ_TILDE2] = ACTIONS(1022), + [anon_sym_BANG_TILDE2] = ACTIONS(1022), + [anon_sym_like2] = ACTIONS(1022), + [anon_sym_not_DASHlike2] = ACTIONS(1022), + [anon_sym_LPAREN2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(1022), + [anon_sym_PLUS_PLUS2] = ACTIONS(1022), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1022), + [anon_sym_SLASH_SLASH2] = ACTIONS(1022), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1022), + [anon_sym_bit_DASHshr2] = ACTIONS(1022), + [anon_sym_bit_DASHand2] = ACTIONS(1022), + [anon_sym_bit_DASHxor2] = ACTIONS(1022), + [anon_sym_bit_DASHor2] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1022), + [anon_sym_out_GT_GT] = ACTIONS(1022), + [anon_sym_e_GT_GT] = ACTIONS(1022), + [anon_sym_o_GT_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1022), + [sym__unquoted_pattern] = ACTIONS(2658), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(966)] = { [sym_comment] = STATE(966), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_alias] = ACTIONS(2096), - [anon_sym_let] = ACTIONS(2096), - [anon_sym_mut] = ACTIONS(2096), - [anon_sym_const] = ACTIONS(2096), - [aux_sym_cmd_identifier_token1] = ACTIONS(2098), - [anon_sym_def] = ACTIONS(2096), - [anon_sym_use] = ACTIONS(2096), - [anon_sym_export_DASHenv] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2096), - [anon_sym_module] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_loop] = ACTIONS(2096), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_else] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2096), - [anon_sym_catch] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_in] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_null] = ACTIONS(2096), - [aux_sym_cmd_identifier_token3] = ACTIONS(2096), - [aux_sym_cmd_identifier_token4] = ACTIONS(2096), - [aux_sym_cmd_identifier_token5] = ACTIONS(2096), - [sym__newline] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_where] = ACTIONS(2096), - [aux_sym_expr_unary_token1] = ACTIONS(2096), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2096), - [anon_sym_DOT_DOT_LT] = ACTIONS(2096), - [aux_sym__val_number_decimal_token1] = ACTIONS(2098), - [aux_sym__val_number_decimal_token2] = ACTIONS(2096), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2096), - [aux_sym__val_number_token1] = ACTIONS(2096), - [aux_sym__val_number_token2] = ACTIONS(2096), - [aux_sym__val_number_token3] = ACTIONS(2096), - [anon_sym_0b] = ACTIONS(2098), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_BQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(1030), + [sym__newline] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(1030), + [anon_sym_xor2] = ACTIONS(1030), + [anon_sym_or2] = ACTIONS(1030), + [anon_sym_not_DASHin2] = ACTIONS(1030), + [anon_sym_has2] = ACTIONS(1030), + [anon_sym_not_DASHhas2] = ACTIONS(1030), + [anon_sym_starts_DASHwith2] = ACTIONS(1030), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1030), + [anon_sym_ends_DASHwith2] = ACTIONS(1030), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1030), + [anon_sym_EQ_EQ2] = ACTIONS(1030), + [anon_sym_BANG_EQ2] = ACTIONS(1030), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(1030), + [anon_sym_GT_EQ2] = ACTIONS(1030), + [anon_sym_EQ_TILDE2] = ACTIONS(1030), + [anon_sym_BANG_TILDE2] = ACTIONS(1030), + [anon_sym_like2] = ACTIONS(1030), + [anon_sym_not_DASHlike2] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(1030), + [anon_sym_PLUS_PLUS2] = ACTIONS(1030), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(1030), + [anon_sym_SLASH_SLASH2] = ACTIONS(1030), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(1030), + [anon_sym_bit_DASHshr2] = ACTIONS(1030), + [anon_sym_bit_DASHand2] = ACTIONS(1030), + [anon_sym_bit_DASHxor2] = ACTIONS(1030), + [anon_sym_bit_DASHor2] = ACTIONS(1030), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), + [sym__unquoted_pattern] = ACTIONS(2658), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(967)] = { [sym_comment] = STATE(967), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(968)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(968), - [ts_builtin_sym_end] = ACTIONS(2170), - [anon_sym_in] = ACTIONS(2170), - [sym__newline] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_err_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_GT_PIPE] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2170), - [anon_sym_GT2] = ACTIONS(2172), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_STAR2] = ACTIONS(2172), - [anon_sym_and2] = ACTIONS(2170), - [anon_sym_xor2] = ACTIONS(2170), - [anon_sym_or2] = ACTIONS(2170), - [anon_sym_not_DASHin2] = ACTIONS(2170), - [anon_sym_has2] = ACTIONS(2170), - [anon_sym_not_DASHhas2] = ACTIONS(2170), - [anon_sym_starts_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2170), - [anon_sym_ends_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2170), - [anon_sym_EQ_EQ2] = ACTIONS(2170), - [anon_sym_BANG_EQ2] = ACTIONS(2170), - [anon_sym_LT2] = ACTIONS(2172), - [anon_sym_LT_EQ2] = ACTIONS(2170), - [anon_sym_GT_EQ2] = ACTIONS(2170), - [anon_sym_EQ_TILDE2] = ACTIONS(2170), - [anon_sym_BANG_TILDE2] = ACTIONS(2170), - [anon_sym_like2] = ACTIONS(2170), - [anon_sym_not_DASHlike2] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2170), - [anon_sym_PLUS_PLUS2] = ACTIONS(2170), - [anon_sym_SLASH2] = ACTIONS(2172), - [anon_sym_mod2] = ACTIONS(2170), - [anon_sym_SLASH_SLASH2] = ACTIONS(2170), - [anon_sym_PLUS2] = ACTIONS(2172), - [anon_sym_bit_DASHshl2] = ACTIONS(2170), - [anon_sym_bit_DASHshr2] = ACTIONS(2170), - [anon_sym_bit_DASHand2] = ACTIONS(2170), - [anon_sym_bit_DASHxor2] = ACTIONS(2170), - [anon_sym_bit_DASHor2] = ACTIONS(2170), - [anon_sym_err_GT] = ACTIONS(2172), - [anon_sym_out_GT] = ACTIONS(2172), - [anon_sym_e_GT] = ACTIONS(2172), - [anon_sym_o_GT] = ACTIONS(2172), - [anon_sym_err_PLUSout_GT] = ACTIONS(2172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2172), - [anon_sym_o_PLUSe_GT] = ACTIONS(2172), - [anon_sym_e_PLUSo_GT] = ACTIONS(2172), - [anon_sym_err_GT_GT] = ACTIONS(2170), - [anon_sym_out_GT_GT] = ACTIONS(2170), - [anon_sym_e_GT_GT] = ACTIONS(2170), - [anon_sym_o_GT_GT] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2170), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(969)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(969), - [ts_builtin_sym_end] = ACTIONS(2072), - [anon_sym_in] = ACTIONS(2072), - [sym__newline] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_err_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_GT_PIPE] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), - [anon_sym_GT2] = ACTIONS(2074), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_STAR2] = ACTIONS(2074), - [anon_sym_and2] = ACTIONS(2072), - [anon_sym_xor2] = ACTIONS(2072), - [anon_sym_or2] = ACTIONS(2072), - [anon_sym_not_DASHin2] = ACTIONS(2072), - [anon_sym_has2] = ACTIONS(2072), - [anon_sym_not_DASHhas2] = ACTIONS(2072), - [anon_sym_starts_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2072), - [anon_sym_ends_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2072), - [anon_sym_EQ_EQ2] = ACTIONS(2072), - [anon_sym_BANG_EQ2] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LT_EQ2] = ACTIONS(2072), - [anon_sym_GT_EQ2] = ACTIONS(2072), - [anon_sym_EQ_TILDE2] = ACTIONS(2072), - [anon_sym_BANG_TILDE2] = ACTIONS(2072), - [anon_sym_like2] = ACTIONS(2072), - [anon_sym_not_DASHlike2] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2072), - [anon_sym_PLUS_PLUS2] = ACTIONS(2072), - [anon_sym_SLASH2] = ACTIONS(2074), - [anon_sym_mod2] = ACTIONS(2072), - [anon_sym_SLASH_SLASH2] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2074), - [anon_sym_bit_DASHshl2] = ACTIONS(2072), - [anon_sym_bit_DASHshr2] = ACTIONS(2072), - [anon_sym_bit_DASHand2] = ACTIONS(2072), - [anon_sym_bit_DASHxor2] = ACTIONS(2072), - [anon_sym_bit_DASHor2] = ACTIONS(2072), - [anon_sym_err_GT] = ACTIONS(2074), - [anon_sym_out_GT] = ACTIONS(2074), - [anon_sym_e_GT] = ACTIONS(2074), - [anon_sym_o_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT] = ACTIONS(2074), - [anon_sym_err_GT_GT] = ACTIONS(2072), - [anon_sym_out_GT_GT] = ACTIONS(2072), - [anon_sym_e_GT_GT] = ACTIONS(2072), - [anon_sym_o_GT_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + [anon_sym_SEMI] = ACTIONS(2660), + [anon_sym_PIPE] = ACTIONS(2660), + [anon_sym_err_GT_PIPE] = ACTIONS(2660), + [anon_sym_out_GT_PIPE] = ACTIONS(2660), + [anon_sym_e_GT_PIPE] = ACTIONS(2660), + [anon_sym_o_GT_PIPE] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2660), + [anon_sym_RPAREN] = ACTIONS(2660), + [anon_sym_GT2] = ACTIONS(2662), + [anon_sym_DASH2] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2660), + [anon_sym_RBRACE] = ACTIONS(2660), + [anon_sym_EQ_GT] = ACTIONS(2660), + [anon_sym_STAR2] = ACTIONS(2662), + [anon_sym_and2] = ACTIONS(2660), + [anon_sym_xor2] = ACTIONS(2660), + [anon_sym_or2] = ACTIONS(2660), + [anon_sym_not_DASHin2] = ACTIONS(2660), + [anon_sym_has2] = ACTIONS(2660), + [anon_sym_not_DASHhas2] = ACTIONS(2660), + [anon_sym_starts_DASHwith2] = ACTIONS(2660), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2660), + [anon_sym_ends_DASHwith2] = ACTIONS(2660), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2660), + [anon_sym_EQ_EQ2] = ACTIONS(2660), + [anon_sym_BANG_EQ2] = ACTIONS(2660), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LT_EQ2] = ACTIONS(2660), + [anon_sym_GT_EQ2] = ACTIONS(2660), + [anon_sym_EQ_TILDE2] = ACTIONS(2660), + [anon_sym_BANG_TILDE2] = ACTIONS(2660), + [anon_sym_like2] = ACTIONS(2660), + [anon_sym_not_DASHlike2] = ACTIONS(2660), + [anon_sym_STAR_STAR2] = ACTIONS(2660), + [anon_sym_PLUS_PLUS2] = ACTIONS(2660), + [anon_sym_SLASH2] = ACTIONS(2662), + [anon_sym_mod2] = ACTIONS(2660), + [anon_sym_SLASH_SLASH2] = ACTIONS(2660), + [anon_sym_PLUS2] = ACTIONS(2662), + [anon_sym_bit_DASHshl2] = ACTIONS(2660), + [anon_sym_bit_DASHshr2] = ACTIONS(2660), + [anon_sym_bit_DASHand2] = ACTIONS(2660), + [anon_sym_bit_DASHxor2] = ACTIONS(2660), + [anon_sym_bit_DASHor2] = ACTIONS(2660), + [anon_sym_err_GT] = ACTIONS(2662), + [anon_sym_out_GT] = ACTIONS(2662), + [anon_sym_e_GT] = ACTIONS(2662), + [anon_sym_o_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT] = ACTIONS(2662), + [anon_sym_err_GT_GT] = ACTIONS(2660), + [anon_sym_out_GT_GT] = ACTIONS(2660), + [anon_sym_e_GT_GT] = ACTIONS(2660), + [anon_sym_o_GT_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2660), [anon_sym_POUND] = ACTIONS(3), }, [STATE(970)] = { [sym_comment] = STATE(970), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(2664), + [sym__newline] = ACTIONS(2664), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_err_GT_PIPE] = ACTIONS(2664), + [anon_sym_out_GT_PIPE] = ACTIONS(2664), + [anon_sym_e_GT_PIPE] = ACTIONS(2664), + [anon_sym_o_GT_PIPE] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2664), + [anon_sym_RPAREN] = ACTIONS(2664), + [anon_sym_GT2] = ACTIONS(2666), + [anon_sym_DASH2] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_EQ_GT] = ACTIONS(2664), + [anon_sym_STAR2] = ACTIONS(2666), + [anon_sym_and2] = ACTIONS(2664), + [anon_sym_xor2] = ACTIONS(2664), + [anon_sym_or2] = ACTIONS(2664), + [anon_sym_not_DASHin2] = ACTIONS(2664), + [anon_sym_has2] = ACTIONS(2664), + [anon_sym_not_DASHhas2] = ACTIONS(2664), + [anon_sym_starts_DASHwith2] = ACTIONS(2664), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2664), + [anon_sym_ends_DASHwith2] = ACTIONS(2664), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2664), + [anon_sym_EQ_EQ2] = ACTIONS(2664), + [anon_sym_BANG_EQ2] = ACTIONS(2664), + [anon_sym_LT2] = ACTIONS(2666), + [anon_sym_LT_EQ2] = ACTIONS(2664), + [anon_sym_GT_EQ2] = ACTIONS(2664), + [anon_sym_EQ_TILDE2] = ACTIONS(2664), + [anon_sym_BANG_TILDE2] = ACTIONS(2664), + [anon_sym_like2] = ACTIONS(2664), + [anon_sym_not_DASHlike2] = ACTIONS(2664), + [anon_sym_STAR_STAR2] = ACTIONS(2664), + [anon_sym_PLUS_PLUS2] = ACTIONS(2664), + [anon_sym_SLASH2] = ACTIONS(2666), + [anon_sym_mod2] = ACTIONS(2664), + [anon_sym_SLASH_SLASH2] = ACTIONS(2664), + [anon_sym_PLUS2] = ACTIONS(2666), + [anon_sym_bit_DASHshl2] = ACTIONS(2664), + [anon_sym_bit_DASHshr2] = ACTIONS(2664), + [anon_sym_bit_DASHand2] = ACTIONS(2664), + [anon_sym_bit_DASHxor2] = ACTIONS(2664), + [anon_sym_bit_DASHor2] = ACTIONS(2664), + [anon_sym_err_GT] = ACTIONS(2666), + [anon_sym_out_GT] = ACTIONS(2666), + [anon_sym_e_GT] = ACTIONS(2666), + [anon_sym_o_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT] = ACTIONS(2666), + [anon_sym_err_GT_GT] = ACTIONS(2664), + [anon_sym_out_GT_GT] = ACTIONS(2664), + [anon_sym_e_GT_GT] = ACTIONS(2664), + [anon_sym_o_GT_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2664), [anon_sym_POUND] = ACTIONS(3), }, [STATE(971)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4465), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(4840), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3665), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), + [aux_sym__repeat_newline] = STATE(1137), + [sym__expression_parenthesized] = STATE(4494), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2160), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), [sym_comment] = STATE(971), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3958), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2660), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym_cmd_identifier_token2] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(972)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), [sym_comment] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(1582), + [sym__newline] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_err_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_GT_PIPE] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), + [anon_sym_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1582), + [anon_sym_STAR2] = ACTIONS(1580), + [anon_sym_and2] = ACTIONS(1582), + [anon_sym_xor2] = ACTIONS(1582), + [anon_sym_or2] = ACTIONS(1582), + [anon_sym_not_DASHin2] = ACTIONS(1582), + [anon_sym_has2] = ACTIONS(1582), + [anon_sym_not_DASHhas2] = ACTIONS(1582), + [anon_sym_starts_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), + [anon_sym_ends_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), + [anon_sym_EQ_EQ2] = ACTIONS(1582), + [anon_sym_BANG_EQ2] = ACTIONS(1582), + [anon_sym_LT2] = ACTIONS(1580), + [anon_sym_LT_EQ2] = ACTIONS(1582), + [anon_sym_GT_EQ2] = ACTIONS(1582), + [anon_sym_EQ_TILDE2] = ACTIONS(1582), + [anon_sym_BANG_TILDE2] = ACTIONS(1582), + [anon_sym_like2] = ACTIONS(1582), + [anon_sym_not_DASHlike2] = ACTIONS(1582), + [anon_sym_STAR_STAR2] = ACTIONS(1582), + [anon_sym_PLUS_PLUS2] = ACTIONS(1582), + [anon_sym_SLASH2] = ACTIONS(1580), + [anon_sym_mod2] = ACTIONS(1582), + [anon_sym_SLASH_SLASH2] = ACTIONS(1582), + [anon_sym_PLUS2] = ACTIONS(1580), + [anon_sym_bit_DASHshl2] = ACTIONS(1582), + [anon_sym_bit_DASHshr2] = ACTIONS(1582), + [anon_sym_bit_DASHand2] = ACTIONS(1582), + [anon_sym_bit_DASHxor2] = ACTIONS(1582), + [anon_sym_bit_DASHor2] = ACTIONS(1582), + [anon_sym_DOT_DOT2] = ACTIONS(1580), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), + [anon_sym_err_GT_GT] = ACTIONS(1582), + [anon_sym_out_GT_GT] = ACTIONS(1582), + [anon_sym_e_GT_GT] = ACTIONS(1582), + [anon_sym_o_GT_GT] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), [anon_sym_POUND] = ACTIONS(3), }, [STATE(973)] = { + [aux_sym__repeat_newline] = STATE(4207), + [sym__match_pattern_expression] = STATE(4432), + [sym__match_pattern_value] = STATE(4736), + [sym__match_pattern_list_body] = STATE(4648), + [sym__match_pattern_list] = STATE(4737), + [sym__match_pattern_rest] = STATE(5137), + [sym__match_pattern_record] = STATE(4742), + [sym_expr_parenthesized] = STATE(4040), + [sym_val_range] = STATE(4736), + [sym__val_range] = STATE(5140), + [sym_val_nothing] = STATE(4742), + [sym_val_bool] = STATE(4490), + [sym_val_variable] = STATE(4041), + [sym_val_number] = STATE(4742), + [sym__val_number_decimal] = STATE(3727), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4742), + [sym_val_filesize] = STATE(4742), + [sym_val_binary] = STATE(4742), + [sym_val_string] = STATE(4742), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_list] = STATE(5146), + [sym__table_head] = STATE(3815), + [sym_val_table] = STATE(4742), + [sym__unquoted_in_list] = STATE(4432), + [sym__unquoted_anonymous_prefix] = STATE(5140), [sym_comment] = STATE(973), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(1402), + [aux_sym_parameter_repeat2] = STATE(4158), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1433), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_RBRACK] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_DOT_DOT] = ACTIONS(2678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(2680), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(974)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [sym__expr_parenthesized_immediate] = STATE(5171), [sym_comment] = STATE(974), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(2130), + [anon_sym_in] = ACTIONS(2130), + [sym__newline] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_err_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_GT_PIPE] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2130), + [anon_sym_GT2] = ACTIONS(2132), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_STAR2] = ACTIONS(2132), + [anon_sym_and2] = ACTIONS(2130), + [anon_sym_xor2] = ACTIONS(2130), + [anon_sym_or2] = ACTIONS(2130), + [anon_sym_not_DASHin2] = ACTIONS(2130), + [anon_sym_has2] = ACTIONS(2130), + [anon_sym_not_DASHhas2] = ACTIONS(2130), + [anon_sym_starts_DASHwith2] = ACTIONS(2130), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2130), + [anon_sym_ends_DASHwith2] = ACTIONS(2130), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2130), + [anon_sym_EQ_EQ2] = ACTIONS(2130), + [anon_sym_BANG_EQ2] = ACTIONS(2130), + [anon_sym_LT2] = ACTIONS(2132), + [anon_sym_LT_EQ2] = ACTIONS(2130), + [anon_sym_GT_EQ2] = ACTIONS(2130), + [anon_sym_EQ_TILDE2] = ACTIONS(2130), + [anon_sym_BANG_TILDE2] = ACTIONS(2130), + [anon_sym_like2] = ACTIONS(2130), + [anon_sym_not_DASHlike2] = ACTIONS(2130), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2130), + [anon_sym_PLUS_PLUS2] = ACTIONS(2130), + [anon_sym_SLASH2] = ACTIONS(2132), + [anon_sym_mod2] = ACTIONS(2130), + [anon_sym_SLASH_SLASH2] = ACTIONS(2130), + [anon_sym_PLUS2] = ACTIONS(2132), + [anon_sym_bit_DASHshl2] = ACTIONS(2130), + [anon_sym_bit_DASHshr2] = ACTIONS(2130), + [anon_sym_bit_DASHand2] = ACTIONS(2130), + [anon_sym_bit_DASHxor2] = ACTIONS(2130), + [anon_sym_bit_DASHor2] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(2132), + [anon_sym_out_GT] = ACTIONS(2132), + [anon_sym_e_GT] = ACTIONS(2132), + [anon_sym_o_GT] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT] = ACTIONS(2132), + [anon_sym_err_GT_GT] = ACTIONS(2130), + [anon_sym_out_GT_GT] = ACTIONS(2130), + [anon_sym_e_GT_GT] = ACTIONS(2130), + [anon_sym_o_GT_GT] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2130), [anon_sym_POUND] = ACTIONS(3), }, [STATE(975)] = { + [sym__expr_parenthesized_immediate] = STATE(5171), [sym_comment] = STATE(975), + [ts_builtin_sym_end] = ACTIONS(2184), + [anon_sym_in] = ACTIONS(2184), + [sym__newline] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_PIPE] = ACTIONS(2184), + [anon_sym_err_GT_PIPE] = ACTIONS(2184), + [anon_sym_out_GT_PIPE] = ACTIONS(2184), + [anon_sym_e_GT_PIPE] = ACTIONS(2184), + [anon_sym_o_GT_PIPE] = ACTIONS(2184), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2184), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2184), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2184), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2184), + [anon_sym_GT2] = ACTIONS(2186), + [anon_sym_DASH2] = ACTIONS(2184), + [anon_sym_STAR2] = ACTIONS(2186), + [anon_sym_and2] = ACTIONS(2184), + [anon_sym_xor2] = ACTIONS(2184), + [anon_sym_or2] = ACTIONS(2184), + [anon_sym_not_DASHin2] = ACTIONS(2184), + [anon_sym_has2] = ACTIONS(2184), + [anon_sym_not_DASHhas2] = ACTIONS(2184), + [anon_sym_starts_DASHwith2] = ACTIONS(2184), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2184), + [anon_sym_ends_DASHwith2] = ACTIONS(2184), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2184), + [anon_sym_EQ_EQ2] = ACTIONS(2184), + [anon_sym_BANG_EQ2] = ACTIONS(2184), + [anon_sym_LT2] = ACTIONS(2186), + [anon_sym_LT_EQ2] = ACTIONS(2184), + [anon_sym_GT_EQ2] = ACTIONS(2184), + [anon_sym_EQ_TILDE2] = ACTIONS(2184), + [anon_sym_BANG_TILDE2] = ACTIONS(2184), + [anon_sym_like2] = ACTIONS(2184), + [anon_sym_not_DASHlike2] = ACTIONS(2184), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2184), + [anon_sym_PLUS_PLUS2] = ACTIONS(2184), + [anon_sym_SLASH2] = ACTIONS(2186), + [anon_sym_mod2] = ACTIONS(2184), + [anon_sym_SLASH_SLASH2] = ACTIONS(2184), + [anon_sym_PLUS2] = ACTIONS(2186), + [anon_sym_bit_DASHshl2] = ACTIONS(2184), + [anon_sym_bit_DASHshr2] = ACTIONS(2184), + [anon_sym_bit_DASHand2] = ACTIONS(2184), + [anon_sym_bit_DASHxor2] = ACTIONS(2184), + [anon_sym_bit_DASHor2] = ACTIONS(2184), + [anon_sym_err_GT] = ACTIONS(2186), + [anon_sym_out_GT] = ACTIONS(2186), + [anon_sym_e_GT] = ACTIONS(2186), + [anon_sym_o_GT] = ACTIONS(2186), + [anon_sym_err_PLUSout_GT] = ACTIONS(2186), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2186), + [anon_sym_o_PLUSe_GT] = ACTIONS(2186), + [anon_sym_e_PLUSo_GT] = ACTIONS(2186), + [anon_sym_err_GT_GT] = ACTIONS(2184), + [anon_sym_out_GT_GT] = ACTIONS(2184), + [anon_sym_e_GT_GT] = ACTIONS(2184), + [anon_sym_o_GT_GT] = ACTIONS(2184), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2184), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2184), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2184), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2184), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(976)] = { + [sym__expression] = STATE(4841), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2253), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_comment] = STATE(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(2682), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_COLON2] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(977)] = { + [sym_expr_unary] = STATE(2775), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_parenthesized] = STATE(2544), + [sym_val_range] = STATE(2775), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(2775), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2613), + [sym_val_variable] = STATE(2549), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(2356), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(2564), + [sym__unquoted_with_expr] = STATE(2858), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(977), + [anon_sym_true] = ACTIONS(2686), + [anon_sym_false] = ACTIONS(2686), + [anon_sym_null] = ACTIONS(2688), + [aux_sym_cmd_identifier_token3] = ACTIONS(2690), + [aux_sym_cmd_identifier_token4] = ACTIONS(2690), + [aux_sym_cmd_identifier_token5] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_DOLLAR] = ACTIONS(2696), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_DOT_DOT] = ACTIONS(2700), + [aux_sym_expr_unary_token1] = ACTIONS(2702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), + [anon_sym_DOT_DOT_LT] = ACTIONS(2704), + [aux_sym__val_number_decimal_token1] = ACTIONS(2706), + [aux_sym__val_number_decimal_token2] = ACTIONS(2708), + [aux_sym__val_number_decimal_token3] = ACTIONS(2710), + [aux_sym__val_number_decimal_token4] = ACTIONS(2710), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(978)] = { + [sym_comment] = STATE(978), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1770), + [anon_sym_STAR2] = ACTIONS(1772), + [anon_sym_and2] = ACTIONS(1770), + [anon_sym_xor2] = ACTIONS(1770), + [anon_sym_or2] = ACTIONS(1770), + [anon_sym_not_DASHin2] = ACTIONS(1770), + [anon_sym_has2] = ACTIONS(1770), + [anon_sym_not_DASHhas2] = ACTIONS(1770), + [anon_sym_starts_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), + [anon_sym_ends_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), + [anon_sym_EQ_EQ2] = ACTIONS(1770), + [anon_sym_BANG_EQ2] = ACTIONS(1770), + [anon_sym_LT2] = ACTIONS(1772), + [anon_sym_LT_EQ2] = ACTIONS(1770), + [anon_sym_GT_EQ2] = ACTIONS(1770), + [anon_sym_EQ_TILDE2] = ACTIONS(1770), + [anon_sym_BANG_TILDE2] = ACTIONS(1770), + [anon_sym_like2] = ACTIONS(1770), + [anon_sym_not_DASHlike2] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_STAR_STAR2] = ACTIONS(1770), + [anon_sym_PLUS_PLUS2] = ACTIONS(1770), + [anon_sym_SLASH2] = ACTIONS(1772), + [anon_sym_mod2] = ACTIONS(1770), + [anon_sym_SLASH_SLASH2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_bit_DASHshl2] = ACTIONS(1770), + [anon_sym_bit_DASHshr2] = ACTIONS(1770), + [anon_sym_bit_DASHand2] = ACTIONS(1770), + [anon_sym_bit_DASHxor2] = ACTIONS(1770), + [anon_sym_bit_DASHor2] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1772), + [anon_sym_out_GT] = ACTIONS(1772), + [anon_sym_e_GT] = ACTIONS(1772), + [anon_sym_o_GT] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT] = ACTIONS(1772), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [sym__unquoted_pattern] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(979)] = { + [sym_comment] = STATE(979), + [ts_builtin_sym_end] = ACTIONS(1852), + [anon_sym_in] = ACTIONS(1852), + [sym__newline] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_err_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_GT_PIPE] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), + [anon_sym_GT2] = ACTIONS(1854), + [anon_sym_DASH2] = ACTIONS(1852), + [anon_sym_STAR2] = ACTIONS(1854), + [anon_sym_and2] = ACTIONS(1852), + [anon_sym_xor2] = ACTIONS(1852), + [anon_sym_or2] = ACTIONS(1852), + [anon_sym_not_DASHin2] = ACTIONS(1852), + [anon_sym_has2] = ACTIONS(1852), + [anon_sym_not_DASHhas2] = ACTIONS(1852), + [anon_sym_starts_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), + [anon_sym_ends_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), + [anon_sym_EQ_EQ2] = ACTIONS(1852), + [anon_sym_BANG_EQ2] = ACTIONS(1852), + [anon_sym_LT2] = ACTIONS(1854), + [anon_sym_LT_EQ2] = ACTIONS(1852), + [anon_sym_GT_EQ2] = ACTIONS(1852), + [anon_sym_EQ_TILDE2] = ACTIONS(1852), + [anon_sym_BANG_TILDE2] = ACTIONS(1852), + [anon_sym_like2] = ACTIONS(1852), + [anon_sym_not_DASHlike2] = ACTIONS(1852), + [anon_sym_LPAREN2] = ACTIONS(1852), + [anon_sym_STAR_STAR2] = ACTIONS(1852), + [anon_sym_PLUS_PLUS2] = ACTIONS(1852), + [anon_sym_SLASH2] = ACTIONS(1854), + [anon_sym_mod2] = ACTIONS(1852), + [anon_sym_SLASH_SLASH2] = ACTIONS(1852), + [anon_sym_PLUS2] = ACTIONS(1854), + [anon_sym_bit_DASHshl2] = ACTIONS(1852), + [anon_sym_bit_DASHshr2] = ACTIONS(1852), + [anon_sym_bit_DASHand2] = ACTIONS(1852), + [anon_sym_bit_DASHxor2] = ACTIONS(1852), + [anon_sym_bit_DASHor2] = ACTIONS(1852), + [anon_sym_err_GT] = ACTIONS(1854), + [anon_sym_out_GT] = ACTIONS(1854), + [anon_sym_e_GT] = ACTIONS(1854), + [anon_sym_o_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT] = ACTIONS(1854), + [anon_sym_err_GT_GT] = ACTIONS(1852), + [anon_sym_out_GT_GT] = ACTIONS(1852), + [anon_sym_e_GT_GT] = ACTIONS(1852), + [anon_sym_o_GT_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), + [sym__unquoted_pattern] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(980)] = { + [sym_comment] = STATE(980), [ts_builtin_sym_end] = ACTIONS(1870), [anon_sym_in] = ACTIONS(1870), [sym__newline] = ACTIONS(1870), @@ -119787,195 +120816,739 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(976)] = { - [sym__expression] = STATE(4724), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_COLON2] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(981)] = { + [sym__expr_parenthesized_immediate] = STATE(4884), + [sym_comment] = STATE(981), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(977)] = { - [sym__expression] = STATE(4726), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(977), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [STATE(982)] = { + [aux_sym__repeat_newline] = STATE(1356), + [sym__expression_parenthesized] = STATE(4216), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2160), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_comment] = STATE(982), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(2714), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2563), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(195), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_COLON2] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(978)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4271), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(978), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), + [STATE(983)] = { + [sym__expr_parenthesized_immediate] = STATE(4884), + [sym_comment] = STATE(983), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(984)] = { + [aux_sym__repeat_newline] = STATE(1038), + [sym_comment] = STATE(984), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(985)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(985), + [anon_sym_in] = ACTIONS(2716), + [sym__newline] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_PIPE] = ACTIONS(2716), + [anon_sym_err_GT_PIPE] = ACTIONS(2716), + [anon_sym_out_GT_PIPE] = ACTIONS(2716), + [anon_sym_e_GT_PIPE] = ACTIONS(2716), + [anon_sym_o_GT_PIPE] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), + [anon_sym_RPAREN] = ACTIONS(2716), + [anon_sym_GT2] = ACTIONS(2718), + [anon_sym_DASH2] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_STAR2] = ACTIONS(2718), + [anon_sym_and2] = ACTIONS(2716), + [anon_sym_xor2] = ACTIONS(2716), + [anon_sym_or2] = ACTIONS(2716), + [anon_sym_not_DASHin2] = ACTIONS(2716), + [anon_sym_has2] = ACTIONS(2716), + [anon_sym_not_DASHhas2] = ACTIONS(2716), + [anon_sym_starts_DASHwith2] = ACTIONS(2716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), + [anon_sym_ends_DASHwith2] = ACTIONS(2716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), + [anon_sym_EQ_EQ2] = ACTIONS(2716), + [anon_sym_BANG_EQ2] = ACTIONS(2716), + [anon_sym_LT2] = ACTIONS(2718), + [anon_sym_LT_EQ2] = ACTIONS(2716), + [anon_sym_GT_EQ2] = ACTIONS(2716), + [anon_sym_EQ_TILDE2] = ACTIONS(2716), + [anon_sym_BANG_TILDE2] = ACTIONS(2716), + [anon_sym_like2] = ACTIONS(2716), + [anon_sym_not_DASHlike2] = ACTIONS(2716), + [anon_sym_STAR_STAR2] = ACTIONS(2716), + [anon_sym_PLUS_PLUS2] = ACTIONS(2716), + [anon_sym_SLASH2] = ACTIONS(2718), + [anon_sym_mod2] = ACTIONS(2716), + [anon_sym_SLASH_SLASH2] = ACTIONS(2716), + [anon_sym_PLUS2] = ACTIONS(2718), + [anon_sym_bit_DASHshl2] = ACTIONS(2716), + [anon_sym_bit_DASHshr2] = ACTIONS(2716), + [anon_sym_bit_DASHand2] = ACTIONS(2716), + [anon_sym_bit_DASHxor2] = ACTIONS(2716), + [anon_sym_bit_DASHor2] = ACTIONS(2716), + [anon_sym_err_GT] = ACTIONS(2718), + [anon_sym_out_GT] = ACTIONS(2718), + [anon_sym_e_GT] = ACTIONS(2718), + [anon_sym_o_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT] = ACTIONS(2718), + [anon_sym_err_GT_GT] = ACTIONS(2716), + [anon_sym_out_GT_GT] = ACTIONS(2716), + [anon_sym_e_GT_GT] = ACTIONS(2716), + [anon_sym_o_GT_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(986)] = { + [aux_sym__repeat_newline] = STATE(1039), + [sym_comment] = STATE(986), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(987)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(987), + [anon_sym_in] = ACTIONS(2716), + [sym__newline] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_PIPE] = ACTIONS(2716), + [anon_sym_err_GT_PIPE] = ACTIONS(2716), + [anon_sym_out_GT_PIPE] = ACTIONS(2716), + [anon_sym_e_GT_PIPE] = ACTIONS(2716), + [anon_sym_o_GT_PIPE] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), + [anon_sym_RPAREN] = ACTIONS(2716), + [anon_sym_GT2] = ACTIONS(2718), + [anon_sym_DASH2] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_STAR2] = ACTIONS(2718), + [anon_sym_and2] = ACTIONS(2716), + [anon_sym_xor2] = ACTIONS(2716), + [anon_sym_or2] = ACTIONS(2716), + [anon_sym_not_DASHin2] = ACTIONS(2716), + [anon_sym_has2] = ACTIONS(2716), + [anon_sym_not_DASHhas2] = ACTIONS(2716), + [anon_sym_starts_DASHwith2] = ACTIONS(2716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), + [anon_sym_ends_DASHwith2] = ACTIONS(2716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), + [anon_sym_EQ_EQ2] = ACTIONS(2716), + [anon_sym_BANG_EQ2] = ACTIONS(2716), + [anon_sym_LT2] = ACTIONS(2718), + [anon_sym_LT_EQ2] = ACTIONS(2716), + [anon_sym_GT_EQ2] = ACTIONS(2716), + [anon_sym_EQ_TILDE2] = ACTIONS(2716), + [anon_sym_BANG_TILDE2] = ACTIONS(2716), + [anon_sym_like2] = ACTIONS(2716), + [anon_sym_not_DASHlike2] = ACTIONS(2716), + [anon_sym_STAR_STAR2] = ACTIONS(2716), + [anon_sym_PLUS_PLUS2] = ACTIONS(2716), + [anon_sym_SLASH2] = ACTIONS(2718), + [anon_sym_mod2] = ACTIONS(2716), + [anon_sym_SLASH_SLASH2] = ACTIONS(2716), + [anon_sym_PLUS2] = ACTIONS(2718), + [anon_sym_bit_DASHshl2] = ACTIONS(2716), + [anon_sym_bit_DASHshr2] = ACTIONS(2716), + [anon_sym_bit_DASHand2] = ACTIONS(2716), + [anon_sym_bit_DASHxor2] = ACTIONS(2716), + [anon_sym_bit_DASHor2] = ACTIONS(2716), + [anon_sym_err_GT] = ACTIONS(2718), + [anon_sym_out_GT] = ACTIONS(2718), + [anon_sym_e_GT] = ACTIONS(2718), + [anon_sym_o_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT] = ACTIONS(2718), + [anon_sym_err_GT_GT] = ACTIONS(2716), + [anon_sym_out_GT_GT] = ACTIONS(2716), + [anon_sym_e_GT_GT] = ACTIONS(2716), + [anon_sym_o_GT_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(988)] = { + [aux_sym__repeat_newline] = STATE(1040), + [sym_comment] = STATE(988), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(989)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(989), + [anon_sym_in] = ACTIONS(2716), + [sym__newline] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_PIPE] = ACTIONS(2716), + [anon_sym_err_GT_PIPE] = ACTIONS(2716), + [anon_sym_out_GT_PIPE] = ACTIONS(2716), + [anon_sym_e_GT_PIPE] = ACTIONS(2716), + [anon_sym_o_GT_PIPE] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), + [anon_sym_RPAREN] = ACTIONS(2716), + [anon_sym_GT2] = ACTIONS(2718), + [anon_sym_DASH2] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_STAR2] = ACTIONS(2718), + [anon_sym_and2] = ACTIONS(2716), + [anon_sym_xor2] = ACTIONS(2716), + [anon_sym_or2] = ACTIONS(2716), + [anon_sym_not_DASHin2] = ACTIONS(2716), + [anon_sym_has2] = ACTIONS(2716), + [anon_sym_not_DASHhas2] = ACTIONS(2716), + [anon_sym_starts_DASHwith2] = ACTIONS(2716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), + [anon_sym_ends_DASHwith2] = ACTIONS(2716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), + [anon_sym_EQ_EQ2] = ACTIONS(2716), + [anon_sym_BANG_EQ2] = ACTIONS(2716), + [anon_sym_LT2] = ACTIONS(2718), + [anon_sym_LT_EQ2] = ACTIONS(2716), + [anon_sym_GT_EQ2] = ACTIONS(2716), + [anon_sym_EQ_TILDE2] = ACTIONS(2716), + [anon_sym_BANG_TILDE2] = ACTIONS(2716), + [anon_sym_like2] = ACTIONS(2716), + [anon_sym_not_DASHlike2] = ACTIONS(2716), + [anon_sym_STAR_STAR2] = ACTIONS(2716), + [anon_sym_PLUS_PLUS2] = ACTIONS(2716), + [anon_sym_SLASH2] = ACTIONS(2718), + [anon_sym_mod2] = ACTIONS(2716), + [anon_sym_SLASH_SLASH2] = ACTIONS(2716), + [anon_sym_PLUS2] = ACTIONS(2718), + [anon_sym_bit_DASHshl2] = ACTIONS(2716), + [anon_sym_bit_DASHshr2] = ACTIONS(2716), + [anon_sym_bit_DASHand2] = ACTIONS(2716), + [anon_sym_bit_DASHxor2] = ACTIONS(2716), + [anon_sym_bit_DASHor2] = ACTIONS(2716), + [anon_sym_err_GT] = ACTIONS(2718), + [anon_sym_out_GT] = ACTIONS(2718), + [anon_sym_e_GT] = ACTIONS(2718), + [anon_sym_o_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT] = ACTIONS(2718), + [anon_sym_err_GT_GT] = ACTIONS(2716), + [anon_sym_out_GT_GT] = ACTIONS(2716), + [anon_sym_e_GT_GT] = ACTIONS(2716), + [anon_sym_o_GT_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(990)] = { + [sym__expr_parenthesized_immediate] = STATE(4884), + [sym_comment] = STATE(990), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(991)] = { + [aux_sym__repeat_newline] = STATE(1356), + [sym__expression_parenthesized] = STATE(4511), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2160), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_comment] = STATE(991), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(2714), [aux_sym_cmd_identifier_token3] = ACTIONS(189), [aux_sym_cmd_identifier_token4] = ACTIONS(189), [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), + [sym__newline] = ACTIONS(2563), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -119991,3749 +121564,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(979)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym_comment] = STATE(979), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(980)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(980), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(981)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), - [sym_comment] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(982)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym_comment] = STATE(982), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(983)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(983), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(984)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym_comment] = STATE(984), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(985)] = { - [sym_expr_unary] = STATE(2779), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2475), - [sym_val_range] = STATE(2779), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2779), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2547), - [sym__unquoted_with_expr] = STATE(2780), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(985), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(986)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(986), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(987)] = { - [sym_expr_unary] = STATE(2782), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2481), - [sym_val_range] = STATE(2782), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2782), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2581), - [sym__unquoted_with_expr] = STATE(2783), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(987), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(988)] = { - [sym_expr_unary] = STATE(2786), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2497), - [sym_val_range] = STATE(2786), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2786), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2567), - [sym__unquoted_with_expr] = STATE(2797), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(988), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(989)] = { - [aux_sym__repeat_newline] = STATE(1037), - [sym_comment] = STATE(989), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(990)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(990), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(991)] = { - [aux_sym__repeat_newline] = STATE(1038), - [sym_comment] = STATE(991), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(992)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(992), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [STATE(992)] = { + [aux_sym__repeat_newline] = STATE(1041), + [sym_comment] = STATE(992), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, [STATE(993)] = { - [aux_sym__repeat_newline] = STATE(1039), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(993), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(994)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(994), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(995)] = { - [aux_sym__repeat_newline] = STATE(1040), - [sym_comment] = STATE(995), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(996)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(996), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(997)] = { - [aux_sym__repeat_newline] = STATE(1041), - [sym_comment] = STATE(997), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(998)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(998), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(999)] = { - [aux_sym__repeat_newline] = STATE(1042), - [sym_comment] = STATE(999), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2704), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2702), - [anon_sym_PLUS_PLUS2] = ACTIONS(2702), - [anon_sym_SLASH2] = ACTIONS(2704), - [anon_sym_mod2] = ACTIONS(2702), - [anon_sym_SLASH_SLASH2] = ACTIONS(2702), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1000)] = { - [aux_sym__repeat_newline] = STATE(1130), - [sym_comment] = STATE(1000), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1001)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1001), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2708), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2706), - [anon_sym_PLUS_PLUS2] = ACTIONS(2706), - [anon_sym_SLASH2] = ACTIONS(2708), - [anon_sym_mod2] = ACTIONS(2706), - [anon_sym_SLASH_SLASH2] = ACTIONS(2706), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1002)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1002), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1003)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym_comment] = STATE(1003), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1004)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1004), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1005)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4361), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1005), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(1006)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym_comment] = STATE(1006), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1007)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1007), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1008)] = { - [aux_sym__repeat_newline] = STATE(1052), - [sym_comment] = STATE(1008), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1009)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1009), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1010)] = { - [aux_sym__repeat_newline] = STATE(1053), - [sym_comment] = STATE(1010), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1011)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1011), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1012)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), - [sym_comment] = STATE(1012), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1013)] = { - [aux_sym__repeat_newline] = STATE(1055), - [sym_comment] = STATE(1013), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1014)] = { - [aux_sym__repeat_newline] = STATE(1057), - [sym_comment] = STATE(1014), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1015)] = { - [aux_sym__repeat_newline] = STATE(1060), - [sym_comment] = STATE(1015), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1016)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), - [sym_comment] = STATE(1016), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1017)] = { - [aux_sym__repeat_newline] = STATE(1062), - [sym_comment] = STATE(1017), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1018)] = { - [aux_sym__repeat_newline] = STATE(1065), - [sym_comment] = STATE(1018), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1019)] = { - [aux_sym__repeat_newline] = STATE(1067), - [sym_comment] = STATE(1019), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1020)] = { - [aux_sym__repeat_newline] = STATE(1070), - [sym_comment] = STATE(1020), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1021)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), - [sym_comment] = STATE(1021), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3958), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(1022)] = { - [aux_sym__repeat_newline] = STATE(1073), - [sym_comment] = STATE(1022), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1023)] = { - [aux_sym__repeat_newline] = STATE(1077), - [sym_comment] = STATE(1023), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2714), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2712), - [anon_sym_PLUS_PLUS2] = ACTIONS(2712), - [anon_sym_SLASH2] = ACTIONS(2714), - [anon_sym_mod2] = ACTIONS(2712), - [anon_sym_SLASH_SLASH2] = ACTIONS(2712), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1024)] = { - [aux_sym__repeat_newline] = STATE(1078), - [sym_comment] = STATE(1024), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1025)] = { - [sym_comment] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(2501), - [anon_sym_in] = ACTIONS(2501), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2501), - [anon_sym_xor2] = ACTIONS(2501), - [anon_sym_or2] = ACTIONS(2501), - [anon_sym_not_DASHin2] = ACTIONS(2501), - [anon_sym_has2] = ACTIONS(2501), - [anon_sym_not_DASHhas2] = ACTIONS(2501), - [anon_sym_starts_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2501), - [anon_sym_ends_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2501), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2501), - [anon_sym_like2] = ACTIONS(2501), - [anon_sym_not_DASHlike2] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_STAR_STAR2] = ACTIONS(2501), - [anon_sym_PLUS_PLUS2] = ACTIONS(2501), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2501), - [anon_sym_SLASH_SLASH2] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2501), - [anon_sym_bit_DASHshr2] = ACTIONS(2501), - [anon_sym_bit_DASHand2] = ACTIONS(2501), - [anon_sym_bit_DASHxor2] = ACTIONS(2501), - [anon_sym_bit_DASHor2] = ACTIONS(2501), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [sym__unquoted_pattern] = ACTIONS(2503), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1026)] = { - [sym_comment] = STATE(1026), - [ts_builtin_sym_end] = ACTIONS(2635), - [anon_sym_in] = ACTIONS(2635), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2635), - [anon_sym_xor2] = ACTIONS(2635), - [anon_sym_or2] = ACTIONS(2635), - [anon_sym_not_DASHin2] = ACTIONS(2635), - [anon_sym_has2] = ACTIONS(2635), - [anon_sym_not_DASHhas2] = ACTIONS(2635), - [anon_sym_starts_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2635), - [anon_sym_ends_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2635), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2635), - [anon_sym_like2] = ACTIONS(2635), - [anon_sym_not_DASHlike2] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_STAR_STAR2] = ACTIONS(2635), - [anon_sym_PLUS_PLUS2] = ACTIONS(2635), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2635), - [anon_sym_SLASH_SLASH2] = ACTIONS(2635), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2635), - [anon_sym_bit_DASHshr2] = ACTIONS(2635), - [anon_sym_bit_DASHand2] = ACTIONS(2635), - [anon_sym_bit_DASHxor2] = ACTIONS(2635), - [anon_sym_bit_DASHor2] = ACTIONS(2635), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [sym__unquoted_pattern] = ACTIONS(2641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1027)] = { - [aux_sym__repeat_newline] = STATE(1080), - [sym_comment] = STATE(1027), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1028)] = { - [sym_comment] = STATE(1028), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(2595), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [sym__unquoted_pattern] = ACTIONS(2597), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1029)] = { - [aux_sym__repeat_newline] = STATE(1082), - [sym_comment] = STATE(1029), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1030)] = { - [aux_sym__repeat_newline] = STATE(980), - [sym_comment] = STATE(1030), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1031)] = { - [aux_sym__repeat_newline] = STATE(1085), - [sym_comment] = STATE(1031), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1032)] = { - [aux_sym__repeat_newline] = STATE(1088), - [sym_comment] = STATE(1032), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1033)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), - [sym_comment] = STATE(1033), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1034)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1034), [anon_sym_in] = ACTIONS(2716), [sym__newline] = ACTIONS(2716), [anon_sym_SEMI] = ACTIONS(2716), @@ -123799,77 +121700,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1035)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1035), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [STATE(994)] = { + [aux_sym__repeat_newline] = STATE(1042), + [sym_comment] = STATE(994), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1036)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1036), + [STATE(995)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(995), [anon_sym_in] = ACTIONS(2716), [sym__newline] = ACTIONS(2716), [anon_sym_SEMI] = ACTIONS(2716), @@ -123935,9 +121836,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1037)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1037), + [STATE(996)] = { + [aux_sym__repeat_newline] = STATE(1043), + [sym_comment] = STATE(996), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(997)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(997), [anon_sym_in] = ACTIONS(2716), [sym__newline] = ACTIONS(2716), [anon_sym_SEMI] = ACTIONS(2716), @@ -124003,9 +121972,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1038)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1038), + [STATE(998)] = { + [aux_sym__repeat_newline] = STATE(1044), + [sym_comment] = STATE(998), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(999)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(999), [anon_sym_in] = ACTIONS(2716), [sym__newline] = ACTIONS(2716), [anon_sym_SEMI] = ACTIONS(2716), @@ -124071,9 +122108,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1039)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1039), + [STATE(1000)] = { + [aux_sym__repeat_newline] = STATE(1045), + [sym_comment] = STATE(1000), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1001)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1001), [anon_sym_in] = ACTIONS(2716), [sym__newline] = ACTIONS(2716), [anon_sym_SEMI] = ACTIONS(2716), @@ -124139,145 +122244,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1040)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1040), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1041)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1041), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1042)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1042), + [STATE(1002)] = { + [aux_sym__repeat_newline] = STATE(1046), + [sym_comment] = STATE(1002), [anon_sym_in] = ACTIONS(2720), [sym__newline] = ACTIONS(2720), [anon_sym_SEMI] = ACTIONS(2720), @@ -124343,77 +122312,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1043)] = { - [sym_comment] = STATE(1043), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), + [STATE(1003)] = { + [aux_sym__repeat_newline] = STATE(1047), + [sym_comment] = STATE(1003), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1044)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1044), + [STATE(1004)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1004), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1005)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1005), [anon_sym_in] = ACTIONS(2716), [sym__newline] = ACTIONS(2716), [anon_sym_SEMI] = ACTIONS(2716), @@ -124479,9 +122516,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1045)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1045), + [STATE(1006)] = { + [sym__expr_parenthesized_immediate] = STATE(4884), + [sym_comment] = STATE(1006), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1007)] = { + [aux_sym__repeat_newline] = STATE(1048), + [sym_comment] = STATE(1007), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1008)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1008), [anon_sym_in] = ACTIONS(2716), [sym__newline] = ACTIONS(2716), [anon_sym_SEMI] = ACTIONS(2716), @@ -124547,417 +122720,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1046)] = { - [aux_sym__repeat_newline] = STATE(983), - [sym_comment] = STATE(1046), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1047)] = { - [sym_comment] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1048)] = { - [aux_sym__repeat_newline] = STATE(986), - [sym_comment] = STATE(1048), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1049)] = { - [sym_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_like2] = ACTIONS(994), - [anon_sym_not_DASHlike2] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [sym__unquoted_pattern] = ACTIONS(2585), + [STATE(1009)] = { + [aux_sym__repeat_newline] = STATE(1049), + [sym_comment] = STATE(1009), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1050)] = { - [sym_comment] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1018), - [sym__newline] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_err_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_GT_PIPE] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1018), - [anon_sym_xor2] = ACTIONS(1018), - [anon_sym_or2] = ACTIONS(1018), - [anon_sym_not_DASHin2] = ACTIONS(1018), - [anon_sym_has2] = ACTIONS(1018), - [anon_sym_not_DASHhas2] = ACTIONS(1018), - [anon_sym_starts_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), - [anon_sym_ends_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), - [anon_sym_EQ_EQ2] = ACTIONS(1018), - [anon_sym_BANG_EQ2] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1018), - [anon_sym_GT_EQ2] = ACTIONS(1018), - [anon_sym_EQ_TILDE2] = ACTIONS(1018), - [anon_sym_BANG_TILDE2] = ACTIONS(1018), - [anon_sym_like2] = ACTIONS(1018), - [anon_sym_not_DASHlike2] = ACTIONS(1018), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(1018), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1018), - [anon_sym_SLASH_SLASH2] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1018), - [anon_sym_bit_DASHshr2] = ACTIONS(1018), - [anon_sym_bit_DASHand2] = ACTIONS(1018), - [anon_sym_bit_DASHxor2] = ACTIONS(1018), - [anon_sym_bit_DASHor2] = ACTIONS(1018), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1018), - [anon_sym_out_GT_GT] = ACTIONS(1018), - [anon_sym_e_GT_GT] = ACTIONS(1018), - [anon_sym_o_GT_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), - [sym__unquoted_pattern] = ACTIONS(2585), + [STATE(1010)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1010), + [anon_sym_in] = ACTIONS(2716), + [sym__newline] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_PIPE] = ACTIONS(2716), + [anon_sym_err_GT_PIPE] = ACTIONS(2716), + [anon_sym_out_GT_PIPE] = ACTIONS(2716), + [anon_sym_e_GT_PIPE] = ACTIONS(2716), + [anon_sym_o_GT_PIPE] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), + [anon_sym_RPAREN] = ACTIONS(2716), + [anon_sym_GT2] = ACTIONS(2718), + [anon_sym_DASH2] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_STAR2] = ACTIONS(2718), + [anon_sym_and2] = ACTIONS(2716), + [anon_sym_xor2] = ACTIONS(2716), + [anon_sym_or2] = ACTIONS(2716), + [anon_sym_not_DASHin2] = ACTIONS(2716), + [anon_sym_has2] = ACTIONS(2716), + [anon_sym_not_DASHhas2] = ACTIONS(2716), + [anon_sym_starts_DASHwith2] = ACTIONS(2716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), + [anon_sym_ends_DASHwith2] = ACTIONS(2716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), + [anon_sym_EQ_EQ2] = ACTIONS(2716), + [anon_sym_BANG_EQ2] = ACTIONS(2716), + [anon_sym_LT2] = ACTIONS(2718), + [anon_sym_LT_EQ2] = ACTIONS(2716), + [anon_sym_GT_EQ2] = ACTIONS(2716), + [anon_sym_EQ_TILDE2] = ACTIONS(2716), + [anon_sym_BANG_TILDE2] = ACTIONS(2716), + [anon_sym_like2] = ACTIONS(2716), + [anon_sym_not_DASHlike2] = ACTIONS(2716), + [anon_sym_STAR_STAR2] = ACTIONS(2716), + [anon_sym_PLUS_PLUS2] = ACTIONS(2716), + [anon_sym_SLASH2] = ACTIONS(2718), + [anon_sym_mod2] = ACTIONS(2716), + [anon_sym_SLASH_SLASH2] = ACTIONS(2716), + [anon_sym_PLUS2] = ACTIONS(2718), + [anon_sym_bit_DASHshl2] = ACTIONS(2716), + [anon_sym_bit_DASHshr2] = ACTIONS(2716), + [anon_sym_bit_DASHand2] = ACTIONS(2716), + [anon_sym_bit_DASHxor2] = ACTIONS(2716), + [anon_sym_bit_DASHor2] = ACTIONS(2716), + [anon_sym_err_GT] = ACTIONS(2718), + [anon_sym_out_GT] = ACTIONS(2718), + [anon_sym_e_GT] = ACTIONS(2718), + [anon_sym_o_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT] = ACTIONS(2718), + [anon_sym_err_GT_GT] = ACTIONS(2716), + [anon_sym_out_GT_GT] = ACTIONS(2716), + [anon_sym_e_GT_GT] = ACTIONS(2716), + [anon_sym_o_GT_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1051)] = { - [aux_sym__repeat_newline] = STATE(990), - [sym_comment] = STATE(1051), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [STATE(1011)] = { + [aux_sym__repeat_newline] = STATE(1051), + [sym_comment] = STATE(1011), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1052)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1052), + [STATE(1012)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1012), [anon_sym_in] = ACTIONS(2716), [sym__newline] = ACTIONS(2716), [anon_sym_SEMI] = ACTIONS(2716), @@ -125023,9 +122992,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1053)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1053), + [STATE(1013)] = { + [aux_sym__repeat_newline] = STATE(1052), + [sym_comment] = STATE(1013), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1014)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1014), [anon_sym_in] = ACTIONS(2716), [sym__newline] = ACTIONS(2716), [anon_sym_SEMI] = ACTIONS(2716), @@ -125091,4973 +123128,8976 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1054)] = { + [STATE(1015)] = { + [aux_sym__repeat_newline] = STATE(1138), + [sym_comment] = STATE(1015), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1016)] = { + [aux_sym__repeat_newline] = STATE(1064), + [sym_comment] = STATE(1016), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1017)] = { + [aux_sym__repeat_newline] = STATE(1066), + [sym_comment] = STATE(1017), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1018)] = { + [aux_sym__repeat_newline] = STATE(1068), + [sym_comment] = STATE(1018), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1019)] = { + [sym__expr_parenthesized_immediate] = STATE(4884), + [sym_comment] = STATE(1019), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1020)] = { + [aux_sym__repeat_newline] = STATE(985), + [sym_comment] = STATE(1020), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1021)] = { + [aux_sym__repeat_newline] = STATE(1070), + [sym_comment] = STATE(1021), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1022)] = { + [aux_sym__repeat_newline] = STATE(1073), + [sym_comment] = STATE(1022), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1023)] = { + [aux_sym__repeat_newline] = STATE(1076), + [sym_comment] = STATE(1023), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1024)] = { + [sym_comment] = STATE(1024), + [ts_builtin_sym_end] = ACTIONS(2525), + [anon_sym_in] = ACTIONS(2525), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2525), + [anon_sym_xor2] = ACTIONS(2525), + [anon_sym_or2] = ACTIONS(2525), + [anon_sym_not_DASHin2] = ACTIONS(2525), + [anon_sym_has2] = ACTIONS(2525), + [anon_sym_not_DASHhas2] = ACTIONS(2525), + [anon_sym_starts_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), + [anon_sym_ends_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2525), + [anon_sym_like2] = ACTIONS(2525), + [anon_sym_not_DASHlike2] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2525), + [anon_sym_STAR_STAR2] = ACTIONS(2525), + [anon_sym_PLUS_PLUS2] = ACTIONS(2525), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2525), + [anon_sym_SLASH_SLASH2] = ACTIONS(2525), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2525), + [anon_sym_bit_DASHshr2] = ACTIONS(2525), + [anon_sym_bit_DASHand2] = ACTIONS(2525), + [anon_sym_bit_DASHxor2] = ACTIONS(2525), + [anon_sym_bit_DASHor2] = ACTIONS(2525), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [sym__unquoted_pattern] = ACTIONS(2527), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1025)] = { + [sym_comment] = STATE(1025), + [ts_builtin_sym_end] = ACTIONS(2648), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [sym__unquoted_pattern] = ACTIONS(2654), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1026)] = { + [aux_sym__repeat_newline] = STATE(1078), + [sym_comment] = STATE(1026), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1027)] = { + [sym_comment] = STATE(1027), + [ts_builtin_sym_end] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1713), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_LPAREN2] = ACTIONS(2612), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1713), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [sym__unquoted_pattern] = ACTIONS(2614), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1028)] = { + [aux_sym__repeat_newline] = STATE(4207), + [sym__match_pattern_expression] = STATE(4432), + [sym__match_pattern_value] = STATE(4736), + [sym__match_pattern_list_body] = STATE(4697), + [sym__match_pattern_list] = STATE(4737), + [sym__match_pattern_rest] = STATE(5356), + [sym__match_pattern_record] = STATE(4742), + [sym_expr_parenthesized] = STATE(4040), + [sym_val_range] = STATE(4736), + [sym__val_range] = STATE(5140), + [sym_val_nothing] = STATE(4742), + [sym_val_bool] = STATE(4490), + [sym_val_variable] = STATE(4041), + [sym_val_number] = STATE(4742), + [sym__val_number_decimal] = STATE(3727), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4742), + [sym_val_filesize] = STATE(4742), + [sym_val_binary] = STATE(4742), + [sym_val_string] = STATE(4742), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_list] = STATE(5146), + [sym__table_head] = STATE(3882), + [sym_val_table] = STATE(4742), + [sym__unquoted_in_list] = STATE(4432), + [sym__unquoted_anonymous_prefix] = STATE(5140), + [sym_comment] = STATE(1028), + [aux_sym__types_body_repeat1] = STATE(1402), + [aux_sym_parameter_repeat2] = STATE(4158), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1433), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_RBRACK] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(2680), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(1029)] = { + [aux_sym__repeat_newline] = STATE(1081), + [sym_comment] = STATE(1029), + [anon_sym_in] = ACTIONS(2730), + [sym__newline] = ACTIONS(2730), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2732), + [anon_sym_DASH2] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_STAR2] = ACTIONS(2732), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2730), + [anon_sym_has2] = ACTIONS(2730), + [anon_sym_not_DASHhas2] = ACTIONS(2730), + [anon_sym_starts_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), + [anon_sym_ends_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), + [anon_sym_EQ_EQ2] = ACTIONS(2730), + [anon_sym_BANG_EQ2] = ACTIONS(2730), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ2] = ACTIONS(2730), + [anon_sym_GT_EQ2] = ACTIONS(2730), + [anon_sym_EQ_TILDE2] = ACTIONS(2730), + [anon_sym_BANG_TILDE2] = ACTIONS(2730), + [anon_sym_like2] = ACTIONS(2730), + [anon_sym_not_DASHlike2] = ACTIONS(2730), + [anon_sym_STAR_STAR2] = ACTIONS(2730), + [anon_sym_PLUS_PLUS2] = ACTIONS(2730), + [anon_sym_SLASH2] = ACTIONS(2732), + [anon_sym_mod2] = ACTIONS(2730), + [anon_sym_SLASH_SLASH2] = ACTIONS(2730), + [anon_sym_PLUS2] = ACTIONS(2732), + [anon_sym_bit_DASHshl2] = ACTIONS(2730), + [anon_sym_bit_DASHshr2] = ACTIONS(2730), + [anon_sym_bit_DASHand2] = ACTIONS(2730), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1030)] = { + [sym__expr_parenthesized_immediate] = STATE(4884), + [sym_comment] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1031)] = { + [aux_sym__repeat_newline] = STATE(1082), + [sym_comment] = STATE(1031), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1032)] = { + [aux_sym__repeat_newline] = STATE(987), + [sym_comment] = STATE(1032), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1033)] = { + [aux_sym__repeat_newline] = STATE(1085), + [sym_comment] = STATE(1033), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1034)] = { + [aux_sym__repeat_newline] = STATE(1087), + [sym_comment] = STATE(1034), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1035)] = { + [aux_sym__repeat_newline] = STATE(1089), + [sym_comment] = STATE(1035), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1036)] = { [aux_sym__repeat_newline] = STATE(1091), + [sym_comment] = STATE(1036), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1037)] = { + [aux_sym__repeat_newline] = STATE(989), + [sym_comment] = STATE(1037), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1038)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1038), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1039)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1039), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1040)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1040), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1041)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1041), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1042)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1042), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1043)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1043), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1044)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1044), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1045)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1045), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1046)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1046), + [anon_sym_in] = ACTIONS(2738), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2740), + [anon_sym_DASH2] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_STAR2] = ACTIONS(2740), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2738), + [anon_sym_has2] = ACTIONS(2738), + [anon_sym_not_DASHhas2] = ACTIONS(2738), + [anon_sym_starts_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), + [anon_sym_ends_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), + [anon_sym_EQ_EQ2] = ACTIONS(2738), + [anon_sym_BANG_EQ2] = ACTIONS(2738), + [anon_sym_LT2] = ACTIONS(2740), + [anon_sym_LT_EQ2] = ACTIONS(2738), + [anon_sym_GT_EQ2] = ACTIONS(2738), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2738), + [anon_sym_PLUS_PLUS2] = ACTIONS(2738), + [anon_sym_SLASH2] = ACTIONS(2740), + [anon_sym_mod2] = ACTIONS(2738), + [anon_sym_SLASH_SLASH2] = ACTIONS(2738), + [anon_sym_PLUS2] = ACTIONS(2740), + [anon_sym_bit_DASHshl2] = ACTIONS(2738), + [anon_sym_bit_DASHshr2] = ACTIONS(2738), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1047)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1047), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1048)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1048), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1049)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1049), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1050)] = { + [sym_comment] = STATE(1050), + [aux_sym_cmd_identifier_token2] = ACTIONS(2682), + [anon_sym_in] = ACTIONS(866), + [sym__newline] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(886), + [anon_sym_err_GT_PIPE] = ACTIONS(886), + [anon_sym_out_GT_PIPE] = ACTIONS(886), + [anon_sym_e_GT_PIPE] = ACTIONS(886), + [anon_sym_o_GT_PIPE] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(886), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(886), + [anon_sym_BANG_EQ2] = ACTIONS(886), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(886), + [anon_sym_GT_EQ2] = ACTIONS(886), + [anon_sym_EQ_TILDE2] = ACTIONS(886), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_COLON2] = ACTIONS(886), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(886), + [anon_sym_out_GT_GT] = ACTIONS(886), + [anon_sym_e_GT_GT] = ACTIONS(886), + [anon_sym_o_GT_GT] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1051)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1051), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1052)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1052), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1053)] = { + [sym_comment] = STATE(1053), + [ts_builtin_sym_end] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1960), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [sym__unquoted_pattern] = ACTIONS(1635), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1054)] = { + [aux_sym__repeat_newline] = STATE(993), [sym_comment] = STATE(1054), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1055)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1055), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1022), + [sym__newline] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_err_GT_PIPE] = ACTIONS(1022), + [anon_sym_out_GT_PIPE] = ACTIONS(1022), + [anon_sym_e_GT_PIPE] = ACTIONS(1022), + [anon_sym_o_GT_PIPE] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1022), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1022), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1022), + [anon_sym_xor2] = ACTIONS(1022), + [anon_sym_or2] = ACTIONS(1022), + [anon_sym_not_DASHin2] = ACTIONS(1022), + [anon_sym_has2] = ACTIONS(1022), + [anon_sym_not_DASHhas2] = ACTIONS(1022), + [anon_sym_starts_DASHwith2] = ACTIONS(1022), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1022), + [anon_sym_ends_DASHwith2] = ACTIONS(1022), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1022), + [anon_sym_EQ_EQ2] = ACTIONS(1022), + [anon_sym_BANG_EQ2] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1022), + [anon_sym_GT_EQ2] = ACTIONS(1022), + [anon_sym_EQ_TILDE2] = ACTIONS(1022), + [anon_sym_BANG_TILDE2] = ACTIONS(1022), + [anon_sym_like2] = ACTIONS(1022), + [anon_sym_not_DASHlike2] = ACTIONS(1022), + [anon_sym_LPAREN2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(1022), + [anon_sym_PLUS_PLUS2] = ACTIONS(1022), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1022), + [anon_sym_SLASH_SLASH2] = ACTIONS(1022), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1022), + [anon_sym_bit_DASHshr2] = ACTIONS(1022), + [anon_sym_bit_DASHand2] = ACTIONS(1022), + [anon_sym_bit_DASHxor2] = ACTIONS(1022), + [anon_sym_bit_DASHor2] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1022), + [anon_sym_out_GT_GT] = ACTIONS(1022), + [anon_sym_e_GT_GT] = ACTIONS(1022), + [anon_sym_o_GT_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1022), + [sym__unquoted_pattern] = ACTIONS(2658), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1056)] = { - [aux_sym__repeat_newline] = STATE(1092), [sym_comment] = STATE(1056), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [ts_builtin_sym_end] = ACTIONS(1030), + [anon_sym_in] = ACTIONS(1030), + [sym__newline] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(1030), + [anon_sym_xor2] = ACTIONS(1030), + [anon_sym_or2] = ACTIONS(1030), + [anon_sym_not_DASHin2] = ACTIONS(1030), + [anon_sym_has2] = ACTIONS(1030), + [anon_sym_not_DASHhas2] = ACTIONS(1030), + [anon_sym_starts_DASHwith2] = ACTIONS(1030), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1030), + [anon_sym_ends_DASHwith2] = ACTIONS(1030), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1030), + [anon_sym_EQ_EQ2] = ACTIONS(1030), + [anon_sym_BANG_EQ2] = ACTIONS(1030), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(1030), + [anon_sym_GT_EQ2] = ACTIONS(1030), + [anon_sym_EQ_TILDE2] = ACTIONS(1030), + [anon_sym_BANG_TILDE2] = ACTIONS(1030), + [anon_sym_like2] = ACTIONS(1030), + [anon_sym_not_DASHlike2] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(1030), + [anon_sym_PLUS_PLUS2] = ACTIONS(1030), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(1030), + [anon_sym_SLASH_SLASH2] = ACTIONS(1030), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(1030), + [anon_sym_bit_DASHshr2] = ACTIONS(1030), + [anon_sym_bit_DASHand2] = ACTIONS(1030), + [anon_sym_bit_DASHxor2] = ACTIONS(1030), + [anon_sym_bit_DASHor2] = ACTIONS(1030), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), + [sym__unquoted_pattern] = ACTIONS(2658), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1057)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(995), [sym_comment] = STATE(1057), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1058)] = { - [aux_sym__repeat_newline] = STATE(992), [sym_comment] = STATE(1058), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [ts_builtin_sym_end] = ACTIONS(2597), + [anon_sym_in] = ACTIONS(2597), + [sym__newline] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_PIPE] = ACTIONS(2597), + [anon_sym_err_GT_PIPE] = ACTIONS(2597), + [anon_sym_out_GT_PIPE] = ACTIONS(2597), + [anon_sym_e_GT_PIPE] = ACTIONS(2597), + [anon_sym_o_GT_PIPE] = ACTIONS(2597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2597), + [anon_sym_GT2] = ACTIONS(2599), + [anon_sym_DASH2] = ACTIONS(2597), + [anon_sym_STAR2] = ACTIONS(2599), + [anon_sym_and2] = ACTIONS(2597), + [anon_sym_xor2] = ACTIONS(2597), + [anon_sym_or2] = ACTIONS(2597), + [anon_sym_not_DASHin2] = ACTIONS(2597), + [anon_sym_has2] = ACTIONS(2597), + [anon_sym_not_DASHhas2] = ACTIONS(2597), + [anon_sym_starts_DASHwith2] = ACTIONS(2597), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2597), + [anon_sym_ends_DASHwith2] = ACTIONS(2597), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2597), + [anon_sym_EQ_EQ2] = ACTIONS(2597), + [anon_sym_BANG_EQ2] = ACTIONS(2597), + [anon_sym_LT2] = ACTIONS(2599), + [anon_sym_LT_EQ2] = ACTIONS(2597), + [anon_sym_GT_EQ2] = ACTIONS(2597), + [anon_sym_EQ_TILDE2] = ACTIONS(2597), + [anon_sym_BANG_TILDE2] = ACTIONS(2597), + [anon_sym_like2] = ACTIONS(2597), + [anon_sym_not_DASHlike2] = ACTIONS(2597), + [anon_sym_LPAREN2] = ACTIONS(1977), + [anon_sym_STAR_STAR2] = ACTIONS(2597), + [anon_sym_PLUS_PLUS2] = ACTIONS(2597), + [anon_sym_SLASH2] = ACTIONS(2599), + [anon_sym_mod2] = ACTIONS(2597), + [anon_sym_SLASH_SLASH2] = ACTIONS(2597), + [anon_sym_PLUS2] = ACTIONS(2599), + [anon_sym_bit_DASHshl2] = ACTIONS(2597), + [anon_sym_bit_DASHshr2] = ACTIONS(2597), + [anon_sym_bit_DASHand2] = ACTIONS(2597), + [anon_sym_bit_DASHxor2] = ACTIONS(2597), + [anon_sym_bit_DASHor2] = ACTIONS(2597), + [anon_sym_err_GT] = ACTIONS(2599), + [anon_sym_out_GT] = ACTIONS(2599), + [anon_sym_e_GT] = ACTIONS(2599), + [anon_sym_o_GT] = ACTIONS(2599), + [anon_sym_err_PLUSout_GT] = ACTIONS(2599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2599), + [anon_sym_o_PLUSe_GT] = ACTIONS(2599), + [anon_sym_e_PLUSo_GT] = ACTIONS(2599), + [anon_sym_err_GT_GT] = ACTIONS(2597), + [anon_sym_out_GT_GT] = ACTIONS(2597), + [anon_sym_e_GT_GT] = ACTIONS(2597), + [anon_sym_o_GT_GT] = ACTIONS(2597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2597), + [sym__unquoted_pattern] = ACTIONS(1983), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1059)] = { - [aux_sym__repeat_newline] = STATE(1093), + [aux_sym__repeat_newline] = STATE(997), [sym_comment] = STATE(1059), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1060)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1094), [sym_comment] = STATE(1060), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1061)] = { - [aux_sym__repeat_newline] = STATE(1094), [sym_comment] = STATE(1061), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(886), + [sym__newline] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(886), + [anon_sym_err_GT_PIPE] = ACTIONS(886), + [anon_sym_out_GT_PIPE] = ACTIONS(886), + [anon_sym_e_GT_PIPE] = ACTIONS(886), + [anon_sym_o_GT_PIPE] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(886), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(886), + [anon_sym_RBRACE] = ACTIONS(886), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(886), + [anon_sym_xor2] = ACTIONS(886), + [anon_sym_or2] = ACTIONS(886), + [anon_sym_not_DASHin2] = ACTIONS(886), + [anon_sym_has2] = ACTIONS(886), + [anon_sym_not_DASHhas2] = ACTIONS(886), + [anon_sym_starts_DASHwith2] = ACTIONS(886), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(886), + [anon_sym_ends_DASHwith2] = ACTIONS(886), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(886), + [anon_sym_EQ_EQ2] = ACTIONS(886), + [anon_sym_BANG_EQ2] = ACTIONS(886), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(886), + [anon_sym_GT_EQ2] = ACTIONS(886), + [anon_sym_EQ_TILDE2] = ACTIONS(886), + [anon_sym_BANG_TILDE2] = ACTIONS(886), + [anon_sym_like2] = ACTIONS(886), + [anon_sym_not_DASHlike2] = ACTIONS(886), + [anon_sym_STAR_STAR2] = ACTIONS(886), + [anon_sym_PLUS_PLUS2] = ACTIONS(886), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(886), + [anon_sym_SLASH_SLASH2] = ACTIONS(886), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(886), + [anon_sym_bit_DASHshr2] = ACTIONS(886), + [anon_sym_bit_DASHand2] = ACTIONS(886), + [anon_sym_bit_DASHxor2] = ACTIONS(886), + [anon_sym_bit_DASHor2] = ACTIONS(886), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(886), + [anon_sym_out_GT_GT] = ACTIONS(886), + [anon_sym_e_GT_GT] = ACTIONS(886), + [anon_sym_o_GT_GT] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), + [sym__unquoted_pattern] = ACTIONS(1734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1062)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1062), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [ts_builtin_sym_end] = ACTIONS(1973), + [anon_sym_in] = ACTIONS(1973), + [sym__newline] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_err_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_GT_PIPE] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), + [anon_sym_GT2] = ACTIONS(1975), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_STAR2] = ACTIONS(1975), + [anon_sym_and2] = ACTIONS(1973), + [anon_sym_xor2] = ACTIONS(1973), + [anon_sym_or2] = ACTIONS(1973), + [anon_sym_not_DASHin2] = ACTIONS(1973), + [anon_sym_has2] = ACTIONS(1973), + [anon_sym_not_DASHhas2] = ACTIONS(1973), + [anon_sym_starts_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), + [anon_sym_ends_DASHwith2] = ACTIONS(1973), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), + [anon_sym_EQ_EQ2] = ACTIONS(1973), + [anon_sym_BANG_EQ2] = ACTIONS(1973), + [anon_sym_LT2] = ACTIONS(1975), + [anon_sym_LT_EQ2] = ACTIONS(1973), + [anon_sym_GT_EQ2] = ACTIONS(1973), + [anon_sym_EQ_TILDE2] = ACTIONS(1973), + [anon_sym_BANG_TILDE2] = ACTIONS(1973), + [anon_sym_like2] = ACTIONS(1973), + [anon_sym_not_DASHlike2] = ACTIONS(1973), + [anon_sym_LPAREN2] = ACTIONS(1977), + [anon_sym_STAR_STAR2] = ACTIONS(1973), + [anon_sym_PLUS_PLUS2] = ACTIONS(1973), + [anon_sym_SLASH2] = ACTIONS(1975), + [anon_sym_mod2] = ACTIONS(1973), + [anon_sym_SLASH_SLASH2] = ACTIONS(1973), + [anon_sym_PLUS2] = ACTIONS(1975), + [anon_sym_bit_DASHshl2] = ACTIONS(1973), + [anon_sym_bit_DASHshr2] = ACTIONS(1973), + [anon_sym_bit_DASHand2] = ACTIONS(1973), + [anon_sym_bit_DASHxor2] = ACTIONS(1973), + [anon_sym_bit_DASHor2] = ACTIONS(1973), + [anon_sym_err_GT] = ACTIONS(1975), + [anon_sym_out_GT] = ACTIONS(1975), + [anon_sym_e_GT] = ACTIONS(1975), + [anon_sym_o_GT] = ACTIONS(1975), + [anon_sym_err_PLUSout_GT] = ACTIONS(1975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), + [anon_sym_o_PLUSe_GT] = ACTIONS(1975), + [anon_sym_e_PLUSo_GT] = ACTIONS(1975), + [anon_sym_err_GT_GT] = ACTIONS(1973), + [anon_sym_out_GT_GT] = ACTIONS(1973), + [anon_sym_e_GT_GT] = ACTIONS(1973), + [anon_sym_o_GT_GT] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), + [sym__unquoted_pattern] = ACTIONS(1983), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1063)] = { + [aux_sym__repeat_newline] = STATE(1095), [sym_comment] = STATE(1063), - [ts_builtin_sym_end] = ACTIONS(2575), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1064)] = { - [aux_sym__repeat_newline] = STATE(1095), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1064), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1065)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1096), [sym_comment] = STATE(1065), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1066)] = { - [aux_sym__repeat_newline] = STATE(1096), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1066), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1067)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1097), [sym_comment] = STATE(1067), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1068)] = { + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1069)] = { - [aux_sym__repeat_newline] = STATE(1097), + [aux_sym__repeat_newline] = STATE(1098), [sym_comment] = STATE(1069), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1070)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1070), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1071)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(999), [sym_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1072)] = { - [aux_sym__repeat_newline] = STATE(1098), + [aux_sym__repeat_newline] = STATE(1099), [sym_comment] = STATE(1072), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1073)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1073), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1074)] = { - [aux_sym__repeat_newline] = STATE(1099), [sym_comment] = STATE(1074), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2728), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2730), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2728), - [anon_sym_PLUS_PLUS2] = ACTIONS(2728), - [anon_sym_SLASH2] = ACTIONS(2730), - [anon_sym_mod2] = ACTIONS(2728), - [anon_sym_SLASH_SLASH2] = ACTIONS(2728), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [ts_builtin_sym_end] = ACTIONS(2541), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [sym__unquoted_pattern] = ACTIONS(1679), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1075)] = { - [aux_sym__repeat_newline] = STATE(994), + [aux_sym__repeat_newline] = STATE(1100), [sym_comment] = STATE(1075), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1076)] = { - [aux_sym__repeat_newline] = STATE(1100), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1076), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1077)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1101), [sym_comment] = STATE(1077), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_STAR2] = ACTIONS(2734), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2732), - [anon_sym_PLUS_PLUS2] = ACTIONS(2732), - [anon_sym_SLASH2] = ACTIONS(2734), - [anon_sym_mod2] = ACTIONS(2732), - [anon_sym_SLASH_SLASH2] = ACTIONS(2732), - [anon_sym_PLUS2] = ACTIONS(2734), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1078)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1078), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1079)] = { - [aux_sym__repeat_newline] = STATE(1101), + [aux_sym__repeat_newline] = STATE(1102), [sym_comment] = STATE(1079), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2746), + [sym__newline] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_GT2] = ACTIONS(2748), + [anon_sym_DASH2] = ACTIONS(2746), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_STAR2] = ACTIONS(2748), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2746), + [anon_sym_has2] = ACTIONS(2746), + [anon_sym_not_DASHhas2] = ACTIONS(2746), + [anon_sym_starts_DASHwith2] = ACTIONS(2746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2746), + [anon_sym_ends_DASHwith2] = ACTIONS(2746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2746), + [anon_sym_EQ_EQ2] = ACTIONS(2746), + [anon_sym_BANG_EQ2] = ACTIONS(2746), + [anon_sym_LT2] = ACTIONS(2748), + [anon_sym_LT_EQ2] = ACTIONS(2746), + [anon_sym_GT_EQ2] = ACTIONS(2746), + [anon_sym_EQ_TILDE2] = ACTIONS(2746), + [anon_sym_BANG_TILDE2] = ACTIONS(2746), + [anon_sym_like2] = ACTIONS(2746), + [anon_sym_not_DASHlike2] = ACTIONS(2746), + [anon_sym_STAR_STAR2] = ACTIONS(2746), + [anon_sym_PLUS_PLUS2] = ACTIONS(2746), + [anon_sym_SLASH2] = ACTIONS(2748), + [anon_sym_mod2] = ACTIONS(2746), + [anon_sym_SLASH_SLASH2] = ACTIONS(2746), + [anon_sym_PLUS2] = ACTIONS(2748), + [anon_sym_bit_DASHshl2] = ACTIONS(2746), + [anon_sym_bit_DASHshr2] = ACTIONS(2746), + [anon_sym_bit_DASHand2] = ACTIONS(2746), + [anon_sym_bit_DASHxor2] = ACTIONS(2746), + [anon_sym_bit_DASHor2] = ACTIONS(2746), + [anon_sym_err_GT] = ACTIONS(2748), + [anon_sym_out_GT] = ACTIONS(2748), + [anon_sym_e_GT] = ACTIONS(2748), + [anon_sym_o_GT] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT] = ACTIONS(2748), + [anon_sym_err_GT_GT] = ACTIONS(2746), + [anon_sym_out_GT_GT] = ACTIONS(2746), + [anon_sym_e_GT_GT] = ACTIONS(2746), + [anon_sym_o_GT_GT] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1080)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1103), [sym_comment] = STATE(1080), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1081)] = { - [aux_sym__repeat_newline] = STATE(1102), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1081), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2750), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2752), + [anon_sym_DASH2] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_STAR2] = ACTIONS(2752), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2750), + [anon_sym_has2] = ACTIONS(2750), + [anon_sym_not_DASHhas2] = ACTIONS(2750), + [anon_sym_starts_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), + [anon_sym_ends_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), + [anon_sym_EQ_EQ2] = ACTIONS(2750), + [anon_sym_BANG_EQ2] = ACTIONS(2750), + [anon_sym_LT2] = ACTIONS(2752), + [anon_sym_LT_EQ2] = ACTIONS(2750), + [anon_sym_GT_EQ2] = ACTIONS(2750), + [anon_sym_EQ_TILDE2] = ACTIONS(2750), + [anon_sym_BANG_TILDE2] = ACTIONS(2750), + [anon_sym_like2] = ACTIONS(2750), + [anon_sym_not_DASHlike2] = ACTIONS(2750), + [anon_sym_STAR_STAR2] = ACTIONS(2750), + [anon_sym_PLUS_PLUS2] = ACTIONS(2750), + [anon_sym_SLASH2] = ACTIONS(2752), + [anon_sym_mod2] = ACTIONS(2750), + [anon_sym_SLASH_SLASH2] = ACTIONS(2750), + [anon_sym_PLUS2] = ACTIONS(2752), + [anon_sym_bit_DASHshl2] = ACTIONS(2750), + [anon_sym_bit_DASHshr2] = ACTIONS(2750), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1082)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1082), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1083)] = { [sym_comment] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(2523), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), - [sym__unquoted_pattern] = ACTIONS(1639), + [ts_builtin_sym_end] = ACTIONS(2589), + [anon_sym_in] = ACTIONS(2589), + [sym__newline] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_err_GT_PIPE] = ACTIONS(2589), + [anon_sym_out_GT_PIPE] = ACTIONS(2589), + [anon_sym_e_GT_PIPE] = ACTIONS(2589), + [anon_sym_o_GT_PIPE] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2589), + [anon_sym_GT2] = ACTIONS(2591), + [anon_sym_DASH2] = ACTIONS(2589), + [anon_sym_STAR2] = ACTIONS(2591), + [anon_sym_and2] = ACTIONS(2589), + [anon_sym_xor2] = ACTIONS(2589), + [anon_sym_or2] = ACTIONS(2589), + [anon_sym_not_DASHin2] = ACTIONS(2589), + [anon_sym_has2] = ACTIONS(2589), + [anon_sym_not_DASHhas2] = ACTIONS(2589), + [anon_sym_starts_DASHwith2] = ACTIONS(2589), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2589), + [anon_sym_ends_DASHwith2] = ACTIONS(2589), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2589), + [anon_sym_EQ_EQ2] = ACTIONS(2589), + [anon_sym_BANG_EQ2] = ACTIONS(2589), + [anon_sym_LT2] = ACTIONS(2591), + [anon_sym_LT_EQ2] = ACTIONS(2589), + [anon_sym_GT_EQ2] = ACTIONS(2589), + [anon_sym_EQ_TILDE2] = ACTIONS(2589), + [anon_sym_BANG_TILDE2] = ACTIONS(2589), + [anon_sym_like2] = ACTIONS(2589), + [anon_sym_not_DASHlike2] = ACTIONS(2589), + [anon_sym_LPAREN2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2589), + [anon_sym_PLUS_PLUS2] = ACTIONS(2589), + [anon_sym_SLASH2] = ACTIONS(2591), + [anon_sym_mod2] = ACTIONS(2589), + [anon_sym_SLASH_SLASH2] = ACTIONS(2589), + [anon_sym_PLUS2] = ACTIONS(2591), + [anon_sym_bit_DASHshl2] = ACTIONS(2589), + [anon_sym_bit_DASHshr2] = ACTIONS(2589), + [anon_sym_bit_DASHand2] = ACTIONS(2589), + [anon_sym_bit_DASHxor2] = ACTIONS(2589), + [anon_sym_bit_DASHor2] = ACTIONS(2589), + [anon_sym_err_GT] = ACTIONS(2591), + [anon_sym_out_GT] = ACTIONS(2591), + [anon_sym_e_GT] = ACTIONS(2591), + [anon_sym_o_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT] = ACTIONS(2591), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [sym__unquoted_pattern] = ACTIONS(2646), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1084)] = { - [aux_sym__repeat_newline] = STATE(1106), + [aux_sym__repeat_newline] = STATE(1104), [sym_comment] = STATE(1084), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1085)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1085), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1086)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1105), [sym_comment] = STATE(1086), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1087)] = { - [aux_sym__repeat_newline] = STATE(1107), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1087), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1088)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1106), [sym_comment] = STATE(1088), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1089)] = { - [aux_sym__repeat_newline] = STATE(996), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1089), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1090)] = { + [aux_sym__repeat_newline] = STATE(1107), [sym_comment] = STATE(1090), - [ts_builtin_sym_end] = ACTIONS(2567), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), - [sym__unquoted_pattern] = ACTIONS(2633), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1091)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1091), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1092)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1001), [sym_comment] = STATE(1092), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1093)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1004), [sym_comment] = STATE(1093), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2756), + [anon_sym_DASH2] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_STAR2] = ACTIONS(2756), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2754), + [anon_sym_has2] = ACTIONS(2754), + [anon_sym_not_DASHhas2] = ACTIONS(2754), + [anon_sym_starts_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), + [anon_sym_ends_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), + [anon_sym_EQ_EQ2] = ACTIONS(2754), + [anon_sym_BANG_EQ2] = ACTIONS(2754), + [anon_sym_LT2] = ACTIONS(2756), + [anon_sym_LT_EQ2] = ACTIONS(2754), + [anon_sym_GT_EQ2] = ACTIONS(2754), + [anon_sym_EQ_TILDE2] = ACTIONS(2754), + [anon_sym_BANG_TILDE2] = ACTIONS(2754), + [anon_sym_like2] = ACTIONS(2754), + [anon_sym_not_DASHlike2] = ACTIONS(2754), + [anon_sym_STAR_STAR2] = ACTIONS(2754), + [anon_sym_PLUS_PLUS2] = ACTIONS(2754), + [anon_sym_SLASH2] = ACTIONS(2756), + [anon_sym_mod2] = ACTIONS(2754), + [anon_sym_SLASH_SLASH2] = ACTIONS(2754), + [anon_sym_PLUS2] = ACTIONS(2756), + [anon_sym_bit_DASHshl2] = ACTIONS(2754), + [anon_sym_bit_DASHshr2] = ACTIONS(2754), + [anon_sym_bit_DASHand2] = ACTIONS(2754), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1094)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1094), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2758), + [sym__newline] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_err_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_GT_PIPE] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2760), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_STAR2] = ACTIONS(2760), + [anon_sym_and2] = ACTIONS(2758), + [anon_sym_xor2] = ACTIONS(2758), + [anon_sym_or2] = ACTIONS(2758), + [anon_sym_not_DASHin2] = ACTIONS(2758), + [anon_sym_has2] = ACTIONS(2758), + [anon_sym_not_DASHhas2] = ACTIONS(2758), + [anon_sym_starts_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), + [anon_sym_ends_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), + [anon_sym_EQ_EQ2] = ACTIONS(2758), + [anon_sym_BANG_EQ2] = ACTIONS(2758), + [anon_sym_LT2] = ACTIONS(2760), + [anon_sym_LT_EQ2] = ACTIONS(2758), + [anon_sym_GT_EQ2] = ACTIONS(2758), + [anon_sym_EQ_TILDE2] = ACTIONS(2758), + [anon_sym_BANG_TILDE2] = ACTIONS(2758), + [anon_sym_like2] = ACTIONS(2758), + [anon_sym_not_DASHlike2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2758), + [anon_sym_PLUS_PLUS2] = ACTIONS(2758), + [anon_sym_SLASH2] = ACTIONS(2760), + [anon_sym_mod2] = ACTIONS(2758), + [anon_sym_SLASH_SLASH2] = ACTIONS(2758), + [anon_sym_PLUS2] = ACTIONS(2760), + [anon_sym_bit_DASHshl2] = ACTIONS(2758), + [anon_sym_bit_DASHshr2] = ACTIONS(2758), + [anon_sym_bit_DASHand2] = ACTIONS(2758), + [anon_sym_bit_DASHxor2] = ACTIONS(2758), + [anon_sym_bit_DASHor2] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2760), + [anon_sym_out_GT] = ACTIONS(2760), + [anon_sym_e_GT] = ACTIONS(2760), + [anon_sym_o_GT] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT] = ACTIONS(2760), + [anon_sym_err_GT_GT] = ACTIONS(2758), + [anon_sym_out_GT_GT] = ACTIONS(2758), + [anon_sym_e_GT_GT] = ACTIONS(2758), + [anon_sym_o_GT_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1095)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1095), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2758), + [sym__newline] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_err_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_GT_PIPE] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2760), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_STAR2] = ACTIONS(2760), + [anon_sym_and2] = ACTIONS(2758), + [anon_sym_xor2] = ACTIONS(2758), + [anon_sym_or2] = ACTIONS(2758), + [anon_sym_not_DASHin2] = ACTIONS(2758), + [anon_sym_has2] = ACTIONS(2758), + [anon_sym_not_DASHhas2] = ACTIONS(2758), + [anon_sym_starts_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), + [anon_sym_ends_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), + [anon_sym_EQ_EQ2] = ACTIONS(2758), + [anon_sym_BANG_EQ2] = ACTIONS(2758), + [anon_sym_LT2] = ACTIONS(2760), + [anon_sym_LT_EQ2] = ACTIONS(2758), + [anon_sym_GT_EQ2] = ACTIONS(2758), + [anon_sym_EQ_TILDE2] = ACTIONS(2758), + [anon_sym_BANG_TILDE2] = ACTIONS(2758), + [anon_sym_like2] = ACTIONS(2758), + [anon_sym_not_DASHlike2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2758), + [anon_sym_PLUS_PLUS2] = ACTIONS(2758), + [anon_sym_SLASH2] = ACTIONS(2760), + [anon_sym_mod2] = ACTIONS(2758), + [anon_sym_SLASH_SLASH2] = ACTIONS(2758), + [anon_sym_PLUS2] = ACTIONS(2760), + [anon_sym_bit_DASHshl2] = ACTIONS(2758), + [anon_sym_bit_DASHshr2] = ACTIONS(2758), + [anon_sym_bit_DASHand2] = ACTIONS(2758), + [anon_sym_bit_DASHxor2] = ACTIONS(2758), + [anon_sym_bit_DASHor2] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2760), + [anon_sym_out_GT] = ACTIONS(2760), + [anon_sym_e_GT] = ACTIONS(2760), + [anon_sym_o_GT] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT] = ACTIONS(2760), + [anon_sym_err_GT_GT] = ACTIONS(2758), + [anon_sym_out_GT_GT] = ACTIONS(2758), + [anon_sym_e_GT_GT] = ACTIONS(2758), + [anon_sym_o_GT_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1096)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1096), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2758), + [sym__newline] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_err_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_GT_PIPE] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2760), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_STAR2] = ACTIONS(2760), + [anon_sym_and2] = ACTIONS(2758), + [anon_sym_xor2] = ACTIONS(2758), + [anon_sym_or2] = ACTIONS(2758), + [anon_sym_not_DASHin2] = ACTIONS(2758), + [anon_sym_has2] = ACTIONS(2758), + [anon_sym_not_DASHhas2] = ACTIONS(2758), + [anon_sym_starts_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), + [anon_sym_ends_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), + [anon_sym_EQ_EQ2] = ACTIONS(2758), + [anon_sym_BANG_EQ2] = ACTIONS(2758), + [anon_sym_LT2] = ACTIONS(2760), + [anon_sym_LT_EQ2] = ACTIONS(2758), + [anon_sym_GT_EQ2] = ACTIONS(2758), + [anon_sym_EQ_TILDE2] = ACTIONS(2758), + [anon_sym_BANG_TILDE2] = ACTIONS(2758), + [anon_sym_like2] = ACTIONS(2758), + [anon_sym_not_DASHlike2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2758), + [anon_sym_PLUS_PLUS2] = ACTIONS(2758), + [anon_sym_SLASH2] = ACTIONS(2760), + [anon_sym_mod2] = ACTIONS(2758), + [anon_sym_SLASH_SLASH2] = ACTIONS(2758), + [anon_sym_PLUS2] = ACTIONS(2760), + [anon_sym_bit_DASHshl2] = ACTIONS(2758), + [anon_sym_bit_DASHshr2] = ACTIONS(2758), + [anon_sym_bit_DASHand2] = ACTIONS(2758), + [anon_sym_bit_DASHxor2] = ACTIONS(2758), + [anon_sym_bit_DASHor2] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2760), + [anon_sym_out_GT] = ACTIONS(2760), + [anon_sym_e_GT] = ACTIONS(2760), + [anon_sym_o_GT] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT] = ACTIONS(2760), + [anon_sym_err_GT_GT] = ACTIONS(2758), + [anon_sym_out_GT_GT] = ACTIONS(2758), + [anon_sym_e_GT_GT] = ACTIONS(2758), + [anon_sym_o_GT_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1097)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1097), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2758), + [sym__newline] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_err_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_GT_PIPE] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2760), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_STAR2] = ACTIONS(2760), + [anon_sym_and2] = ACTIONS(2758), + [anon_sym_xor2] = ACTIONS(2758), + [anon_sym_or2] = ACTIONS(2758), + [anon_sym_not_DASHin2] = ACTIONS(2758), + [anon_sym_has2] = ACTIONS(2758), + [anon_sym_not_DASHhas2] = ACTIONS(2758), + [anon_sym_starts_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), + [anon_sym_ends_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), + [anon_sym_EQ_EQ2] = ACTIONS(2758), + [anon_sym_BANG_EQ2] = ACTIONS(2758), + [anon_sym_LT2] = ACTIONS(2760), + [anon_sym_LT_EQ2] = ACTIONS(2758), + [anon_sym_GT_EQ2] = ACTIONS(2758), + [anon_sym_EQ_TILDE2] = ACTIONS(2758), + [anon_sym_BANG_TILDE2] = ACTIONS(2758), + [anon_sym_like2] = ACTIONS(2758), + [anon_sym_not_DASHlike2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2758), + [anon_sym_PLUS_PLUS2] = ACTIONS(2758), + [anon_sym_SLASH2] = ACTIONS(2760), + [anon_sym_mod2] = ACTIONS(2758), + [anon_sym_SLASH_SLASH2] = ACTIONS(2758), + [anon_sym_PLUS2] = ACTIONS(2760), + [anon_sym_bit_DASHshl2] = ACTIONS(2758), + [anon_sym_bit_DASHshr2] = ACTIONS(2758), + [anon_sym_bit_DASHand2] = ACTIONS(2758), + [anon_sym_bit_DASHxor2] = ACTIONS(2758), + [anon_sym_bit_DASHor2] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2760), + [anon_sym_out_GT] = ACTIONS(2760), + [anon_sym_e_GT] = ACTIONS(2760), + [anon_sym_o_GT] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT] = ACTIONS(2760), + [anon_sym_err_GT_GT] = ACTIONS(2758), + [anon_sym_out_GT_GT] = ACTIONS(2758), + [anon_sym_e_GT_GT] = ACTIONS(2758), + [anon_sym_o_GT_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1098)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1098), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2758), + [sym__newline] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_err_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_GT_PIPE] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2760), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_STAR2] = ACTIONS(2760), + [anon_sym_and2] = ACTIONS(2758), + [anon_sym_xor2] = ACTIONS(2758), + [anon_sym_or2] = ACTIONS(2758), + [anon_sym_not_DASHin2] = ACTIONS(2758), + [anon_sym_has2] = ACTIONS(2758), + [anon_sym_not_DASHhas2] = ACTIONS(2758), + [anon_sym_starts_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), + [anon_sym_ends_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), + [anon_sym_EQ_EQ2] = ACTIONS(2758), + [anon_sym_BANG_EQ2] = ACTIONS(2758), + [anon_sym_LT2] = ACTIONS(2760), + [anon_sym_LT_EQ2] = ACTIONS(2758), + [anon_sym_GT_EQ2] = ACTIONS(2758), + [anon_sym_EQ_TILDE2] = ACTIONS(2758), + [anon_sym_BANG_TILDE2] = ACTIONS(2758), + [anon_sym_like2] = ACTIONS(2758), + [anon_sym_not_DASHlike2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2758), + [anon_sym_PLUS_PLUS2] = ACTIONS(2758), + [anon_sym_SLASH2] = ACTIONS(2760), + [anon_sym_mod2] = ACTIONS(2758), + [anon_sym_SLASH_SLASH2] = ACTIONS(2758), + [anon_sym_PLUS2] = ACTIONS(2760), + [anon_sym_bit_DASHshl2] = ACTIONS(2758), + [anon_sym_bit_DASHshr2] = ACTIONS(2758), + [anon_sym_bit_DASHand2] = ACTIONS(2758), + [anon_sym_bit_DASHxor2] = ACTIONS(2758), + [anon_sym_bit_DASHor2] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2760), + [anon_sym_out_GT] = ACTIONS(2760), + [anon_sym_e_GT] = ACTIONS(2760), + [anon_sym_o_GT] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT] = ACTIONS(2760), + [anon_sym_err_GT_GT] = ACTIONS(2758), + [anon_sym_out_GT_GT] = ACTIONS(2758), + [anon_sym_e_GT_GT] = ACTIONS(2758), + [anon_sym_o_GT_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1099)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1099), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2742), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2740), - [anon_sym_PLUS_PLUS2] = ACTIONS(2740), - [anon_sym_SLASH2] = ACTIONS(2742), - [anon_sym_mod2] = ACTIONS(2740), - [anon_sym_SLASH_SLASH2] = ACTIONS(2740), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2758), + [sym__newline] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_err_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_GT_PIPE] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2760), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_STAR2] = ACTIONS(2760), + [anon_sym_and2] = ACTIONS(2758), + [anon_sym_xor2] = ACTIONS(2758), + [anon_sym_or2] = ACTIONS(2758), + [anon_sym_not_DASHin2] = ACTIONS(2758), + [anon_sym_has2] = ACTIONS(2758), + [anon_sym_not_DASHhas2] = ACTIONS(2758), + [anon_sym_starts_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), + [anon_sym_ends_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), + [anon_sym_EQ_EQ2] = ACTIONS(2758), + [anon_sym_BANG_EQ2] = ACTIONS(2758), + [anon_sym_LT2] = ACTIONS(2760), + [anon_sym_LT_EQ2] = ACTIONS(2758), + [anon_sym_GT_EQ2] = ACTIONS(2758), + [anon_sym_EQ_TILDE2] = ACTIONS(2758), + [anon_sym_BANG_TILDE2] = ACTIONS(2758), + [anon_sym_like2] = ACTIONS(2758), + [anon_sym_not_DASHlike2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2758), + [anon_sym_PLUS_PLUS2] = ACTIONS(2758), + [anon_sym_SLASH2] = ACTIONS(2760), + [anon_sym_mod2] = ACTIONS(2758), + [anon_sym_SLASH_SLASH2] = ACTIONS(2758), + [anon_sym_PLUS2] = ACTIONS(2760), + [anon_sym_bit_DASHshl2] = ACTIONS(2758), + [anon_sym_bit_DASHshr2] = ACTIONS(2758), + [anon_sym_bit_DASHand2] = ACTIONS(2758), + [anon_sym_bit_DASHxor2] = ACTIONS(2758), + [anon_sym_bit_DASHor2] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2760), + [anon_sym_out_GT] = ACTIONS(2760), + [anon_sym_e_GT] = ACTIONS(2760), + [anon_sym_o_GT] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT] = ACTIONS(2760), + [anon_sym_err_GT_GT] = ACTIONS(2758), + [anon_sym_out_GT_GT] = ACTIONS(2758), + [anon_sym_e_GT_GT] = ACTIONS(2758), + [anon_sym_o_GT_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1100)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1100), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2758), + [sym__newline] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_err_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_GT_PIPE] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2760), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_STAR2] = ACTIONS(2760), + [anon_sym_and2] = ACTIONS(2758), + [anon_sym_xor2] = ACTIONS(2758), + [anon_sym_or2] = ACTIONS(2758), + [anon_sym_not_DASHin2] = ACTIONS(2758), + [anon_sym_has2] = ACTIONS(2758), + [anon_sym_not_DASHhas2] = ACTIONS(2758), + [anon_sym_starts_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), + [anon_sym_ends_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), + [anon_sym_EQ_EQ2] = ACTIONS(2758), + [anon_sym_BANG_EQ2] = ACTIONS(2758), + [anon_sym_LT2] = ACTIONS(2760), + [anon_sym_LT_EQ2] = ACTIONS(2758), + [anon_sym_GT_EQ2] = ACTIONS(2758), + [anon_sym_EQ_TILDE2] = ACTIONS(2758), + [anon_sym_BANG_TILDE2] = ACTIONS(2758), + [anon_sym_like2] = ACTIONS(2758), + [anon_sym_not_DASHlike2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2758), + [anon_sym_PLUS_PLUS2] = ACTIONS(2758), + [anon_sym_SLASH2] = ACTIONS(2760), + [anon_sym_mod2] = ACTIONS(2758), + [anon_sym_SLASH_SLASH2] = ACTIONS(2758), + [anon_sym_PLUS2] = ACTIONS(2760), + [anon_sym_bit_DASHshl2] = ACTIONS(2758), + [anon_sym_bit_DASHshr2] = ACTIONS(2758), + [anon_sym_bit_DASHand2] = ACTIONS(2758), + [anon_sym_bit_DASHxor2] = ACTIONS(2758), + [anon_sym_bit_DASHor2] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2760), + [anon_sym_out_GT] = ACTIONS(2760), + [anon_sym_e_GT] = ACTIONS(2760), + [anon_sym_o_GT] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT] = ACTIONS(2760), + [anon_sym_err_GT_GT] = ACTIONS(2758), + [anon_sym_out_GT_GT] = ACTIONS(2758), + [anon_sym_e_GT_GT] = ACTIONS(2758), + [anon_sym_o_GT_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1101)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1101), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2758), + [sym__newline] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_err_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_GT_PIPE] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2760), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_STAR2] = ACTIONS(2760), + [anon_sym_and2] = ACTIONS(2758), + [anon_sym_xor2] = ACTIONS(2758), + [anon_sym_or2] = ACTIONS(2758), + [anon_sym_not_DASHin2] = ACTIONS(2758), + [anon_sym_has2] = ACTIONS(2758), + [anon_sym_not_DASHhas2] = ACTIONS(2758), + [anon_sym_starts_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), + [anon_sym_ends_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), + [anon_sym_EQ_EQ2] = ACTIONS(2758), + [anon_sym_BANG_EQ2] = ACTIONS(2758), + [anon_sym_LT2] = ACTIONS(2760), + [anon_sym_LT_EQ2] = ACTIONS(2758), + [anon_sym_GT_EQ2] = ACTIONS(2758), + [anon_sym_EQ_TILDE2] = ACTIONS(2758), + [anon_sym_BANG_TILDE2] = ACTIONS(2758), + [anon_sym_like2] = ACTIONS(2758), + [anon_sym_not_DASHlike2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2758), + [anon_sym_PLUS_PLUS2] = ACTIONS(2758), + [anon_sym_SLASH2] = ACTIONS(2760), + [anon_sym_mod2] = ACTIONS(2758), + [anon_sym_SLASH_SLASH2] = ACTIONS(2758), + [anon_sym_PLUS2] = ACTIONS(2760), + [anon_sym_bit_DASHshl2] = ACTIONS(2758), + [anon_sym_bit_DASHshr2] = ACTIONS(2758), + [anon_sym_bit_DASHand2] = ACTIONS(2758), + [anon_sym_bit_DASHxor2] = ACTIONS(2758), + [anon_sym_bit_DASHor2] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2760), + [anon_sym_out_GT] = ACTIONS(2760), + [anon_sym_e_GT] = ACTIONS(2760), + [anon_sym_o_GT] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT] = ACTIONS(2760), + [anon_sym_err_GT_GT] = ACTIONS(2758), + [anon_sym_out_GT_GT] = ACTIONS(2758), + [anon_sym_e_GT_GT] = ACTIONS(2758), + [anon_sym_o_GT_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1102)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1102), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_STAR2] = ACTIONS(2764), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2762), + [anon_sym_PLUS_PLUS2] = ACTIONS(2762), + [anon_sym_SLASH2] = ACTIONS(2764), + [anon_sym_mod2] = ACTIONS(2762), + [anon_sym_SLASH_SLASH2] = ACTIONS(2762), + [anon_sym_PLUS2] = ACTIONS(2764), + [anon_sym_bit_DASHshl2] = ACTIONS(2762), + [anon_sym_bit_DASHshr2] = ACTIONS(2762), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1103)] = { - [aux_sym__repeat_newline] = STATE(998), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1103), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2758), + [sym__newline] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_err_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_GT_PIPE] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2760), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_STAR2] = ACTIONS(2760), + [anon_sym_and2] = ACTIONS(2758), + [anon_sym_xor2] = ACTIONS(2758), + [anon_sym_or2] = ACTIONS(2758), + [anon_sym_not_DASHin2] = ACTIONS(2758), + [anon_sym_has2] = ACTIONS(2758), + [anon_sym_not_DASHhas2] = ACTIONS(2758), + [anon_sym_starts_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), + [anon_sym_ends_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), + [anon_sym_EQ_EQ2] = ACTIONS(2758), + [anon_sym_BANG_EQ2] = ACTIONS(2758), + [anon_sym_LT2] = ACTIONS(2760), + [anon_sym_LT_EQ2] = ACTIONS(2758), + [anon_sym_GT_EQ2] = ACTIONS(2758), + [anon_sym_EQ_TILDE2] = ACTIONS(2758), + [anon_sym_BANG_TILDE2] = ACTIONS(2758), + [anon_sym_like2] = ACTIONS(2758), + [anon_sym_not_DASHlike2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2758), + [anon_sym_PLUS_PLUS2] = ACTIONS(2758), + [anon_sym_SLASH2] = ACTIONS(2760), + [anon_sym_mod2] = ACTIONS(2758), + [anon_sym_SLASH_SLASH2] = ACTIONS(2758), + [anon_sym_PLUS2] = ACTIONS(2760), + [anon_sym_bit_DASHshl2] = ACTIONS(2758), + [anon_sym_bit_DASHshr2] = ACTIONS(2758), + [anon_sym_bit_DASHand2] = ACTIONS(2758), + [anon_sym_bit_DASHxor2] = ACTIONS(2758), + [anon_sym_bit_DASHor2] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2760), + [anon_sym_out_GT] = ACTIONS(2760), + [anon_sym_e_GT] = ACTIONS(2760), + [anon_sym_o_GT] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT] = ACTIONS(2760), + [anon_sym_err_GT_GT] = ACTIONS(2758), + [anon_sym_out_GT_GT] = ACTIONS(2758), + [anon_sym_e_GT_GT] = ACTIONS(2758), + [anon_sym_o_GT_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1104)] = { - [aux_sym__repeat_newline] = STATE(1001), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1104), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2746), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2744), - [anon_sym_PLUS_PLUS2] = ACTIONS(2744), - [anon_sym_SLASH2] = ACTIONS(2746), - [anon_sym_mod2] = ACTIONS(2744), - [anon_sym_SLASH_SLASH2] = ACTIONS(2744), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2758), + [sym__newline] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_err_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_GT_PIPE] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2760), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_STAR2] = ACTIONS(2760), + [anon_sym_and2] = ACTIONS(2758), + [anon_sym_xor2] = ACTIONS(2758), + [anon_sym_or2] = ACTIONS(2758), + [anon_sym_not_DASHin2] = ACTIONS(2758), + [anon_sym_has2] = ACTIONS(2758), + [anon_sym_not_DASHhas2] = ACTIONS(2758), + [anon_sym_starts_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), + [anon_sym_ends_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), + [anon_sym_EQ_EQ2] = ACTIONS(2758), + [anon_sym_BANG_EQ2] = ACTIONS(2758), + [anon_sym_LT2] = ACTIONS(2760), + [anon_sym_LT_EQ2] = ACTIONS(2758), + [anon_sym_GT_EQ2] = ACTIONS(2758), + [anon_sym_EQ_TILDE2] = ACTIONS(2758), + [anon_sym_BANG_TILDE2] = ACTIONS(2758), + [anon_sym_like2] = ACTIONS(2758), + [anon_sym_not_DASHlike2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2758), + [anon_sym_PLUS_PLUS2] = ACTIONS(2758), + [anon_sym_SLASH2] = ACTIONS(2760), + [anon_sym_mod2] = ACTIONS(2758), + [anon_sym_SLASH_SLASH2] = ACTIONS(2758), + [anon_sym_PLUS2] = ACTIONS(2760), + [anon_sym_bit_DASHshl2] = ACTIONS(2758), + [anon_sym_bit_DASHshr2] = ACTIONS(2758), + [anon_sym_bit_DASHand2] = ACTIONS(2758), + [anon_sym_bit_DASHxor2] = ACTIONS(2758), + [anon_sym_bit_DASHor2] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2760), + [anon_sym_out_GT] = ACTIONS(2760), + [anon_sym_e_GT] = ACTIONS(2760), + [anon_sym_o_GT] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT] = ACTIONS(2760), + [anon_sym_err_GT_GT] = ACTIONS(2758), + [anon_sym_out_GT_GT] = ACTIONS(2758), + [anon_sym_e_GT_GT] = ACTIONS(2758), + [anon_sym_o_GT_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1105)] = { - [aux_sym__repeat_newline] = STATE(1002), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1105), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2758), + [sym__newline] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_err_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_GT_PIPE] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2760), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_STAR2] = ACTIONS(2760), + [anon_sym_and2] = ACTIONS(2758), + [anon_sym_xor2] = ACTIONS(2758), + [anon_sym_or2] = ACTIONS(2758), + [anon_sym_not_DASHin2] = ACTIONS(2758), + [anon_sym_has2] = ACTIONS(2758), + [anon_sym_not_DASHhas2] = ACTIONS(2758), + [anon_sym_starts_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), + [anon_sym_ends_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), + [anon_sym_EQ_EQ2] = ACTIONS(2758), + [anon_sym_BANG_EQ2] = ACTIONS(2758), + [anon_sym_LT2] = ACTIONS(2760), + [anon_sym_LT_EQ2] = ACTIONS(2758), + [anon_sym_GT_EQ2] = ACTIONS(2758), + [anon_sym_EQ_TILDE2] = ACTIONS(2758), + [anon_sym_BANG_TILDE2] = ACTIONS(2758), + [anon_sym_like2] = ACTIONS(2758), + [anon_sym_not_DASHlike2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2758), + [anon_sym_PLUS_PLUS2] = ACTIONS(2758), + [anon_sym_SLASH2] = ACTIONS(2760), + [anon_sym_mod2] = ACTIONS(2758), + [anon_sym_SLASH_SLASH2] = ACTIONS(2758), + [anon_sym_PLUS2] = ACTIONS(2760), + [anon_sym_bit_DASHshl2] = ACTIONS(2758), + [anon_sym_bit_DASHshr2] = ACTIONS(2758), + [anon_sym_bit_DASHand2] = ACTIONS(2758), + [anon_sym_bit_DASHxor2] = ACTIONS(2758), + [anon_sym_bit_DASHor2] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2760), + [anon_sym_out_GT] = ACTIONS(2760), + [anon_sym_e_GT] = ACTIONS(2760), + [anon_sym_o_GT] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT] = ACTIONS(2760), + [anon_sym_err_GT_GT] = ACTIONS(2758), + [anon_sym_out_GT_GT] = ACTIONS(2758), + [anon_sym_e_GT_GT] = ACTIONS(2758), + [anon_sym_o_GT_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1106)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1106), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2758), + [sym__newline] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_err_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_GT_PIPE] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2760), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_STAR2] = ACTIONS(2760), + [anon_sym_and2] = ACTIONS(2758), + [anon_sym_xor2] = ACTIONS(2758), + [anon_sym_or2] = ACTIONS(2758), + [anon_sym_not_DASHin2] = ACTIONS(2758), + [anon_sym_has2] = ACTIONS(2758), + [anon_sym_not_DASHhas2] = ACTIONS(2758), + [anon_sym_starts_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), + [anon_sym_ends_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), + [anon_sym_EQ_EQ2] = ACTIONS(2758), + [anon_sym_BANG_EQ2] = ACTIONS(2758), + [anon_sym_LT2] = ACTIONS(2760), + [anon_sym_LT_EQ2] = ACTIONS(2758), + [anon_sym_GT_EQ2] = ACTIONS(2758), + [anon_sym_EQ_TILDE2] = ACTIONS(2758), + [anon_sym_BANG_TILDE2] = ACTIONS(2758), + [anon_sym_like2] = ACTIONS(2758), + [anon_sym_not_DASHlike2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2758), + [anon_sym_PLUS_PLUS2] = ACTIONS(2758), + [anon_sym_SLASH2] = ACTIONS(2760), + [anon_sym_mod2] = ACTIONS(2758), + [anon_sym_SLASH_SLASH2] = ACTIONS(2758), + [anon_sym_PLUS2] = ACTIONS(2760), + [anon_sym_bit_DASHshl2] = ACTIONS(2758), + [anon_sym_bit_DASHshr2] = ACTIONS(2758), + [anon_sym_bit_DASHand2] = ACTIONS(2758), + [anon_sym_bit_DASHxor2] = ACTIONS(2758), + [anon_sym_bit_DASHor2] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2760), + [anon_sym_out_GT] = ACTIONS(2760), + [anon_sym_e_GT] = ACTIONS(2760), + [anon_sym_o_GT] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT] = ACTIONS(2760), + [anon_sym_err_GT_GT] = ACTIONS(2758), + [anon_sym_out_GT_GT] = ACTIONS(2758), + [anon_sym_e_GT_GT] = ACTIONS(2758), + [anon_sym_o_GT_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1107)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1107), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2758), + [sym__newline] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_err_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_GT_PIPE] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2760), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_STAR2] = ACTIONS(2760), + [anon_sym_and2] = ACTIONS(2758), + [anon_sym_xor2] = ACTIONS(2758), + [anon_sym_or2] = ACTIONS(2758), + [anon_sym_not_DASHin2] = ACTIONS(2758), + [anon_sym_has2] = ACTIONS(2758), + [anon_sym_not_DASHhas2] = ACTIONS(2758), + [anon_sym_starts_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), + [anon_sym_ends_DASHwith2] = ACTIONS(2758), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), + [anon_sym_EQ_EQ2] = ACTIONS(2758), + [anon_sym_BANG_EQ2] = ACTIONS(2758), + [anon_sym_LT2] = ACTIONS(2760), + [anon_sym_LT_EQ2] = ACTIONS(2758), + [anon_sym_GT_EQ2] = ACTIONS(2758), + [anon_sym_EQ_TILDE2] = ACTIONS(2758), + [anon_sym_BANG_TILDE2] = ACTIONS(2758), + [anon_sym_like2] = ACTIONS(2758), + [anon_sym_not_DASHlike2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2758), + [anon_sym_PLUS_PLUS2] = ACTIONS(2758), + [anon_sym_SLASH2] = ACTIONS(2760), + [anon_sym_mod2] = ACTIONS(2758), + [anon_sym_SLASH_SLASH2] = ACTIONS(2758), + [anon_sym_PLUS2] = ACTIONS(2760), + [anon_sym_bit_DASHshl2] = ACTIONS(2758), + [anon_sym_bit_DASHshr2] = ACTIONS(2758), + [anon_sym_bit_DASHand2] = ACTIONS(2758), + [anon_sym_bit_DASHxor2] = ACTIONS(2758), + [anon_sym_bit_DASHor2] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2760), + [anon_sym_out_GT] = ACTIONS(2760), + [anon_sym_e_GT] = ACTIONS(2760), + [anon_sym_o_GT] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT] = ACTIONS(2760), + [anon_sym_err_GT_GT] = ACTIONS(2758), + [anon_sym_out_GT_GT] = ACTIONS(2758), + [anon_sym_e_GT_GT] = ACTIONS(2758), + [anon_sym_o_GT_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1108)] = { - [aux_sym__repeat_newline] = STATE(1004), + [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(1108), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1109)] = { - [sym_expr_unary] = STATE(2841), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2562), - [sym_val_range] = STATE(2841), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2841), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2613), - [sym__unquoted_with_expr] = STATE(2844), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(1005), [sym_comment] = STATE(1109), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1110)] = { + [sym__expr_parenthesized_immediate] = STATE(5171), + [sym_comment] = STATE(1110), + [ts_builtin_sym_end] = ACTIONS(2188), + [anon_sym_in] = ACTIONS(2188), + [sym__newline] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_PIPE] = ACTIONS(2188), + [anon_sym_err_GT_PIPE] = ACTIONS(2188), + [anon_sym_out_GT_PIPE] = ACTIONS(2188), + [anon_sym_e_GT_PIPE] = ACTIONS(2188), + [anon_sym_o_GT_PIPE] = ACTIONS(2188), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2188), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2188), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2188), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2188), + [anon_sym_GT2] = ACTIONS(2190), + [anon_sym_DASH2] = ACTIONS(2188), + [anon_sym_STAR2] = ACTIONS(2190), + [anon_sym_and2] = ACTIONS(2188), + [anon_sym_xor2] = ACTIONS(2188), + [anon_sym_or2] = ACTIONS(2188), + [anon_sym_not_DASHin2] = ACTIONS(2188), + [anon_sym_has2] = ACTIONS(2188), + [anon_sym_not_DASHhas2] = ACTIONS(2188), + [anon_sym_starts_DASHwith2] = ACTIONS(2188), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2188), + [anon_sym_ends_DASHwith2] = ACTIONS(2188), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2188), + [anon_sym_EQ_EQ2] = ACTIONS(2188), + [anon_sym_BANG_EQ2] = ACTIONS(2188), + [anon_sym_LT2] = ACTIONS(2190), + [anon_sym_LT_EQ2] = ACTIONS(2188), + [anon_sym_GT_EQ2] = ACTIONS(2188), + [anon_sym_EQ_TILDE2] = ACTIONS(2188), + [anon_sym_BANG_TILDE2] = ACTIONS(2188), + [anon_sym_like2] = ACTIONS(2188), + [anon_sym_not_DASHlike2] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2188), + [anon_sym_PLUS_PLUS2] = ACTIONS(2188), + [anon_sym_SLASH2] = ACTIONS(2190), + [anon_sym_mod2] = ACTIONS(2188), + [anon_sym_SLASH_SLASH2] = ACTIONS(2188), + [anon_sym_PLUS2] = ACTIONS(2190), + [anon_sym_bit_DASHshl2] = ACTIONS(2188), + [anon_sym_bit_DASHshr2] = ACTIONS(2188), + [anon_sym_bit_DASHand2] = ACTIONS(2188), + [anon_sym_bit_DASHxor2] = ACTIONS(2188), + [anon_sym_bit_DASHor2] = ACTIONS(2188), + [anon_sym_err_GT] = ACTIONS(2190), + [anon_sym_out_GT] = ACTIONS(2190), + [anon_sym_e_GT] = ACTIONS(2190), + [anon_sym_o_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT] = ACTIONS(2190), + [anon_sym_err_GT_GT] = ACTIONS(2188), + [anon_sym_out_GT_GT] = ACTIONS(2188), + [anon_sym_e_GT_GT] = ACTIONS(2188), + [anon_sym_o_GT_GT] = ACTIONS(2188), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2188), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2188), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2188), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1111)] = { + [aux_sym__repeat_newline] = STATE(1008), + [sym_comment] = STATE(1111), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1112)] = { + [sym__expr_parenthesized_immediate] = STATE(5171), + [sym_comment] = STATE(1112), + [ts_builtin_sym_end] = ACTIONS(2178), + [anon_sym_in] = ACTIONS(2178), + [sym__newline] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_err_GT_PIPE] = ACTIONS(2178), + [anon_sym_out_GT_PIPE] = ACTIONS(2178), + [anon_sym_e_GT_PIPE] = ACTIONS(2178), + [anon_sym_o_GT_PIPE] = ACTIONS(2178), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2178), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2178), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2178), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2178), + [anon_sym_GT2] = ACTIONS(2180), + [anon_sym_DASH2] = ACTIONS(2178), + [anon_sym_STAR2] = ACTIONS(2180), + [anon_sym_and2] = ACTIONS(2178), + [anon_sym_xor2] = ACTIONS(2178), + [anon_sym_or2] = ACTIONS(2178), + [anon_sym_not_DASHin2] = ACTIONS(2178), + [anon_sym_has2] = ACTIONS(2178), + [anon_sym_not_DASHhas2] = ACTIONS(2178), + [anon_sym_starts_DASHwith2] = ACTIONS(2178), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2178), + [anon_sym_ends_DASHwith2] = ACTIONS(2178), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2178), + [anon_sym_EQ_EQ2] = ACTIONS(2178), + [anon_sym_BANG_EQ2] = ACTIONS(2178), + [anon_sym_LT2] = ACTIONS(2180), + [anon_sym_LT_EQ2] = ACTIONS(2178), + [anon_sym_GT_EQ2] = ACTIONS(2178), + [anon_sym_EQ_TILDE2] = ACTIONS(2178), + [anon_sym_BANG_TILDE2] = ACTIONS(2178), + [anon_sym_like2] = ACTIONS(2178), + [anon_sym_not_DASHlike2] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2178), + [anon_sym_PLUS_PLUS2] = ACTIONS(2178), + [anon_sym_SLASH2] = ACTIONS(2180), + [anon_sym_mod2] = ACTIONS(2178), + [anon_sym_SLASH_SLASH2] = ACTIONS(2178), + [anon_sym_PLUS2] = ACTIONS(2180), + [anon_sym_bit_DASHshl2] = ACTIONS(2178), + [anon_sym_bit_DASHshr2] = ACTIONS(2178), + [anon_sym_bit_DASHand2] = ACTIONS(2178), + [anon_sym_bit_DASHxor2] = ACTIONS(2178), + [anon_sym_bit_DASHor2] = ACTIONS(2178), + [anon_sym_err_GT] = ACTIONS(2180), + [anon_sym_out_GT] = ACTIONS(2180), + [anon_sym_e_GT] = ACTIONS(2180), + [anon_sym_o_GT] = ACTIONS(2180), + [anon_sym_err_PLUSout_GT] = ACTIONS(2180), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2180), + [anon_sym_o_PLUSe_GT] = ACTIONS(2180), + [anon_sym_e_PLUSo_GT] = ACTIONS(2180), + [anon_sym_err_GT_GT] = ACTIONS(2178), + [anon_sym_out_GT_GT] = ACTIONS(2178), + [anon_sym_e_GT_GT] = ACTIONS(2178), + [anon_sym_o_GT_GT] = ACTIONS(2178), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2178), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2178), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2178), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2178), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1113)] = { + [aux_sym__repeat_newline] = STATE(1010), + [sym_comment] = STATE(1113), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1114)] = { + [sym_comment] = STATE(1114), + [anon_sym_export] = ACTIONS(2766), + [anon_sym_alias] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_mut] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [aux_sym_cmd_identifier_token1] = ACTIONS(2766), + [anon_sym_def] = ACTIONS(2768), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_export_DASHenv] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_loop] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_else] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_catch] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_in] = ACTIONS(2766), + [anon_sym_true] = ACTIONS(2768), + [anon_sym_false] = ACTIONS(2768), + [anon_sym_null] = ACTIONS(2768), + [aux_sym_cmd_identifier_token3] = ACTIONS(2768), + [aux_sym_cmd_identifier_token4] = ACTIONS(2768), + [aux_sym_cmd_identifier_token5] = ACTIONS(2768), + [sym__newline] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2766), + [anon_sym_DASH2] = ACTIONS(2766), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_DOT_DOT] = ACTIONS(2766), + [anon_sym_where] = ACTIONS(2768), + [aux_sym_expr_unary_token1] = ACTIONS(2768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2768), + [anon_sym_DOT_DOT_LT] = ACTIONS(2768), + [aux_sym__val_number_decimal_token1] = ACTIONS(2766), + [aux_sym__val_number_decimal_token2] = ACTIONS(2768), + [aux_sym__val_number_decimal_token3] = ACTIONS(2768), + [aux_sym__val_number_decimal_token4] = ACTIONS(2768), + [aux_sym__val_number_token1] = ACTIONS(2768), + [aux_sym__val_number_token2] = ACTIONS(2768), + [aux_sym__val_number_token3] = ACTIONS(2768), + [anon_sym_0b] = ACTIONS(2766), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_SQUOTE] = ACTIONS(2768), + [anon_sym_BQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2768), + }, + [STATE(1115)] = { + [sym_expr_unary] = STATE(2974), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_parenthesized] = STATE(2639), + [sym_val_range] = STATE(2974), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(2974), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(2665), + [sym_val_variable] = STATE(2605), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(2375), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(2705), + [sym__unquoted_with_expr] = STATE(2979), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(1115), + [anon_sym_true] = ACTIONS(2770), + [anon_sym_false] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2772), + [aux_sym_cmd_identifier_token3] = ACTIONS(2774), + [aux_sym_cmd_identifier_token4] = ACTIONS(2774), + [aux_sym_cmd_identifier_token5] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_DOLLAR] = ACTIONS(2780), [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_DOT_DOT] = ACTIONS(2784), + [aux_sym_expr_unary_token1] = ACTIONS(2786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2788), + [anon_sym_DOT_DOT_LT] = ACTIONS(2788), + [aux_sym__val_number_decimal_token1] = ACTIONS(2790), + [aux_sym__val_number_decimal_token2] = ACTIONS(2792), + [aux_sym__val_number_decimal_token3] = ACTIONS(2794), + [aux_sym__val_number_decimal_token4] = ACTIONS(2794), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), + [sym_val_date] = ACTIONS(2796), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(1110)] = { - [sym_expr_unary] = STATE(2845), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2574), - [sym_val_range] = STATE(2845), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2845), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), + [STATE(1116)] = { + [sym_expr_unary] = STATE(2980), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_parenthesized] = STATE(2588), + [sym_val_range] = STATE(2980), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(2980), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(2665), + [sym_val_variable] = STATE(2605), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(2375), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2632), - [sym__unquoted_with_expr] = STATE(2850), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(1110), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(2686), + [sym__unquoted_with_expr] = STATE(2988), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(1116), + [anon_sym_true] = ACTIONS(2770), + [anon_sym_false] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2772), + [aux_sym_cmd_identifier_token3] = ACTIONS(2774), + [aux_sym_cmd_identifier_token4] = ACTIONS(2774), + [aux_sym_cmd_identifier_token5] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_DOLLAR] = ACTIONS(2780), [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_DOT_DOT] = ACTIONS(2784), + [aux_sym_expr_unary_token1] = ACTIONS(2786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2788), + [anon_sym_DOT_DOT_LT] = ACTIONS(2788), + [aux_sym__val_number_decimal_token1] = ACTIONS(2790), + [aux_sym__val_number_decimal_token2] = ACTIONS(2792), + [aux_sym__val_number_decimal_token3] = ACTIONS(2794), + [aux_sym__val_number_decimal_token4] = ACTIONS(2794), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), + [sym_val_date] = ACTIONS(2796), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(1111)] = { - [sym_expr_unary] = STATE(2851), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2520), - [sym_val_range] = STATE(2851), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2851), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), + [STATE(1117)] = { + [sym_expr_unary] = STATE(2955), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_parenthesized] = STATE(2581), + [sym_val_range] = STATE(2955), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(2955), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(2665), + [sym_val_variable] = STATE(2605), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(2375), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2593), - [sym__unquoted_with_expr] = STATE(2853), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(1111), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(2649), + [sym__unquoted_with_expr] = STATE(2907), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(1117), + [anon_sym_true] = ACTIONS(2770), + [anon_sym_false] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2772), + [aux_sym_cmd_identifier_token3] = ACTIONS(2774), + [aux_sym_cmd_identifier_token4] = ACTIONS(2774), + [aux_sym_cmd_identifier_token5] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_DOLLAR] = ACTIONS(2780), [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_DOT_DOT] = ACTIONS(2784), + [aux_sym_expr_unary_token1] = ACTIONS(2786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2788), + [anon_sym_DOT_DOT_LT] = ACTIONS(2788), + [aux_sym__val_number_decimal_token1] = ACTIONS(2790), + [aux_sym__val_number_decimal_token2] = ACTIONS(2792), + [aux_sym__val_number_decimal_token3] = ACTIONS(2794), + [aux_sym__val_number_decimal_token4] = ACTIONS(2794), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), + [sym_val_date] = ACTIONS(2796), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(1112)] = { - [sym_comment] = STATE(1112), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1113)] = { - [sym_comment] = STATE(1113), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1114)] = { - [sym_comment] = STATE(1114), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1115)] = { - [aux_sym__repeat_newline] = STATE(1007), - [sym_comment] = STATE(1115), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1116)] = { - [aux_sym__repeat_newline] = STATE(1009), - [sym_comment] = STATE(1116), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1117)] = { - [sym_comment] = STATE(1117), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [sym__newline] = ACTIONS(2493), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_err_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_GT_PIPE] = ACTIONS(2493), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2491), - [anon_sym_where] = ACTIONS(2493), - [aux_sym_expr_unary_token1] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2493), - [anon_sym_DOT_DOT_LT] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2491), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2491), - [anon_sym_0x] = ACTIONS(2491), - [sym_val_date] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_BQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_CARET] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2493), - }, [STATE(1118)] = { + [aux_sym__repeat_newline] = STATE(1012), [sym_comment] = STATE(1118), - [anon_sym_export] = ACTIONS(2776), - [anon_sym_alias] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2778), - [anon_sym_mut] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [aux_sym_cmd_identifier_token1] = ACTIONS(2776), - [anon_sym_def] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2778), - [anon_sym_export_DASHenv] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym_module] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_loop] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_catch] = ACTIONS(2778), - [anon_sym_match] = ACTIONS(2778), - [anon_sym_in] = ACTIONS(2776), - [anon_sym_true] = ACTIONS(2778), - [anon_sym_false] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2778), - [aux_sym_cmd_identifier_token3] = ACTIONS(2778), - [aux_sym_cmd_identifier_token4] = ACTIONS(2778), - [aux_sym_cmd_identifier_token5] = ACTIONS(2778), - [sym__newline] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2776), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(2776), - [anon_sym_where] = ACTIONS(2778), - [aux_sym_expr_unary_token1] = ACTIONS(2778), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2778), - [anon_sym_DOT_DOT_LT] = ACTIONS(2778), - [aux_sym__val_number_decimal_token1] = ACTIONS(2776), - [aux_sym__val_number_decimal_token2] = ACTIONS(2778), - [aux_sym__val_number_decimal_token3] = ACTIONS(2778), - [aux_sym__val_number_decimal_token4] = ACTIONS(2778), - [aux_sym__val_number_token1] = ACTIONS(2778), - [aux_sym__val_number_token2] = ACTIONS(2778), - [aux_sym__val_number_token3] = ACTIONS(2778), - [anon_sym_0b] = ACTIONS(2776), - [anon_sym_0o] = ACTIONS(2776), - [anon_sym_0x] = ACTIONS(2776), - [sym_val_date] = ACTIONS(2778), - [anon_sym_DQUOTE] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_BQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2778), - [anon_sym_CARET] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2778), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1119)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(1119), - [ts_builtin_sym_end] = ACTIONS(2144), - [anon_sym_in] = ACTIONS(2144), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2146), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_has2] = ACTIONS(2144), - [anon_sym_not_DASHhas2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2146), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_like2] = ACTIONS(2144), - [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2146), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2555), + [anon_sym_in] = ACTIONS(2527), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_RPAREN] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2527), + [anon_sym_xor2] = ACTIONS(2527), + [anon_sym_or2] = ACTIONS(2527), + [anon_sym_not_DASHin2] = ACTIONS(2527), + [anon_sym_has2] = ACTIONS(2527), + [anon_sym_not_DASHhas2] = ACTIONS(2527), + [anon_sym_starts_DASHwith2] = ACTIONS(2527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2527), + [anon_sym_ends_DASHwith2] = ACTIONS(2527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2527), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2527), + [anon_sym_like2] = ACTIONS(2527), + [anon_sym_not_DASHlike2] = ACTIONS(2527), + [anon_sym_STAR_STAR2] = ACTIONS(2527), + [anon_sym_PLUS_PLUS2] = ACTIONS(2527), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2527), + [anon_sym_SLASH_SLASH2] = ACTIONS(2527), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2527), + [anon_sym_bit_DASHshr2] = ACTIONS(2527), + [anon_sym_bit_DASHand2] = ACTIONS(2527), + [anon_sym_bit_DASHxor2] = ACTIONS(2527), + [anon_sym_bit_DASHor2] = ACTIONS(2527), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1120)] = { - [aux_sym__repeat_newline] = STATE(1011), [sym_comment] = STATE(1120), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2555), + [anon_sym_in] = ACTIONS(2650), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2650), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2650), + [anon_sym_xor2] = ACTIONS(2650), + [anon_sym_or2] = ACTIONS(2650), + [anon_sym_not_DASHin2] = ACTIONS(2650), + [anon_sym_has2] = ACTIONS(2650), + [anon_sym_not_DASHhas2] = ACTIONS(2650), + [anon_sym_starts_DASHwith2] = ACTIONS(2650), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2650), + [anon_sym_ends_DASHwith2] = ACTIONS(2650), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2650), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2650), + [anon_sym_like2] = ACTIONS(2650), + [anon_sym_not_DASHlike2] = ACTIONS(2650), + [anon_sym_STAR_STAR2] = ACTIONS(2650), + [anon_sym_PLUS_PLUS2] = ACTIONS(2650), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2650), + [anon_sym_SLASH_SLASH2] = ACTIONS(2650), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2650), + [anon_sym_bit_DASHshr2] = ACTIONS(2650), + [anon_sym_bit_DASHand2] = ACTIONS(2650), + [anon_sym_bit_DASHxor2] = ACTIONS(2650), + [anon_sym_bit_DASHor2] = ACTIONS(2650), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1121)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), [sym_comment] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2555), + [anon_sym_in] = ACTIONS(866), + [sym__newline] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(886), + [anon_sym_err_GT_PIPE] = ACTIONS(886), + [anon_sym_out_GT_PIPE] = ACTIONS(886), + [anon_sym_e_GT_PIPE] = ACTIONS(886), + [anon_sym_o_GT_PIPE] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(886), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(886), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(886), + [anon_sym_BANG_EQ2] = ACTIONS(886), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(886), + [anon_sym_GT_EQ2] = ACTIONS(886), + [anon_sym_EQ_TILDE2] = ACTIONS(886), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(886), + [anon_sym_out_GT_GT] = ACTIONS(886), + [anon_sym_e_GT_GT] = ACTIONS(886), + [anon_sym_o_GT_GT] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1122)] = { + [aux_sym__repeat_newline] = STATE(1014), [sym_comment] = STATE(1122), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2780), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1123)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), [sym_comment] = STATE(1123), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2515), + [anon_sym_alias] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_mut] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [aux_sym_cmd_identifier_token1] = ACTIONS(2515), + [anon_sym_def] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_export_DASHenv] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_loop] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_catch] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_in] = ACTIONS(2515), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2517), + [aux_sym_cmd_identifier_token3] = ACTIONS(2517), + [aux_sym_cmd_identifier_token4] = ACTIONS(2517), + [aux_sym_cmd_identifier_token5] = ACTIONS(2517), + [sym__newline] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(2517), + [anon_sym_err_GT_PIPE] = ACTIONS(2517), + [anon_sym_out_GT_PIPE] = ACTIONS(2517), + [anon_sym_e_GT_PIPE] = ACTIONS(2517), + [anon_sym_o_GT_PIPE] = ACTIONS(2517), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2517), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2517), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2517), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_DOLLAR] = ACTIONS(2515), + [anon_sym_DASH2] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_DOT_DOT] = ACTIONS(2515), + [anon_sym_where] = ACTIONS(2517), + [aux_sym_expr_unary_token1] = ACTIONS(2517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2515), + [aux_sym__val_number_decimal_token2] = ACTIONS(2517), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(2517), + [aux_sym__val_number_token2] = ACTIONS(2517), + [aux_sym__val_number_token3] = ACTIONS(2517), + [anon_sym_0b] = ACTIONS(2515), + [anon_sym_0o] = ACTIONS(2515), + [anon_sym_0x] = ACTIONS(2515), + [sym_val_date] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2517), + [anon_sym_BQUOTE] = ACTIONS(2517), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_CARET] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2517), }, [STATE(1124)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(1124), - [ts_builtin_sym_end] = ACTIONS(2148), - [anon_sym_in] = ACTIONS(2148), - [sym__newline] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_err_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_GT_PIPE] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), - [anon_sym_GT2] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_STAR2] = ACTIONS(2150), - [anon_sym_and2] = ACTIONS(2148), - [anon_sym_xor2] = ACTIONS(2148), - [anon_sym_or2] = ACTIONS(2148), - [anon_sym_not_DASHin2] = ACTIONS(2148), - [anon_sym_has2] = ACTIONS(2148), - [anon_sym_not_DASHhas2] = ACTIONS(2148), - [anon_sym_starts_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2148), - [anon_sym_ends_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2148), - [anon_sym_EQ_EQ2] = ACTIONS(2148), - [anon_sym_BANG_EQ2] = ACTIONS(2148), - [anon_sym_LT2] = ACTIONS(2150), - [anon_sym_LT_EQ2] = ACTIONS(2148), - [anon_sym_GT_EQ2] = ACTIONS(2148), - [anon_sym_EQ_TILDE2] = ACTIONS(2148), - [anon_sym_BANG_TILDE2] = ACTIONS(2148), - [anon_sym_like2] = ACTIONS(2148), - [anon_sym_not_DASHlike2] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2148), - [anon_sym_PLUS_PLUS2] = ACTIONS(2148), - [anon_sym_SLASH2] = ACTIONS(2150), - [anon_sym_mod2] = ACTIONS(2148), - [anon_sym_SLASH_SLASH2] = ACTIONS(2148), - [anon_sym_PLUS2] = ACTIONS(2150), - [anon_sym_bit_DASHshl2] = ACTIONS(2148), - [anon_sym_bit_DASHshr2] = ACTIONS(2148), - [anon_sym_bit_DASHand2] = ACTIONS(2148), - [anon_sym_bit_DASHxor2] = ACTIONS(2148), - [anon_sym_bit_DASHor2] = ACTIONS(2148), - [anon_sym_err_GT] = ACTIONS(2150), - [anon_sym_out_GT] = ACTIONS(2150), - [anon_sym_e_GT] = ACTIONS(2150), - [anon_sym_o_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT] = ACTIONS(2150), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2798), + [anon_sym_alias] = ACTIONS(2800), + [anon_sym_let] = ACTIONS(2800), + [anon_sym_mut] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [aux_sym_cmd_identifier_token1] = ACTIONS(2798), + [anon_sym_def] = ACTIONS(2800), + [anon_sym_use] = ACTIONS(2800), + [anon_sym_export_DASHenv] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym_module] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_loop] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_else] = ACTIONS(2800), + [anon_sym_try] = ACTIONS(2800), + [anon_sym_catch] = ACTIONS(2800), + [anon_sym_match] = ACTIONS(2800), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_true] = ACTIONS(2800), + [anon_sym_false] = ACTIONS(2800), + [anon_sym_null] = ACTIONS(2800), + [aux_sym_cmd_identifier_token3] = ACTIONS(2800), + [aux_sym_cmd_identifier_token4] = ACTIONS(2800), + [aux_sym_cmd_identifier_token5] = ACTIONS(2800), + [sym__newline] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_err_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_GT_PIPE] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2800), + [anon_sym_DOLLAR] = ACTIONS(2798), + [anon_sym_DASH2] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2800), + [anon_sym_DOT_DOT] = ACTIONS(2798), + [anon_sym_where] = ACTIONS(2800), + [aux_sym_expr_unary_token1] = ACTIONS(2800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2800), + [anon_sym_DOT_DOT_LT] = ACTIONS(2800), + [aux_sym__val_number_decimal_token1] = ACTIONS(2798), + [aux_sym__val_number_decimal_token2] = ACTIONS(2800), + [aux_sym__val_number_decimal_token3] = ACTIONS(2800), + [aux_sym__val_number_decimal_token4] = ACTIONS(2800), + [aux_sym__val_number_token1] = ACTIONS(2800), + [aux_sym__val_number_token2] = ACTIONS(2800), + [aux_sym__val_number_token3] = ACTIONS(2800), + [anon_sym_0b] = ACTIONS(2798), + [anon_sym_0o] = ACTIONS(2798), + [anon_sym_0x] = ACTIONS(2798), + [sym_val_date] = ACTIONS(2800), + [anon_sym_DQUOTE] = ACTIONS(2800), + [anon_sym_SQUOTE] = ACTIONS(2800), + [anon_sym_BQUOTE] = ACTIONS(2800), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2800), + [anon_sym_CARET] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2800), }, [STATE(1125)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), + [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(1125), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3958), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1126)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(1126), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1127)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), [sym_comment] = STATE(1127), + [ts_builtin_sym_end] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [anon_sym_DOT] = ACTIONS(2802), + [aux_sym__immediate_decimal_token5] = ACTIONS(1910), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1128)] = { + [sym__expr_parenthesized_immediate] = STATE(4884), + [sym_comment] = STATE(1128), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1129)] = { + [sym__expr_parenthesized_immediate] = STATE(4884), + [sym_comment] = STATE(1129), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1130)] = { + [sym__expression] = STATE(4818), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2253), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_comment] = STATE(1130), + [aux_sym_cmd_identifier_token2] = ACTIONS(2682), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_COLON2] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(1131)] = { + [sym_expr_unary] = STATE(2903), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_parenthesized] = STATE(2503), + [sym_val_range] = STATE(2903), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(2903), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2613), + [sym_val_variable] = STATE(2549), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(2356), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(2591), + [sym__unquoted_with_expr] = STATE(2889), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(1131), + [anon_sym_true] = ACTIONS(2686), + [anon_sym_false] = ACTIONS(2686), + [anon_sym_null] = ACTIONS(2688), + [aux_sym_cmd_identifier_token3] = ACTIONS(2690), + [aux_sym_cmd_identifier_token4] = ACTIONS(2690), + [aux_sym_cmd_identifier_token5] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_DOLLAR] = ACTIONS(2696), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_DOT_DOT] = ACTIONS(2700), + [aux_sym_expr_unary_token1] = ACTIONS(2702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), + [anon_sym_DOT_DOT_LT] = ACTIONS(2704), + [aux_sym__val_number_decimal_token1] = ACTIONS(2706), + [aux_sym__val_number_decimal_token2] = ACTIONS(2708), + [aux_sym__val_number_decimal_token3] = ACTIONS(2710), + [aux_sym__val_number_decimal_token4] = ACTIONS(2710), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(1132)] = { + [sym_comment] = STATE(1132), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_alias] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_mut] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [aux_sym_cmd_identifier_token1] = ACTIONS(2148), + [anon_sym_def] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_export_DASHenv] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_in] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [anon_sym_null] = ACTIONS(2146), + [aux_sym_cmd_identifier_token3] = ACTIONS(2146), + [aux_sym_cmd_identifier_token4] = ACTIONS(2146), + [aux_sym_cmd_identifier_token5] = ACTIONS(2146), + [sym__newline] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_err_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_GT_PIPE] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2146), + [anon_sym_DOLLAR] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_DOT_DOT] = ACTIONS(2148), + [anon_sym_where] = ACTIONS(2146), + [aux_sym_expr_unary_token1] = ACTIONS(2146), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2146), + [anon_sym_DOT_DOT_LT] = ACTIONS(2146), + [aux_sym__val_number_decimal_token1] = ACTIONS(2148), + [aux_sym__val_number_decimal_token2] = ACTIONS(2146), + [aux_sym__val_number_decimal_token3] = ACTIONS(2146), + [aux_sym__val_number_decimal_token4] = ACTIONS(2146), + [aux_sym__val_number_token1] = ACTIONS(2146), + [aux_sym__val_number_token2] = ACTIONS(2146), + [aux_sym__val_number_token3] = ACTIONS(2146), + [anon_sym_0b] = ACTIONS(2148), + [anon_sym_0o] = ACTIONS(2148), + [anon_sym_0x] = ACTIONS(2148), + [sym_val_date] = ACTIONS(2146), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2146), + [anon_sym_BQUOTE] = ACTIONS(2146), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2146), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2146), + [anon_sym_CARET] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2146), + }, + [STATE(1133)] = { + [sym_expr_unary] = STATE(2829), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_parenthesized] = STATE(2536), + [sym_val_range] = STATE(2829), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(2829), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(2613), + [sym_val_variable] = STATE(2549), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(2356), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(2616), + [sym__unquoted_with_expr] = STATE(2857), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(1133), + [anon_sym_true] = ACTIONS(2686), + [anon_sym_false] = ACTIONS(2686), + [anon_sym_null] = ACTIONS(2688), + [aux_sym_cmd_identifier_token3] = ACTIONS(2690), + [aux_sym_cmd_identifier_token4] = ACTIONS(2690), + [aux_sym_cmd_identifier_token5] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_DOLLAR] = ACTIONS(2696), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_DOT_DOT] = ACTIONS(2700), + [aux_sym_expr_unary_token1] = ACTIONS(2702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), + [anon_sym_DOT_DOT_LT] = ACTIONS(2704), + [aux_sym__val_number_decimal_token1] = ACTIONS(2706), + [aux_sym__val_number_decimal_token2] = ACTIONS(2708), + [aux_sym__val_number_decimal_token3] = ACTIONS(2710), + [aux_sym__val_number_decimal_token4] = ACTIONS(2710), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(1134)] = { + [aux_sym__repeat_newline] = STATE(4207), + [sym__match_pattern_expression] = STATE(4432), + [sym__match_pattern_value] = STATE(4736), + [sym__match_pattern_list_body] = STATE(4697), + [sym__match_pattern_list] = STATE(4737), + [sym__match_pattern_rest] = STATE(5356), + [sym__match_pattern_record] = STATE(4742), + [sym_expr_parenthesized] = STATE(4040), + [sym_val_range] = STATE(4736), + [sym__val_range] = STATE(5140), + [sym_val_nothing] = STATE(4742), + [sym_val_bool] = STATE(4490), + [sym_val_variable] = STATE(4041), + [sym_val_number] = STATE(4742), + [sym__val_number_decimal] = STATE(3727), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4742), + [sym_val_filesize] = STATE(4742), + [sym_val_binary] = STATE(4742), + [sym_val_string] = STATE(4742), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_list] = STATE(5146), + [sym__table_head] = STATE(3824), + [sym_val_table] = STATE(4742), + [sym__unquoted_in_list] = STATE(4432), + [sym__unquoted_anonymous_prefix] = STATE(5140), + [sym_comment] = STATE(1134), + [aux_sym__types_body_repeat1] = STATE(1402), + [aux_sym_parameter_repeat2] = STATE(4158), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1433), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_RBRACK] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(2680), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(1135)] = { + [sym__expr_parenthesized_immediate] = STATE(4884), + [sym_comment] = STATE(1135), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1136)] = { + [sym__expr_parenthesized_immediate] = STATE(4884), + [sym_comment] = STATE(1136), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1137)] = { + [aux_sym__repeat_newline] = STATE(1356), + [sym__expression_parenthesized] = STATE(4497), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2160), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_comment] = STATE(1137), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(2714), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(1138)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1138), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1139)] = { + [aux_sym__repeat_newline] = STATE(1178), + [sym_comment] = STATE(1139), + [anon_sym_in] = ACTIONS(2720), + [sym__newline] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_err_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2720), + [anon_sym_has2] = ACTIONS(2720), + [anon_sym_not_DASHhas2] = ACTIONS(2720), + [anon_sym_starts_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), + [anon_sym_ends_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2720), + [anon_sym_BANG_TILDE2] = ACTIONS(2720), + [anon_sym_like2] = ACTIONS(2720), + [anon_sym_not_DASHlike2] = ACTIONS(2720), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2720), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1140)] = { + [sym_comment] = STATE(1140), + [anon_sym_in] = ACTIONS(2551), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2553), + [anon_sym_DASH2] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2823), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2551), + [anon_sym_has2] = ACTIONS(2551), + [anon_sym_not_DASHhas2] = ACTIONS(2551), + [anon_sym_starts_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), + [anon_sym_ends_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), + [anon_sym_EQ_EQ2] = ACTIONS(2551), + [anon_sym_BANG_EQ2] = ACTIONS(2551), + [anon_sym_LT2] = ACTIONS(2553), + [anon_sym_LT_EQ2] = ACTIONS(2551), + [anon_sym_GT_EQ2] = ACTIONS(2551), + [anon_sym_EQ_TILDE2] = ACTIONS(2551), + [anon_sym_BANG_TILDE2] = ACTIONS(2551), + [anon_sym_like2] = ACTIONS(2551), + [anon_sym_not_DASHlike2] = ACTIONS(2551), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2553), + [anon_sym_bit_DASHshl2] = ACTIONS(2551), + [anon_sym_bit_DASHshr2] = ACTIONS(2551), + [anon_sym_bit_DASHand2] = ACTIONS(2551), + [anon_sym_bit_DASHxor2] = ACTIONS(2551), + [anon_sym_bit_DASHor2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1141)] = { + [sym__expression] = STATE(4818), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2253), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_comment] = STATE(1141), + [aux_sym_cmd_identifier_token2] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(1142)] = { + [sym__expression] = STATE(4841), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2253), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_comment] = STATE(1142), + [aux_sym_cmd_identifier_token2] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(1143)] = { + [sym_comment] = STATE(1143), + [ts_builtin_sym_end] = ACTIONS(2648), + [aux_sym_cmd_identifier_token2] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(2650), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2650), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2650), + [anon_sym_xor2] = ACTIONS(2650), + [anon_sym_or2] = ACTIONS(2650), + [anon_sym_not_DASHin2] = ACTIONS(2650), + [anon_sym_has2] = ACTIONS(2650), + [anon_sym_not_DASHhas2] = ACTIONS(2650), + [anon_sym_starts_DASHwith2] = ACTIONS(2650), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2650), + [anon_sym_ends_DASHwith2] = ACTIONS(2650), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2650), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2650), + [anon_sym_like2] = ACTIONS(2650), + [anon_sym_not_DASHlike2] = ACTIONS(2650), + [anon_sym_STAR_STAR2] = ACTIONS(2650), + [anon_sym_PLUS_PLUS2] = ACTIONS(2650), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2650), + [anon_sym_SLASH_SLASH2] = ACTIONS(2650), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2650), + [anon_sym_bit_DASHshr2] = ACTIONS(2650), + [anon_sym_bit_DASHand2] = ACTIONS(2650), + [anon_sym_bit_DASHxor2] = ACTIONS(2650), + [anon_sym_bit_DASHor2] = ACTIONS(2650), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1144)] = { + [sym_comment] = STATE(1144), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1713), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_COLON2] = ACTIONS(1715), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1145)] = { + [aux_sym__repeat_newline] = STATE(1201), + [sym_comment] = STATE(1145), + [anon_sym_in] = ACTIONS(2730), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2732), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2730), + [anon_sym_has2] = ACTIONS(2730), + [anon_sym_not_DASHhas2] = ACTIONS(2730), + [anon_sym_starts_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), + [anon_sym_ends_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), + [anon_sym_EQ_EQ2] = ACTIONS(2730), + [anon_sym_BANG_EQ2] = ACTIONS(2730), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ2] = ACTIONS(2730), + [anon_sym_GT_EQ2] = ACTIONS(2730), + [anon_sym_EQ_TILDE2] = ACTIONS(2730), + [anon_sym_BANG_TILDE2] = ACTIONS(2730), + [anon_sym_like2] = ACTIONS(2730), + [anon_sym_not_DASHlike2] = ACTIONS(2730), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2730), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1146)] = { + [sym_comment] = STATE(1146), + [anon_sym_in] = ACTIONS(2551), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2553), + [anon_sym_DASH2] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2553), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2551), + [anon_sym_has2] = ACTIONS(2551), + [anon_sym_not_DASHhas2] = ACTIONS(2551), + [anon_sym_starts_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), + [anon_sym_ends_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), + [anon_sym_EQ_EQ2] = ACTIONS(2551), + [anon_sym_BANG_EQ2] = ACTIONS(2551), + [anon_sym_LT2] = ACTIONS(2553), + [anon_sym_LT_EQ2] = ACTIONS(2551), + [anon_sym_GT_EQ2] = ACTIONS(2551), + [anon_sym_EQ_TILDE2] = ACTIONS(2551), + [anon_sym_BANG_TILDE2] = ACTIONS(2551), + [anon_sym_like2] = ACTIONS(2551), + [anon_sym_not_DASHlike2] = ACTIONS(2551), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2553), + [anon_sym_mod2] = ACTIONS(2551), + [anon_sym_SLASH_SLASH2] = ACTIONS(2551), + [anon_sym_PLUS2] = ACTIONS(2553), + [anon_sym_bit_DASHshl2] = ACTIONS(2551), + [anon_sym_bit_DASHshr2] = ACTIONS(2551), + [anon_sym_bit_DASHand2] = ACTIONS(2551), + [anon_sym_bit_DASHxor2] = ACTIONS(2551), + [anon_sym_bit_DASHor2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1147)] = { + [sym_comment] = STATE(1147), [ts_builtin_sym_end] = ACTIONS(2088), [anon_sym_in] = ACTIONS(2088), [sym__newline] = ACTIONS(2088), @@ -130093,7 +132133,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2088), [anon_sym_like2] = ACTIONS(2088), [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), [anon_sym_STAR_STAR2] = ACTIONS(2088), [anon_sym_PLUS_PLUS2] = ACTIONS(2088), [anon_sym_SLASH2] = ACTIONS(2090), @@ -130105,6 +132144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2088), [anon_sym_bit_DASHxor2] = ACTIONS(2088), [anon_sym_bit_DASHor2] = ACTIONS(2088), + [anon_sym_LBRACK2] = ACTIONS(2834), [anon_sym_err_GT] = ACTIONS(2090), [anon_sym_out_GT] = ACTIONS(2090), [anon_sym_e_GT] = ACTIONS(2090), @@ -130123,5441 +132163,3294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1128)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), - [sym_comment] = STATE(1128), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1129)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4355), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1129), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(1130)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1130), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1131)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1131), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1132)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1132), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1133)] = { - [sym_comment] = STATE(1133), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1134)] = { - [aux_sym__repeat_newline] = STATE(1198), - [sym_comment] = STATE(1134), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1135)] = { - [aux_sym__repeat_newline] = STATE(1190), - [sym_comment] = STATE(1135), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1136)] = { - [sym_comment] = STATE(1136), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2864), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1137)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1137), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1138)] = { - [sym_comment] = STATE(1138), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2864), - [anon_sym_xor2] = ACTIONS(2866), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1139)] = { - [aux_sym__repeat_newline] = STATE(1200), - [sym_comment] = STATE(1139), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1140)] = { - [sym_comment] = STATE(1140), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1141)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1141), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1142)] = { - [sym_comment] = STATE(1142), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1143)] = { - [aux_sym__repeat_newline] = STATE(1131), - [sym_comment] = STATE(1143), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1144)] = { - [sym_comment] = STATE(1144), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1145)] = { - [sym_comment] = STATE(1145), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1146)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1146), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2732), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2734), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1147)] = { - [sym_comment] = STATE(1147), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1148)] = { - [aux_sym__repeat_newline] = STATE(1204), + [aux_sym__repeat_newline] = STATE(1203), [sym_comment] = STATE(1148), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2730), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2730), - [anon_sym_mod2] = ACTIONS(2728), - [anon_sym_SLASH_SLASH2] = ACTIONS(2728), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2730), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2732), + [anon_sym_DASH2] = ACTIONS(2730), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2730), + [anon_sym_has2] = ACTIONS(2730), + [anon_sym_not_DASHhas2] = ACTIONS(2730), + [anon_sym_starts_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), + [anon_sym_ends_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), + [anon_sym_EQ_EQ2] = ACTIONS(2730), + [anon_sym_BANG_EQ2] = ACTIONS(2730), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ2] = ACTIONS(2730), + [anon_sym_GT_EQ2] = ACTIONS(2730), + [anon_sym_EQ_TILDE2] = ACTIONS(2730), + [anon_sym_BANG_TILDE2] = ACTIONS(2730), + [anon_sym_like2] = ACTIONS(2730), + [anon_sym_not_DASHlike2] = ACTIONS(2730), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2732), + [anon_sym_bit_DASHshl2] = ACTIONS(2730), + [anon_sym_bit_DASHshr2] = ACTIONS(2730), + [anon_sym_bit_DASHand2] = ACTIONS(2730), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1149)] = { - [sym__ctrl_match_body] = STATE(4904), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), [sym_comment] = STATE(1149), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2823), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2836), + [anon_sym_has2] = ACTIONS(2836), + [anon_sym_not_DASHhas2] = ACTIONS(2836), + [anon_sym_starts_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), + [anon_sym_ends_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2844), + [anon_sym_BANG_TILDE2] = ACTIONS(2844), + [anon_sym_like2] = ACTIONS(2844), + [anon_sym_not_DASHlike2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2850), + [anon_sym_bit_DASHxor2] = ACTIONS(2852), + [anon_sym_bit_DASHor2] = ACTIONS(2854), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1150)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1150), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2732), - [anon_sym_STAR2] = ACTIONS(2734), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2734), - [anon_sym_mod2] = ACTIONS(2732), - [anon_sym_SLASH_SLASH2] = ACTIONS(2732), - [anon_sym_PLUS2] = ACTIONS(2734), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2823), + [anon_sym_and2] = ACTIONS(2856), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2836), + [anon_sym_has2] = ACTIONS(2836), + [anon_sym_not_DASHhas2] = ACTIONS(2836), + [anon_sym_starts_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), + [anon_sym_ends_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2844), + [anon_sym_BANG_TILDE2] = ACTIONS(2844), + [anon_sym_like2] = ACTIONS(2844), + [anon_sym_not_DASHlike2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2850), + [anon_sym_bit_DASHxor2] = ACTIONS(2852), + [anon_sym_bit_DASHor2] = ACTIONS(2854), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1151)] = { - [sym__ctrl_match_body] = STATE(4907), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), + [aux_sym__repeat_newline] = STATE(1206), [sym_comment] = STATE(1151), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2730), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2732), + [anon_sym_DASH2] = ACTIONS(2730), + [anon_sym_STAR2] = ACTIONS(2732), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2730), + [anon_sym_has2] = ACTIONS(2730), + [anon_sym_not_DASHhas2] = ACTIONS(2730), + [anon_sym_starts_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), + [anon_sym_ends_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), + [anon_sym_EQ_EQ2] = ACTIONS(2730), + [anon_sym_BANG_EQ2] = ACTIONS(2730), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ2] = ACTIONS(2730), + [anon_sym_GT_EQ2] = ACTIONS(2730), + [anon_sym_EQ_TILDE2] = ACTIONS(2730), + [anon_sym_BANG_TILDE2] = ACTIONS(2730), + [anon_sym_like2] = ACTIONS(2730), + [anon_sym_not_DASHlike2] = ACTIONS(2730), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2732), + [anon_sym_mod2] = ACTIONS(2730), + [anon_sym_SLASH_SLASH2] = ACTIONS(2730), + [anon_sym_PLUS2] = ACTIONS(2732), + [anon_sym_bit_DASHshl2] = ACTIONS(2730), + [anon_sym_bit_DASHshr2] = ACTIONS(2730), + [anon_sym_bit_DASHand2] = ACTIONS(2730), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1152)] = { - [aux_sym__repeat_newline] = STATE(1206), [sym_comment] = STATE(1152), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2823), + [anon_sym_and2] = ACTIONS(2856), + [anon_sym_xor2] = ACTIONS(2858), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2836), + [anon_sym_has2] = ACTIONS(2836), + [anon_sym_not_DASHhas2] = ACTIONS(2836), + [anon_sym_starts_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), + [anon_sym_ends_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2844), + [anon_sym_BANG_TILDE2] = ACTIONS(2844), + [anon_sym_like2] = ACTIONS(2844), + [anon_sym_not_DASHlike2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2850), + [anon_sym_bit_DASHxor2] = ACTIONS(2852), + [anon_sym_bit_DASHor2] = ACTIONS(2854), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1153)] = { [sym_comment] = STATE(1153), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2823), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2836), + [anon_sym_has2] = ACTIONS(2836), + [anon_sym_not_DASHhas2] = ACTIONS(2836), + [anon_sym_starts_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), + [anon_sym_ends_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2551), + [anon_sym_BANG_TILDE2] = ACTIONS(2551), + [anon_sym_like2] = ACTIONS(2551), + [anon_sym_not_DASHlike2] = ACTIONS(2551), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2551), + [anon_sym_bit_DASHxor2] = ACTIONS(2551), + [anon_sym_bit_DASHor2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1154)] = { - [aux_sym__repeat_newline] = STATE(1150), [sym_comment] = STATE(1154), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2714), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2714), - [anon_sym_mod2] = ACTIONS(2712), - [anon_sym_SLASH_SLASH2] = ACTIONS(2712), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2551), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2553), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2823), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2551), + [anon_sym_has2] = ACTIONS(2551), + [anon_sym_not_DASHhas2] = ACTIONS(2551), + [anon_sym_starts_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), + [anon_sym_ends_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), + [anon_sym_EQ_EQ2] = ACTIONS(2551), + [anon_sym_BANG_EQ2] = ACTIONS(2551), + [anon_sym_LT2] = ACTIONS(2553), + [anon_sym_LT_EQ2] = ACTIONS(2551), + [anon_sym_GT_EQ2] = ACTIONS(2551), + [anon_sym_EQ_TILDE2] = ACTIONS(2551), + [anon_sym_BANG_TILDE2] = ACTIONS(2551), + [anon_sym_like2] = ACTIONS(2551), + [anon_sym_not_DASHlike2] = ACTIONS(2551), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2551), + [anon_sym_bit_DASHshr2] = ACTIONS(2551), + [anon_sym_bit_DASHand2] = ACTIONS(2551), + [anon_sym_bit_DASHxor2] = ACTIONS(2551), + [anon_sym_bit_DASHor2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1155)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1155), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2823), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2836), + [anon_sym_has2] = ACTIONS(2836), + [anon_sym_not_DASHhas2] = ACTIONS(2836), + [anon_sym_starts_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), + [anon_sym_ends_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2844), + [anon_sym_BANG_TILDE2] = ACTIONS(2844), + [anon_sym_like2] = ACTIONS(2844), + [anon_sym_not_DASHlike2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2551), + [anon_sym_bit_DASHxor2] = ACTIONS(2551), + [anon_sym_bit_DASHor2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1156)] = { - [aux_sym__repeat_newline] = STATE(1213), [sym_comment] = STATE(1156), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2823), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2836), + [anon_sym_has2] = ACTIONS(2836), + [anon_sym_not_DASHhas2] = ACTIONS(2836), + [anon_sym_starts_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), + [anon_sym_ends_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2844), + [anon_sym_BANG_TILDE2] = ACTIONS(2844), + [anon_sym_like2] = ACTIONS(2844), + [anon_sym_not_DASHlike2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2850), + [anon_sym_bit_DASHxor2] = ACTIONS(2551), + [anon_sym_bit_DASHor2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1157)] = { - [aux_sym__repeat_newline] = STATE(1208), [sym_comment] = STATE(1157), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2823), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2836), + [anon_sym_has2] = ACTIONS(2836), + [anon_sym_not_DASHhas2] = ACTIONS(2836), + [anon_sym_starts_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), + [anon_sym_ends_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2844), + [anon_sym_BANG_TILDE2] = ACTIONS(2844), + [anon_sym_like2] = ACTIONS(2844), + [anon_sym_not_DASHlike2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2850), + [anon_sym_bit_DASHxor2] = ACTIONS(2852), + [anon_sym_bit_DASHor2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1158)] = { - [aux_sym__repeat_newline] = STATE(1214), [sym_comment] = STATE(1158), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2298), + [sym__newline] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_err_GT_PIPE] = ACTIONS(2298), + [anon_sym_out_GT_PIPE] = ACTIONS(2298), + [anon_sym_e_GT_PIPE] = ACTIONS(2298), + [anon_sym_o_GT_PIPE] = ACTIONS(2298), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), + [anon_sym_RPAREN] = ACTIONS(2298), + [anon_sym_GT2] = ACTIONS(2300), + [anon_sym_DASH2] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_STAR2] = ACTIONS(2300), + [anon_sym_and2] = ACTIONS(2298), + [anon_sym_xor2] = ACTIONS(2298), + [anon_sym_or2] = ACTIONS(2298), + [anon_sym_not_DASHin2] = ACTIONS(2298), + [anon_sym_has2] = ACTIONS(2298), + [anon_sym_not_DASHhas2] = ACTIONS(2298), + [anon_sym_starts_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2298), + [anon_sym_ends_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2298), + [anon_sym_EQ_EQ2] = ACTIONS(2298), + [anon_sym_BANG_EQ2] = ACTIONS(2298), + [anon_sym_LT2] = ACTIONS(2300), + [anon_sym_LT_EQ2] = ACTIONS(2298), + [anon_sym_GT_EQ2] = ACTIONS(2298), + [anon_sym_EQ_TILDE2] = ACTIONS(2298), + [anon_sym_BANG_TILDE2] = ACTIONS(2298), + [anon_sym_like2] = ACTIONS(2298), + [anon_sym_not_DASHlike2] = ACTIONS(2298), + [anon_sym_STAR_STAR2] = ACTIONS(2298), + [anon_sym_PLUS_PLUS2] = ACTIONS(2298), + [anon_sym_SLASH2] = ACTIONS(2300), + [anon_sym_mod2] = ACTIONS(2298), + [anon_sym_SLASH_SLASH2] = ACTIONS(2298), + [anon_sym_PLUS2] = ACTIONS(2300), + [anon_sym_bit_DASHshl2] = ACTIONS(2298), + [anon_sym_bit_DASHshr2] = ACTIONS(2298), + [anon_sym_bit_DASHand2] = ACTIONS(2298), + [anon_sym_bit_DASHxor2] = ACTIONS(2298), + [anon_sym_bit_DASHor2] = ACTIONS(2298), + [anon_sym_err_GT] = ACTIONS(2300), + [anon_sym_out_GT] = ACTIONS(2300), + [anon_sym_e_GT] = ACTIONS(2300), + [anon_sym_o_GT] = ACTIONS(2300), + [anon_sym_err_PLUSout_GT] = ACTIONS(2300), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2300), + [anon_sym_o_PLUSe_GT] = ACTIONS(2300), + [anon_sym_e_PLUSo_GT] = ACTIONS(2300), + [anon_sym_err_GT_GT] = ACTIONS(2298), + [anon_sym_out_GT_GT] = ACTIONS(2298), + [anon_sym_e_GT_GT] = ACTIONS(2298), + [anon_sym_o_GT_GT] = ACTIONS(2298), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1159)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1169), [sym_comment] = STATE(1159), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2754), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2754), + [anon_sym_has2] = ACTIONS(2754), + [anon_sym_not_DASHhas2] = ACTIONS(2754), + [anon_sym_starts_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), + [anon_sym_ends_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2754), + [anon_sym_BANG_TILDE2] = ACTIONS(2754), + [anon_sym_like2] = ACTIONS(2754), + [anon_sym_not_DASHlike2] = ACTIONS(2754), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2754), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1160)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__ctrl_match_body] = STATE(5375), + [sym_match_arm] = STATE(4682), + [sym_default_arm] = STATE(4682), + [sym_match_pattern] = STATE(5194), + [sym__match_pattern] = STATE(4028), + [sym__match_pattern_expression] = STATE(4471), + [sym__match_pattern_value] = STATE(4475), + [sym__match_pattern_list] = STATE(4483), + [sym__match_pattern_record] = STATE(4489), + [sym_expr_parenthesized] = STATE(3865), + [sym_val_range] = STATE(4475), + [sym__val_range] = STATE(5176), + [sym_val_nothing] = STATE(4489), + [sym_val_bool] = STATE(4169), + [sym_val_variable] = STATE(3808), + [sym_val_number] = STATE(4489), + [sym__val_number_decimal] = STATE(3636), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(4489), + [sym_val_filesize] = STATE(4489), + [sym_val_binary] = STATE(4489), + [sym_val_string] = STATE(4489), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_table] = STATE(4489), + [sym_unquoted] = STATE(4503), + [sym__unquoted_anonymous_prefix] = STATE(5176), [sym_comment] = STATE(1160), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [aux_sym__types_body_repeat1] = STATE(1355), + [aux_sym__ctrl_match_body_repeat1] = STATE(1368), + [anon_sym_true] = ACTIONS(2863), + [anon_sym_false] = ACTIONS(2863), + [anon_sym_null] = ACTIONS(2865), + [aux_sym_cmd_identifier_token3] = ACTIONS(2867), + [aux_sym_cmd_identifier_token4] = ACTIONS(2867), + [aux_sym_cmd_identifier_token5] = ACTIONS(2867), + [sym__newline] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_DOLLAR] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym__] = ACTIONS(2879), + [anon_sym_DOT_DOT] = ACTIONS(2881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2883), + [anon_sym_DOT_DOT_LT] = ACTIONS(2883), + [aux_sym__val_number_decimal_token1] = ACTIONS(2885), + [aux_sym__val_number_decimal_token2] = ACTIONS(2887), + [aux_sym__val_number_decimal_token3] = ACTIONS(2889), + [aux_sym__val_number_decimal_token4] = ACTIONS(2889), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2891), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(1161)] = { - [aux_sym__repeat_newline] = STATE(1155), + [sym__ctrl_match_body] = STATE(5138), + [sym_match_arm] = STATE(4682), + [sym_default_arm] = STATE(4682), + [sym_match_pattern] = STATE(5194), + [sym__match_pattern] = STATE(4028), + [sym__match_pattern_expression] = STATE(4471), + [sym__match_pattern_value] = STATE(4475), + [sym__match_pattern_list] = STATE(4483), + [sym__match_pattern_record] = STATE(4489), + [sym_expr_parenthesized] = STATE(3865), + [sym_val_range] = STATE(4475), + [sym__val_range] = STATE(5176), + [sym_val_nothing] = STATE(4489), + [sym_val_bool] = STATE(4169), + [sym_val_variable] = STATE(3808), + [sym_val_number] = STATE(4489), + [sym__val_number_decimal] = STATE(3636), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(4489), + [sym_val_filesize] = STATE(4489), + [sym_val_binary] = STATE(4489), + [sym_val_string] = STATE(4489), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_table] = STATE(4489), + [sym_unquoted] = STATE(4503), + [sym__unquoted_anonymous_prefix] = STATE(5176), [sym_comment] = STATE(1161), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [aux_sym__types_body_repeat1] = STATE(1355), + [aux_sym__ctrl_match_body_repeat1] = STATE(1368), + [anon_sym_true] = ACTIONS(2863), + [anon_sym_false] = ACTIONS(2863), + [anon_sym_null] = ACTIONS(2865), + [aux_sym_cmd_identifier_token3] = ACTIONS(2867), + [aux_sym_cmd_identifier_token4] = ACTIONS(2867), + [aux_sym_cmd_identifier_token5] = ACTIONS(2867), + [sym__newline] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_DOLLAR] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym__] = ACTIONS(2879), + [anon_sym_DOT_DOT] = ACTIONS(2881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2883), + [anon_sym_DOT_DOT_LT] = ACTIONS(2883), + [aux_sym__val_number_decimal_token1] = ACTIONS(2885), + [aux_sym__val_number_decimal_token2] = ACTIONS(2887), + [aux_sym__val_number_decimal_token3] = ACTIONS(2889), + [aux_sym__val_number_decimal_token4] = ACTIONS(2889), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2891), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(1162)] = { - [aux_sym__repeat_newline] = STATE(1210), + [aux_sym__repeat_newline] = STATE(1208), [sym_comment] = STATE(1162), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1163)] = { + [aux_sym__repeat_newline] = STATE(1210), [sym_comment] = STATE(1163), - [ts_builtin_sym_end] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1164)] = { - [aux_sym__repeat_newline] = STATE(1160), + [aux_sym__repeat_newline] = STATE(1212), [sym_comment] = STATE(1164), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2909), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1165)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1175), [sym_comment] = STATE(1165), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2754), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2756), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2754), + [anon_sym_has2] = ACTIONS(2754), + [anon_sym_not_DASHhas2] = ACTIONS(2754), + [anon_sym_starts_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), + [anon_sym_ends_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), + [anon_sym_EQ_EQ2] = ACTIONS(2754), + [anon_sym_BANG_EQ2] = ACTIONS(2754), + [anon_sym_LT2] = ACTIONS(2756), + [anon_sym_LT_EQ2] = ACTIONS(2754), + [anon_sym_GT_EQ2] = ACTIONS(2754), + [anon_sym_EQ_TILDE2] = ACTIONS(2754), + [anon_sym_BANG_TILDE2] = ACTIONS(2754), + [anon_sym_like2] = ACTIONS(2754), + [anon_sym_not_DASHlike2] = ACTIONS(2754), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2754), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1166)] = { + [aux_sym__repeat_newline] = STATE(1214), [sym_comment] = STATE(1166), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_err_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_GT_PIPE] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_err_GT] = ACTIONS(2278), - [anon_sym_out_GT] = ACTIONS(2278), - [anon_sym_e_GT] = ACTIONS(2278), - [anon_sym_o_GT] = ACTIONS(2278), - [anon_sym_err_PLUSout_GT] = ACTIONS(2278), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), - [anon_sym_o_PLUSe_GT] = ACTIONS(2278), - [anon_sym_e_PLUSo_GT] = ACTIONS(2278), - [anon_sym_err_GT_GT] = ACTIONS(2276), - [anon_sym_out_GT_GT] = ACTIONS(2276), - [anon_sym_e_GT_GT] = ACTIONS(2276), - [anon_sym_o_GT_GT] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2730), + [anon_sym_BANG_TILDE2] = ACTIONS(2730), + [anon_sym_like2] = ACTIONS(2730), + [anon_sym_not_DASHlike2] = ACTIONS(2730), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2730), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1167)] = { - [aux_sym__repeat_newline] = STATE(1212), [sym_comment] = STATE(1167), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(886), + [aux_sym_cmd_identifier_token2] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(866), + [sym__newline] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(886), + [anon_sym_err_GT_PIPE] = ACTIONS(886), + [anon_sym_out_GT_PIPE] = ACTIONS(886), + [anon_sym_e_GT_PIPE] = ACTIONS(886), + [anon_sym_o_GT_PIPE] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(886), + [anon_sym_BANG_EQ2] = ACTIONS(886), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(886), + [anon_sym_GT_EQ2] = ACTIONS(886), + [anon_sym_EQ_TILDE2] = ACTIONS(886), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(886), + [anon_sym_out_GT_GT] = ACTIONS(886), + [anon_sym_e_GT_GT] = ACTIONS(886), + [anon_sym_o_GT_GT] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1168)] = { - [aux_sym__repeat_newline] = STATE(1219), + [aux_sym__repeat_newline] = STATE(1220), [sym_comment] = STATE(1168), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2704), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2704), - [anon_sym_mod2] = ACTIONS(2702), - [anon_sym_SLASH_SLASH2] = ACTIONS(2702), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2730), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2732), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2730), + [anon_sym_has2] = ACTIONS(2730), + [anon_sym_not_DASHhas2] = ACTIONS(2730), + [anon_sym_starts_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), + [anon_sym_ends_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), + [anon_sym_EQ_EQ2] = ACTIONS(2730), + [anon_sym_BANG_EQ2] = ACTIONS(2730), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ2] = ACTIONS(2730), + [anon_sym_GT_EQ2] = ACTIONS(2730), + [anon_sym_EQ_TILDE2] = ACTIONS(2730), + [anon_sym_BANG_TILDE2] = ACTIONS(2730), + [anon_sym_like2] = ACTIONS(2730), + [anon_sym_not_DASHlike2] = ACTIONS(2730), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2730), + [anon_sym_bit_DASHshr2] = ACTIONS(2730), + [anon_sym_bit_DASHand2] = ACTIONS(2730), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1169)] = { + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1169), - [ts_builtin_sym_end] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(2128), - [sym__newline] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_err_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_GT_PIPE] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), - [anon_sym_GT2] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_STAR2] = ACTIONS(2130), - [anon_sym_and2] = ACTIONS(2128), - [anon_sym_xor2] = ACTIONS(2128), - [anon_sym_or2] = ACTIONS(2128), - [anon_sym_not_DASHin2] = ACTIONS(2128), - [anon_sym_has2] = ACTIONS(2128), - [anon_sym_not_DASHhas2] = ACTIONS(2128), - [anon_sym_starts_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2128), - [anon_sym_ends_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2128), - [anon_sym_EQ_EQ2] = ACTIONS(2128), - [anon_sym_BANG_EQ2] = ACTIONS(2128), - [anon_sym_LT2] = ACTIONS(2130), - [anon_sym_LT_EQ2] = ACTIONS(2128), - [anon_sym_GT_EQ2] = ACTIONS(2128), - [anon_sym_EQ_TILDE2] = ACTIONS(2128), - [anon_sym_BANG_TILDE2] = ACTIONS(2128), - [anon_sym_like2] = ACTIONS(2128), - [anon_sym_not_DASHlike2] = ACTIONS(2128), - [anon_sym_STAR_STAR2] = ACTIONS(2128), - [anon_sym_PLUS_PLUS2] = ACTIONS(2128), - [anon_sym_SLASH2] = ACTIONS(2130), - [anon_sym_mod2] = ACTIONS(2128), - [anon_sym_SLASH_SLASH2] = ACTIONS(2128), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_bit_DASHshl2] = ACTIONS(2128), - [anon_sym_bit_DASHshr2] = ACTIONS(2128), - [anon_sym_bit_DASHand2] = ACTIONS(2128), - [anon_sym_bit_DASHxor2] = ACTIONS(2128), - [anon_sym_bit_DASHor2] = ACTIONS(2128), - [anon_sym_LBRACK2] = ACTIONS(2920), - [anon_sym_err_GT] = ACTIONS(2130), - [anon_sym_out_GT] = ACTIONS(2130), - [anon_sym_e_GT] = ACTIONS(2130), - [anon_sym_o_GT] = ACTIONS(2130), - [anon_sym_err_PLUSout_GT] = ACTIONS(2130), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), - [anon_sym_o_PLUSe_GT] = ACTIONS(2130), - [anon_sym_e_PLUSo_GT] = ACTIONS(2130), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1170)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1222), [sym_comment] = STATE(1170), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2730), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1171)] = { - [aux_sym__repeat_newline] = STATE(1165), + [aux_sym__repeat_newline] = STATE(1179), [sym_comment] = STATE(1171), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2720), + [sym__newline] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_err_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2722), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2720), + [anon_sym_has2] = ACTIONS(2720), + [anon_sym_not_DASHhas2] = ACTIONS(2720), + [anon_sym_starts_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), + [anon_sym_ends_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), + [anon_sym_EQ_EQ2] = ACTIONS(2720), + [anon_sym_BANG_EQ2] = ACTIONS(2720), + [anon_sym_LT2] = ACTIONS(2722), + [anon_sym_LT_EQ2] = ACTIONS(2720), + [anon_sym_GT_EQ2] = ACTIONS(2720), + [anon_sym_EQ_TILDE2] = ACTIONS(2720), + [anon_sym_BANG_TILDE2] = ACTIONS(2720), + [anon_sym_like2] = ACTIONS(2720), + [anon_sym_not_DASHlike2] = ACTIONS(2720), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2720), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1172)] = { + [aux_sym__repeat_newline] = STATE(1224), [sym_comment] = STATE(1172), - [ts_builtin_sym_end] = ACTIONS(2635), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1173)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1184), [sym_comment] = STATE(1173), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2708), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2708), - [anon_sym_mod2] = ACTIONS(2706), - [anon_sym_SLASH_SLASH2] = ACTIONS(2706), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2754), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2756), + [anon_sym_DASH2] = ACTIONS(2754), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2754), + [anon_sym_has2] = ACTIONS(2754), + [anon_sym_not_DASHhas2] = ACTIONS(2754), + [anon_sym_starts_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), + [anon_sym_ends_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), + [anon_sym_EQ_EQ2] = ACTIONS(2754), + [anon_sym_BANG_EQ2] = ACTIONS(2754), + [anon_sym_LT2] = ACTIONS(2756), + [anon_sym_LT_EQ2] = ACTIONS(2754), + [anon_sym_GT_EQ2] = ACTIONS(2754), + [anon_sym_EQ_TILDE2] = ACTIONS(2754), + [anon_sym_BANG_TILDE2] = ACTIONS(2754), + [anon_sym_like2] = ACTIONS(2754), + [anon_sym_not_DASHlike2] = ACTIONS(2754), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2756), + [anon_sym_bit_DASHshl2] = ACTIONS(2754), + [anon_sym_bit_DASHshr2] = ACTIONS(2754), + [anon_sym_bit_DASHand2] = ACTIONS(2754), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1174)] = { - [aux_sym__repeat_newline] = STATE(1170), + [aux_sym__repeat_newline] = STATE(1228), [sym_comment] = STATE(1174), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1175)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1175), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1176)] = { - [aux_sym__repeat_newline] = STATE(1243), [sym_comment] = STATE(1176), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2298), + [sym__newline] = ACTIONS(2306), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_err_GT_PIPE] = ACTIONS(2309), + [anon_sym_out_GT_PIPE] = ACTIONS(2309), + [anon_sym_e_GT_PIPE] = ACTIONS(2309), + [anon_sym_o_GT_PIPE] = ACTIONS(2309), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), + [anon_sym_RPAREN] = ACTIONS(2309), + [anon_sym_GT2] = ACTIONS(2300), + [anon_sym_DASH2] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_STAR2] = ACTIONS(2300), + [anon_sym_and2] = ACTIONS(2298), + [anon_sym_xor2] = ACTIONS(2298), + [anon_sym_or2] = ACTIONS(2298), + [anon_sym_not_DASHin2] = ACTIONS(2298), + [anon_sym_has2] = ACTIONS(2298), + [anon_sym_not_DASHhas2] = ACTIONS(2298), + [anon_sym_starts_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2298), + [anon_sym_ends_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2298), + [anon_sym_EQ_EQ2] = ACTIONS(2298), + [anon_sym_BANG_EQ2] = ACTIONS(2298), + [anon_sym_LT2] = ACTIONS(2300), + [anon_sym_LT_EQ2] = ACTIONS(2298), + [anon_sym_GT_EQ2] = ACTIONS(2298), + [anon_sym_EQ_TILDE2] = ACTIONS(2298), + [anon_sym_BANG_TILDE2] = ACTIONS(2298), + [anon_sym_like2] = ACTIONS(2298), + [anon_sym_not_DASHlike2] = ACTIONS(2298), + [anon_sym_STAR_STAR2] = ACTIONS(2298), + [anon_sym_PLUS_PLUS2] = ACTIONS(2298), + [anon_sym_SLASH2] = ACTIONS(2300), + [anon_sym_mod2] = ACTIONS(2298), + [anon_sym_SLASH_SLASH2] = ACTIONS(2298), + [anon_sym_PLUS2] = ACTIONS(2300), + [anon_sym_bit_DASHshl2] = ACTIONS(2298), + [anon_sym_bit_DASHshr2] = ACTIONS(2298), + [anon_sym_bit_DASHand2] = ACTIONS(2298), + [anon_sym_bit_DASHxor2] = ACTIONS(2298), + [anon_sym_bit_DASHor2] = ACTIONS(2298), + [anon_sym_err_GT] = ACTIONS(2311), + [anon_sym_out_GT] = ACTIONS(2311), + [anon_sym_e_GT] = ACTIONS(2311), + [anon_sym_o_GT] = ACTIONS(2311), + [anon_sym_err_PLUSout_GT] = ACTIONS(2311), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), + [anon_sym_o_PLUSe_GT] = ACTIONS(2311), + [anon_sym_e_PLUSo_GT] = ACTIONS(2311), + [anon_sym_err_GT_GT] = ACTIONS(2309), + [anon_sym_out_GT_GT] = ACTIONS(2309), + [anon_sym_e_GT_GT] = ACTIONS(2309), + [anon_sym_o_GT_GT] = ACTIONS(2309), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1177)] = { - [aux_sym__repeat_newline] = STATE(1216), + [aux_sym__repeat_newline] = STATE(1215), [sym_comment] = STATE(1177), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2754), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2756), + [anon_sym_DASH2] = ACTIONS(2754), + [anon_sym_STAR2] = ACTIONS(2756), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2754), + [anon_sym_has2] = ACTIONS(2754), + [anon_sym_not_DASHhas2] = ACTIONS(2754), + [anon_sym_starts_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), + [anon_sym_ends_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), + [anon_sym_EQ_EQ2] = ACTIONS(2754), + [anon_sym_BANG_EQ2] = ACTIONS(2754), + [anon_sym_LT2] = ACTIONS(2756), + [anon_sym_LT_EQ2] = ACTIONS(2754), + [anon_sym_GT_EQ2] = ACTIONS(2754), + [anon_sym_EQ_TILDE2] = ACTIONS(2754), + [anon_sym_BANG_TILDE2] = ACTIONS(2754), + [anon_sym_like2] = ACTIONS(2754), + [anon_sym_not_DASHlike2] = ACTIONS(2754), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2756), + [anon_sym_mod2] = ACTIONS(2754), + [anon_sym_SLASH_SLASH2] = ACTIONS(2754), + [anon_sym_PLUS2] = ACTIONS(2756), + [anon_sym_bit_DASHshl2] = ACTIONS(2754), + [anon_sym_bit_DASHshr2] = ACTIONS(2754), + [anon_sym_bit_DASHand2] = ACTIONS(2754), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1178)] = { - [aux_sym__repeat_newline] = STATE(1238), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1178), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2738), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2738), + [anon_sym_has2] = ACTIONS(2738), + [anon_sym_not_DASHhas2] = ACTIONS(2738), + [anon_sym_starts_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), + [anon_sym_ends_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1179)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1179), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2738), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2740), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2738), + [anon_sym_has2] = ACTIONS(2738), + [anon_sym_not_DASHhas2] = ACTIONS(2738), + [anon_sym_starts_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), + [anon_sym_ends_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), + [anon_sym_EQ_EQ2] = ACTIONS(2738), + [anon_sym_BANG_EQ2] = ACTIONS(2738), + [anon_sym_LT2] = ACTIONS(2740), + [anon_sym_LT_EQ2] = ACTIONS(2738), + [anon_sym_GT_EQ2] = ACTIONS(2738), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1180)] = { - [aux_sym__repeat_newline] = STATE(1224), + [aux_sym__repeat_newline] = STATE(1181), [sym_comment] = STATE(1180), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2720), + [sym__newline] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_err_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2722), + [anon_sym_DASH2] = ACTIONS(2720), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2720), + [anon_sym_has2] = ACTIONS(2720), + [anon_sym_not_DASHhas2] = ACTIONS(2720), + [anon_sym_starts_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), + [anon_sym_ends_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), + [anon_sym_EQ_EQ2] = ACTIONS(2720), + [anon_sym_BANG_EQ2] = ACTIONS(2720), + [anon_sym_LT2] = ACTIONS(2722), + [anon_sym_LT_EQ2] = ACTIONS(2720), + [anon_sym_GT_EQ2] = ACTIONS(2720), + [anon_sym_EQ_TILDE2] = ACTIONS(2720), + [anon_sym_BANG_TILDE2] = ACTIONS(2720), + [anon_sym_like2] = ACTIONS(2720), + [anon_sym_not_DASHlike2] = ACTIONS(2720), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2722), + [anon_sym_bit_DASHshl2] = ACTIONS(2720), + [anon_sym_bit_DASHshr2] = ACTIONS(2720), + [anon_sym_bit_DASHand2] = ACTIONS(2720), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1181)] = { - [aux_sym__repeat_newline] = STATE(1218), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1181), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2738), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2740), + [anon_sym_DASH2] = ACTIONS(2738), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2738), + [anon_sym_has2] = ACTIONS(2738), + [anon_sym_not_DASHhas2] = ACTIONS(2738), + [anon_sym_starts_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), + [anon_sym_ends_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), + [anon_sym_EQ_EQ2] = ACTIONS(2738), + [anon_sym_BANG_EQ2] = ACTIONS(2738), + [anon_sym_LT2] = ACTIONS(2740), + [anon_sym_LT_EQ2] = ACTIONS(2738), + [anon_sym_GT_EQ2] = ACTIONS(2738), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2740), + [anon_sym_bit_DASHshl2] = ACTIONS(2738), + [anon_sym_bit_DASHshr2] = ACTIONS(2738), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1182)] = { - [aux_sym__repeat_newline] = STATE(1244), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1182), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2738), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2740), + [anon_sym_DASH2] = ACTIONS(2738), + [anon_sym_STAR2] = ACTIONS(2740), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2738), + [anon_sym_has2] = ACTIONS(2738), + [anon_sym_not_DASHhas2] = ACTIONS(2738), + [anon_sym_starts_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), + [anon_sym_ends_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), + [anon_sym_EQ_EQ2] = ACTIONS(2738), + [anon_sym_BANG_EQ2] = ACTIONS(2738), + [anon_sym_LT2] = ACTIONS(2740), + [anon_sym_LT_EQ2] = ACTIONS(2738), + [anon_sym_GT_EQ2] = ACTIONS(2738), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2740), + [anon_sym_mod2] = ACTIONS(2738), + [anon_sym_SLASH_SLASH2] = ACTIONS(2738), + [anon_sym_PLUS2] = ACTIONS(2740), + [anon_sym_bit_DASHshl2] = ACTIONS(2738), + [anon_sym_bit_DASHshr2] = ACTIONS(2738), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1183)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1183), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1184)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1184), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1185)] = { - [aux_sym__repeat_newline] = STATE(1179), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1185), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2937), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1186)] = { - [aux_sym__repeat_newline] = STATE(1227), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1186), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2937), + [anon_sym_xor2] = ACTIONS(2939), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1187)] = { - [aux_sym__repeat_newline] = STATE(1209), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1187), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1188)] = { - [aux_sym__repeat_newline] = STATE(1246), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1188), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2738), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2740), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2738), + [anon_sym_has2] = ACTIONS(2738), + [anon_sym_not_DASHhas2] = ACTIONS(2738), + [anon_sym_starts_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), + [anon_sym_ends_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), + [anon_sym_EQ_EQ2] = ACTIONS(2738), + [anon_sym_BANG_EQ2] = ACTIONS(2738), + [anon_sym_LT2] = ACTIONS(2740), + [anon_sym_LT_EQ2] = ACTIONS(2738), + [anon_sym_GT_EQ2] = ACTIONS(2738), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2738), + [anon_sym_bit_DASHshr2] = ACTIONS(2738), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1189)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1189), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1190)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1190), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1191)] = { - [aux_sym__repeat_newline] = STATE(1229), [sym_comment] = STATE(1191), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2682), + [anon_sym_in] = ACTIONS(2527), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2527), + [anon_sym_xor2] = ACTIONS(2527), + [anon_sym_or2] = ACTIONS(2527), + [anon_sym_not_DASHin2] = ACTIONS(2527), + [anon_sym_has2] = ACTIONS(2527), + [anon_sym_not_DASHhas2] = ACTIONS(2527), + [anon_sym_starts_DASHwith2] = ACTIONS(2527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2527), + [anon_sym_ends_DASHwith2] = ACTIONS(2527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2527), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2527), + [anon_sym_like2] = ACTIONS(2527), + [anon_sym_not_DASHlike2] = ACTIONS(2527), + [anon_sym_STAR_STAR2] = ACTIONS(2527), + [anon_sym_PLUS_PLUS2] = ACTIONS(2527), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2527), + [anon_sym_SLASH_SLASH2] = ACTIONS(2527), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2527), + [anon_sym_bit_DASHshr2] = ACTIONS(2527), + [anon_sym_bit_DASHand2] = ACTIONS(2527), + [anon_sym_bit_DASHxor2] = ACTIONS(2527), + [anon_sym_bit_DASHor2] = ACTIONS(2527), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1192)] = { - [aux_sym__repeat_newline] = STATE(1184), [sym_comment] = STATE(1192), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2682), + [anon_sym_in] = ACTIONS(2650), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2650), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2650), + [anon_sym_xor2] = ACTIONS(2650), + [anon_sym_or2] = ACTIONS(2650), + [anon_sym_not_DASHin2] = ACTIONS(2650), + [anon_sym_has2] = ACTIONS(2650), + [anon_sym_not_DASHhas2] = ACTIONS(2650), + [anon_sym_starts_DASHwith2] = ACTIONS(2650), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2650), + [anon_sym_ends_DASHwith2] = ACTIONS(2650), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2650), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2650), + [anon_sym_like2] = ACTIONS(2650), + [anon_sym_not_DASHlike2] = ACTIONS(2650), + [anon_sym_STAR_STAR2] = ACTIONS(2650), + [anon_sym_PLUS_PLUS2] = ACTIONS(2650), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2650), + [anon_sym_SLASH_SLASH2] = ACTIONS(2650), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2650), + [anon_sym_bit_DASHshr2] = ACTIONS(2650), + [anon_sym_bit_DASHand2] = ACTIONS(2650), + [anon_sym_bit_DASHxor2] = ACTIONS(2650), + [anon_sym_bit_DASHor2] = ACTIONS(2650), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1193)] = { - [aux_sym__repeat_newline] = STATE(1215), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1193), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1194)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1231), [sym_comment] = STATE(1194), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2746), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2746), + [anon_sym_has2] = ACTIONS(2746), + [anon_sym_not_DASHhas2] = ACTIONS(2746), + [anon_sym_starts_DASHwith2] = ACTIONS(2746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2746), + [anon_sym_ends_DASHwith2] = ACTIONS(2746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2746), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2746), + [anon_sym_BANG_TILDE2] = ACTIONS(2746), + [anon_sym_like2] = ACTIONS(2746), + [anon_sym_not_DASHlike2] = ACTIONS(2746), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2746), + [anon_sym_bit_DASHxor2] = ACTIONS(2746), + [anon_sym_bit_DASHor2] = ACTIONS(2746), + [anon_sym_err_GT] = ACTIONS(2748), + [anon_sym_out_GT] = ACTIONS(2748), + [anon_sym_e_GT] = ACTIONS(2748), + [anon_sym_o_GT] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT] = ACTIONS(2748), + [anon_sym_err_GT_GT] = ACTIONS(2746), + [anon_sym_out_GT_GT] = ACTIONS(2746), + [anon_sym_e_GT_GT] = ACTIONS(2746), + [anon_sym_o_GT_GT] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1195)] = { - [aux_sym__repeat_newline] = STATE(1189), + [aux_sym__repeat_newline] = STATE(1219), [sym_comment] = STATE(1195), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1196)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1230), [sym_comment] = STATE(1196), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1197)] = { - [aux_sym__repeat_newline] = STATE(1228), + [aux_sym__repeat_newline] = STATE(1182), [sym_comment] = STATE(1197), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1198)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1198), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1199)] = { - [aux_sym__repeat_newline] = STATE(1194), - [sym_comment] = STATE(1199), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1200)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1200), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1201)] = { - [aux_sym__repeat_newline] = STATE(1248), - [sym_comment] = STATE(1201), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1202)] = { - [sym_comment] = STATE(1202), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_err_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_GT_PIPE] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2287), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_err_GT] = ACTIONS(2289), - [anon_sym_out_GT] = ACTIONS(2289), - [anon_sym_e_GT] = ACTIONS(2289), - [anon_sym_o_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT] = ACTIONS(2289), - [anon_sym_err_GT_GT] = ACTIONS(2287), - [anon_sym_out_GT_GT] = ACTIONS(2287), - [anon_sym_e_GT_GT] = ACTIONS(2287), - [anon_sym_o_GT_GT] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1203)] = { - [sym_comment] = STATE(1203), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2535), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2535), - [anon_sym_mod2] = ACTIONS(2533), - [anon_sym_SLASH_SLASH2] = ACTIONS(2533), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1204)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1204), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2742), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2742), - [anon_sym_mod2] = ACTIONS(2740), - [anon_sym_SLASH_SLASH2] = ACTIONS(2740), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1205)] = { - [sym_comment] = STATE(1205), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1206)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1206), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1207)] = { - [sym_comment] = STATE(1207), - [ts_builtin_sym_end] = ACTIONS(968), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1208)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1208), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1209)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1209), [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), + [sym__newline] = ACTIONS(2804), [anon_sym_SEMI] = ACTIONS(2720), [anon_sym_PIPE] = ACTIONS(2720), [anon_sym_err_GT_PIPE] = ACTIONS(2720), @@ -135569,9 +135462,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2722), + [anon_sym_DASH2] = ACTIONS(2720), + [anon_sym_STAR2] = ACTIONS(2722), [anon_sym_and2] = ACTIONS(2720), [anon_sym_xor2] = ACTIONS(2720), [anon_sym_or2] = ACTIONS(2720), @@ -135582,23 +135475,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), [anon_sym_ends_DASHwith2] = ACTIONS(2720), [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), + [anon_sym_EQ_EQ2] = ACTIONS(2720), + [anon_sym_BANG_EQ2] = ACTIONS(2720), + [anon_sym_LT2] = ACTIONS(2722), + [anon_sym_LT_EQ2] = ACTIONS(2720), + [anon_sym_GT_EQ2] = ACTIONS(2720), [anon_sym_EQ_TILDE2] = ACTIONS(2720), [anon_sym_BANG_TILDE2] = ACTIONS(2720), [anon_sym_like2] = ACTIONS(2720), [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2722), + [anon_sym_mod2] = ACTIONS(2720), + [anon_sym_SLASH_SLASH2] = ACTIONS(2720), + [anon_sym_PLUS2] = ACTIONS(2722), + [anon_sym_bit_DASHshl2] = ACTIONS(2720), + [anon_sym_bit_DASHshr2] = ACTIONS(2720), [anon_sym_bit_DASHand2] = ACTIONS(2720), [anon_sym_bit_DASHxor2] = ACTIONS(2720), [anon_sym_bit_DASHor2] = ACTIONS(2720), @@ -135620,614 +135513,1284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1198)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1198), + [anon_sym_in] = ACTIONS(2750), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2750), + [anon_sym_has2] = ACTIONS(2750), + [anon_sym_not_DASHhas2] = ACTIONS(2750), + [anon_sym_starts_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), + [anon_sym_ends_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2750), + [anon_sym_BANG_TILDE2] = ACTIONS(2750), + [anon_sym_like2] = ACTIONS(2750), + [anon_sym_not_DASHlike2] = ACTIONS(2750), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1199)] = { + [aux_sym__repeat_newline] = STATE(1232), + [sym_comment] = STATE(1199), + [anon_sym_in] = ACTIONS(2746), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_GT2] = ACTIONS(2748), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2746), + [anon_sym_has2] = ACTIONS(2746), + [anon_sym_not_DASHhas2] = ACTIONS(2746), + [anon_sym_starts_DASHwith2] = ACTIONS(2746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2746), + [anon_sym_ends_DASHwith2] = ACTIONS(2746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2746), + [anon_sym_EQ_EQ2] = ACTIONS(2746), + [anon_sym_BANG_EQ2] = ACTIONS(2746), + [anon_sym_LT2] = ACTIONS(2748), + [anon_sym_LT_EQ2] = ACTIONS(2746), + [anon_sym_GT_EQ2] = ACTIONS(2746), + [anon_sym_EQ_TILDE2] = ACTIONS(2746), + [anon_sym_BANG_TILDE2] = ACTIONS(2746), + [anon_sym_like2] = ACTIONS(2746), + [anon_sym_not_DASHlike2] = ACTIONS(2746), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2746), + [anon_sym_bit_DASHxor2] = ACTIONS(2746), + [anon_sym_bit_DASHor2] = ACTIONS(2746), + [anon_sym_err_GT] = ACTIONS(2748), + [anon_sym_out_GT] = ACTIONS(2748), + [anon_sym_e_GT] = ACTIONS(2748), + [anon_sym_o_GT] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT] = ACTIONS(2748), + [anon_sym_err_GT_GT] = ACTIONS(2746), + [anon_sym_out_GT_GT] = ACTIONS(2746), + [anon_sym_e_GT_GT] = ACTIONS(2746), + [anon_sym_o_GT_GT] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1200)] = { + [sym_comment] = STATE(1200), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_in] = ACTIONS(886), + [sym__newline] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(886), + [anon_sym_err_GT_PIPE] = ACTIONS(886), + [anon_sym_out_GT_PIPE] = ACTIONS(886), + [anon_sym_e_GT_PIPE] = ACTIONS(886), + [anon_sym_o_GT_PIPE] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(886), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(886), + [anon_sym_xor2] = ACTIONS(886), + [anon_sym_or2] = ACTIONS(886), + [anon_sym_not_DASHin2] = ACTIONS(886), + [anon_sym_has2] = ACTIONS(886), + [anon_sym_not_DASHhas2] = ACTIONS(886), + [anon_sym_starts_DASHwith2] = ACTIONS(886), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(886), + [anon_sym_ends_DASHwith2] = ACTIONS(886), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(886), + [anon_sym_EQ_EQ2] = ACTIONS(886), + [anon_sym_BANG_EQ2] = ACTIONS(886), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(886), + [anon_sym_GT_EQ2] = ACTIONS(886), + [anon_sym_EQ_TILDE2] = ACTIONS(886), + [anon_sym_BANG_TILDE2] = ACTIONS(886), + [anon_sym_like2] = ACTIONS(886), + [anon_sym_not_DASHlike2] = ACTIONS(886), + [anon_sym_STAR_STAR2] = ACTIONS(886), + [anon_sym_PLUS_PLUS2] = ACTIONS(886), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(886), + [anon_sym_SLASH_SLASH2] = ACTIONS(886), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(886), + [anon_sym_bit_DASHshr2] = ACTIONS(886), + [anon_sym_bit_DASHand2] = ACTIONS(886), + [anon_sym_bit_DASHxor2] = ACTIONS(886), + [anon_sym_bit_DASHor2] = ACTIONS(886), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(886), + [anon_sym_out_GT_GT] = ACTIONS(886), + [anon_sym_e_GT_GT] = ACTIONS(886), + [anon_sym_o_GT_GT] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), + [sym__unquoted_pattern] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1201)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1201), + [anon_sym_in] = ACTIONS(2750), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2752), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2750), + [anon_sym_has2] = ACTIONS(2750), + [anon_sym_not_DASHhas2] = ACTIONS(2750), + [anon_sym_starts_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), + [anon_sym_ends_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), + [anon_sym_EQ_EQ2] = ACTIONS(2750), + [anon_sym_BANG_EQ2] = ACTIONS(2750), + [anon_sym_LT2] = ACTIONS(2752), + [anon_sym_LT_EQ2] = ACTIONS(2750), + [anon_sym_GT_EQ2] = ACTIONS(2750), + [anon_sym_EQ_TILDE2] = ACTIONS(2750), + [anon_sym_BANG_TILDE2] = ACTIONS(2750), + [anon_sym_like2] = ACTIONS(2750), + [anon_sym_not_DASHlike2] = ACTIONS(2750), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1202)] = { + [aux_sym__repeat_newline] = STATE(1234), + [sym_comment] = STATE(1202), + [anon_sym_in] = ACTIONS(2746), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_GT2] = ACTIONS(2748), + [anon_sym_DASH2] = ACTIONS(2746), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2746), + [anon_sym_has2] = ACTIONS(2746), + [anon_sym_not_DASHhas2] = ACTIONS(2746), + [anon_sym_starts_DASHwith2] = ACTIONS(2746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2746), + [anon_sym_ends_DASHwith2] = ACTIONS(2746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2746), + [anon_sym_EQ_EQ2] = ACTIONS(2746), + [anon_sym_BANG_EQ2] = ACTIONS(2746), + [anon_sym_LT2] = ACTIONS(2748), + [anon_sym_LT_EQ2] = ACTIONS(2746), + [anon_sym_GT_EQ2] = ACTIONS(2746), + [anon_sym_EQ_TILDE2] = ACTIONS(2746), + [anon_sym_BANG_TILDE2] = ACTIONS(2746), + [anon_sym_like2] = ACTIONS(2746), + [anon_sym_not_DASHlike2] = ACTIONS(2746), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2748), + [anon_sym_bit_DASHshl2] = ACTIONS(2746), + [anon_sym_bit_DASHshr2] = ACTIONS(2746), + [anon_sym_bit_DASHand2] = ACTIONS(2746), + [anon_sym_bit_DASHxor2] = ACTIONS(2746), + [anon_sym_bit_DASHor2] = ACTIONS(2746), + [anon_sym_err_GT] = ACTIONS(2748), + [anon_sym_out_GT] = ACTIONS(2748), + [anon_sym_e_GT] = ACTIONS(2748), + [anon_sym_o_GT] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT] = ACTIONS(2748), + [anon_sym_err_GT_GT] = ACTIONS(2746), + [anon_sym_out_GT_GT] = ACTIONS(2746), + [anon_sym_e_GT_GT] = ACTIONS(2746), + [anon_sym_o_GT_GT] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1203)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1203), + [anon_sym_in] = ACTIONS(2750), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2752), + [anon_sym_DASH2] = ACTIONS(2750), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2750), + [anon_sym_has2] = ACTIONS(2750), + [anon_sym_not_DASHhas2] = ACTIONS(2750), + [anon_sym_starts_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), + [anon_sym_ends_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), + [anon_sym_EQ_EQ2] = ACTIONS(2750), + [anon_sym_BANG_EQ2] = ACTIONS(2750), + [anon_sym_LT2] = ACTIONS(2752), + [anon_sym_LT_EQ2] = ACTIONS(2750), + [anon_sym_GT_EQ2] = ACTIONS(2750), + [anon_sym_EQ_TILDE2] = ACTIONS(2750), + [anon_sym_BANG_TILDE2] = ACTIONS(2750), + [anon_sym_like2] = ACTIONS(2750), + [anon_sym_not_DASHlike2] = ACTIONS(2750), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2752), + [anon_sym_bit_DASHshl2] = ACTIONS(2750), + [anon_sym_bit_DASHshr2] = ACTIONS(2750), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1204)] = { + [aux_sym__repeat_newline] = STATE(1235), + [sym_comment] = STATE(1204), + [anon_sym_in] = ACTIONS(2746), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_GT2] = ACTIONS(2748), + [anon_sym_DASH2] = ACTIONS(2746), + [anon_sym_STAR2] = ACTIONS(2748), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2746), + [anon_sym_has2] = ACTIONS(2746), + [anon_sym_not_DASHhas2] = ACTIONS(2746), + [anon_sym_starts_DASHwith2] = ACTIONS(2746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2746), + [anon_sym_ends_DASHwith2] = ACTIONS(2746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2746), + [anon_sym_EQ_EQ2] = ACTIONS(2746), + [anon_sym_BANG_EQ2] = ACTIONS(2746), + [anon_sym_LT2] = ACTIONS(2748), + [anon_sym_LT_EQ2] = ACTIONS(2746), + [anon_sym_GT_EQ2] = ACTIONS(2746), + [anon_sym_EQ_TILDE2] = ACTIONS(2746), + [anon_sym_BANG_TILDE2] = ACTIONS(2746), + [anon_sym_like2] = ACTIONS(2746), + [anon_sym_not_DASHlike2] = ACTIONS(2746), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2748), + [anon_sym_mod2] = ACTIONS(2746), + [anon_sym_SLASH_SLASH2] = ACTIONS(2746), + [anon_sym_PLUS2] = ACTIONS(2748), + [anon_sym_bit_DASHshl2] = ACTIONS(2746), + [anon_sym_bit_DASHshr2] = ACTIONS(2746), + [anon_sym_bit_DASHand2] = ACTIONS(2746), + [anon_sym_bit_DASHxor2] = ACTIONS(2746), + [anon_sym_bit_DASHor2] = ACTIONS(2746), + [anon_sym_err_GT] = ACTIONS(2748), + [anon_sym_out_GT] = ACTIONS(2748), + [anon_sym_e_GT] = ACTIONS(2748), + [anon_sym_o_GT] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT] = ACTIONS(2748), + [anon_sym_err_GT_GT] = ACTIONS(2746), + [anon_sym_out_GT_GT] = ACTIONS(2746), + [anon_sym_e_GT_GT] = ACTIONS(2746), + [anon_sym_o_GT_GT] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1205)] = { + [aux_sym__repeat_newline] = STATE(1237), + [sym_comment] = STATE(1205), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2909), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1206)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1206), + [anon_sym_in] = ACTIONS(2750), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2752), + [anon_sym_DASH2] = ACTIONS(2750), + [anon_sym_STAR2] = ACTIONS(2752), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2750), + [anon_sym_has2] = ACTIONS(2750), + [anon_sym_not_DASHhas2] = ACTIONS(2750), + [anon_sym_starts_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), + [anon_sym_ends_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), + [anon_sym_EQ_EQ2] = ACTIONS(2750), + [anon_sym_BANG_EQ2] = ACTIONS(2750), + [anon_sym_LT2] = ACTIONS(2752), + [anon_sym_LT_EQ2] = ACTIONS(2750), + [anon_sym_GT_EQ2] = ACTIONS(2750), + [anon_sym_EQ_TILDE2] = ACTIONS(2750), + [anon_sym_BANG_TILDE2] = ACTIONS(2750), + [anon_sym_like2] = ACTIONS(2750), + [anon_sym_not_DASHlike2] = ACTIONS(2750), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2752), + [anon_sym_mod2] = ACTIONS(2750), + [anon_sym_SLASH_SLASH2] = ACTIONS(2750), + [anon_sym_PLUS2] = ACTIONS(2752), + [anon_sym_bit_DASHshl2] = ACTIONS(2750), + [anon_sym_bit_DASHshr2] = ACTIONS(2750), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1207)] = { + [aux_sym__repeat_newline] = STATE(1236), + [sym_comment] = STATE(1207), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2748), + [anon_sym_out_GT] = ACTIONS(2748), + [anon_sym_e_GT] = ACTIONS(2748), + [anon_sym_o_GT] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT] = ACTIONS(2748), + [anon_sym_err_GT_GT] = ACTIONS(2746), + [anon_sym_out_GT_GT] = ACTIONS(2746), + [anon_sym_e_GT_GT] = ACTIONS(2746), + [anon_sym_o_GT_GT] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1208)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1208), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1209)] = { + [aux_sym__repeat_newline] = STATE(1238), + [sym_comment] = STATE(1209), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2748), + [anon_sym_out_GT] = ACTIONS(2748), + [anon_sym_e_GT] = ACTIONS(2748), + [anon_sym_o_GT] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT] = ACTIONS(2748), + [anon_sym_err_GT_GT] = ACTIONS(2746), + [anon_sym_out_GT_GT] = ACTIONS(2746), + [anon_sym_e_GT_GT] = ACTIONS(2746), + [anon_sym_o_GT_GT] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1210)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1210), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2937), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1211)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1198), [sym_comment] = STATE(1211), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2730), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2730), + [anon_sym_has2] = ACTIONS(2730), + [anon_sym_not_DASHhas2] = ACTIONS(2730), + [anon_sym_starts_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), + [anon_sym_ends_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2730), + [anon_sym_BANG_TILDE2] = ACTIONS(2730), + [anon_sym_like2] = ACTIONS(2730), + [anon_sym_not_DASHlike2] = ACTIONS(2730), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2730), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1212)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1212), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2937), + [anon_sym_xor2] = ACTIONS(2939), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1213)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1241), [sym_comment] = STATE(1213), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2746), + [anon_sym_BANG_TILDE2] = ACTIONS(2746), + [anon_sym_like2] = ACTIONS(2746), + [anon_sym_not_DASHlike2] = ACTIONS(2746), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2746), + [anon_sym_bit_DASHxor2] = ACTIONS(2746), + [anon_sym_bit_DASHor2] = ACTIONS(2746), + [anon_sym_err_GT] = ACTIONS(2748), + [anon_sym_out_GT] = ACTIONS(2748), + [anon_sym_e_GT] = ACTIONS(2748), + [anon_sym_o_GT] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT] = ACTIONS(2748), + [anon_sym_err_GT_GT] = ACTIONS(2746), + [anon_sym_out_GT_GT] = ACTIONS(2746), + [anon_sym_e_GT_GT] = ACTIONS(2746), + [anon_sym_o_GT_GT] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1214)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1214), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2750), + [anon_sym_BANG_TILDE2] = ACTIONS(2750), + [anon_sym_like2] = ACTIONS(2750), + [anon_sym_not_DASHlike2] = ACTIONS(2750), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1215)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1215), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1216)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1242), [sym_comment] = STATE(1216), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2754), + [anon_sym_BANG_TILDE2] = ACTIONS(2754), + [anon_sym_like2] = ACTIONS(2754), + [anon_sym_not_DASHlike2] = ACTIONS(2754), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2754), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1217)] = { - [aux_sym__repeat_newline] = STATE(1132), + [aux_sym__repeat_newline] = STATE(1183), [sym_comment] = STATE(1217), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1218)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1218), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1219)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1219), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2804), [anon_sym_SEMI] = ACTIONS(2720), [anon_sym_PIPE] = ACTIONS(2720), [anon_sym_err_GT_PIPE] = ACTIONS(2720), @@ -136239,39 +136802,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), [anon_sym_and2] = ACTIONS(2720), [anon_sym_xor2] = ACTIONS(2720), [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2722), - [anon_sym_mod2] = ACTIONS(2720), - [anon_sym_SLASH_SLASH2] = ACTIONS(2720), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), [anon_sym_err_GT] = ACTIONS(2722), [anon_sym_out_GT] = ACTIONS(2722), [anon_sym_e_GT] = ACTIONS(2722), @@ -136290,279 +136853,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1218)] = { + [aux_sym__repeat_newline] = STATE(1243), + [sym_comment] = STATE(1218), + [anon_sym_in] = ACTIONS(2746), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_GT2] = ACTIONS(2748), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2746), + [anon_sym_has2] = ACTIONS(2746), + [anon_sym_not_DASHhas2] = ACTIONS(2746), + [anon_sym_starts_DASHwith2] = ACTIONS(2746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2746), + [anon_sym_ends_DASHwith2] = ACTIONS(2746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2746), + [anon_sym_EQ_EQ2] = ACTIONS(2746), + [anon_sym_BANG_EQ2] = ACTIONS(2746), + [anon_sym_LT2] = ACTIONS(2748), + [anon_sym_LT_EQ2] = ACTIONS(2746), + [anon_sym_GT_EQ2] = ACTIONS(2746), + [anon_sym_EQ_TILDE2] = ACTIONS(2746), + [anon_sym_BANG_TILDE2] = ACTIONS(2746), + [anon_sym_like2] = ACTIONS(2746), + [anon_sym_not_DASHlike2] = ACTIONS(2746), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2746), + [anon_sym_bit_DASHshr2] = ACTIONS(2746), + [anon_sym_bit_DASHand2] = ACTIONS(2746), + [anon_sym_bit_DASHxor2] = ACTIONS(2746), + [anon_sym_bit_DASHor2] = ACTIONS(2746), + [anon_sym_err_GT] = ACTIONS(2748), + [anon_sym_out_GT] = ACTIONS(2748), + [anon_sym_e_GT] = ACTIONS(2748), + [anon_sym_o_GT] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT] = ACTIONS(2748), + [anon_sym_err_GT_GT] = ACTIONS(2746), + [anon_sym_out_GT_GT] = ACTIONS(2746), + [anon_sym_e_GT_GT] = ACTIONS(2746), + [anon_sym_o_GT_GT] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1219)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1219), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1220)] = { + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(2092), - [anon_sym_in] = ACTIONS(2092), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_GT2] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2092), - [anon_sym_STAR2] = ACTIONS(2094), - [anon_sym_and2] = ACTIONS(2092), - [anon_sym_xor2] = ACTIONS(2092), - [anon_sym_or2] = ACTIONS(2092), - [anon_sym_not_DASHin2] = ACTIONS(2092), - [anon_sym_has2] = ACTIONS(2092), - [anon_sym_not_DASHhas2] = ACTIONS(2092), - [anon_sym_starts_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2092), - [anon_sym_ends_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2092), - [anon_sym_EQ_EQ2] = ACTIONS(2092), - [anon_sym_BANG_EQ2] = ACTIONS(2092), - [anon_sym_LT2] = ACTIONS(2094), - [anon_sym_LT_EQ2] = ACTIONS(2092), - [anon_sym_GT_EQ2] = ACTIONS(2092), - [anon_sym_EQ_TILDE2] = ACTIONS(2092), - [anon_sym_BANG_TILDE2] = ACTIONS(2092), - [anon_sym_like2] = ACTIONS(2092), - [anon_sym_not_DASHlike2] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), + [anon_sym_in] = ACTIONS(2750), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2752), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2750), + [anon_sym_has2] = ACTIONS(2750), + [anon_sym_not_DASHhas2] = ACTIONS(2750), + [anon_sym_starts_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), + [anon_sym_ends_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), + [anon_sym_EQ_EQ2] = ACTIONS(2750), + [anon_sym_BANG_EQ2] = ACTIONS(2750), + [anon_sym_LT2] = ACTIONS(2752), + [anon_sym_LT_EQ2] = ACTIONS(2750), + [anon_sym_GT_EQ2] = ACTIONS(2750), + [anon_sym_EQ_TILDE2] = ACTIONS(2750), + [anon_sym_BANG_TILDE2] = ACTIONS(2750), + [anon_sym_like2] = ACTIONS(2750), + [anon_sym_not_DASHlike2] = ACTIONS(2750), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2750), + [anon_sym_bit_DASHshr2] = ACTIONS(2750), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1221)] = { - [aux_sym__repeat_newline] = STATE(1159), + [aux_sym__repeat_newline] = STATE(1244), [sym_comment] = STATE(1221), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2746), + [anon_sym_bit_DASHxor2] = ACTIONS(2746), + [anon_sym_bit_DASHor2] = ACTIONS(2746), + [anon_sym_err_GT] = ACTIONS(2748), + [anon_sym_out_GT] = ACTIONS(2748), + [anon_sym_e_GT] = ACTIONS(2748), + [anon_sym_o_GT] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT] = ACTIONS(2748), + [anon_sym_err_GT_GT] = ACTIONS(2746), + [anon_sym_out_GT_GT] = ACTIONS(2746), + [anon_sym_e_GT_GT] = ACTIONS(2746), + [anon_sym_o_GT_GT] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1222)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1222), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1223)] = { + [aux_sym__repeat_newline] = STATE(1245), [sym_comment] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(2084), - [anon_sym_in] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2086), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_has2] = ACTIONS(2084), - [anon_sym_not_DASHhas2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2086), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_like2] = ACTIONS(2084), - [anon_sym_not_DASHlike2] = ACTIONS(2084), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2086), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2746), + [anon_sym_bit_DASHor2] = ACTIONS(2746), + [anon_sym_err_GT] = ACTIONS(2748), + [anon_sym_out_GT] = ACTIONS(2748), + [anon_sym_e_GT] = ACTIONS(2748), + [anon_sym_o_GT] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT] = ACTIONS(2748), + [anon_sym_err_GT_GT] = ACTIONS(2746), + [anon_sym_out_GT_GT] = ACTIONS(2746), + [anon_sym_e_GT_GT] = ACTIONS(2746), + [anon_sym_o_GT_GT] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1224)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1224), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1225)] = { + [aux_sym__repeat_newline] = STATE(1185), + [sym_comment] = STATE(1225), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2804), [anon_sym_SEMI] = ACTIONS(2720), [anon_sym_PIPE] = ACTIONS(2720), [anon_sym_err_GT_PIPE] = ACTIONS(2720), @@ -136574,38 +137338,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2905), [anon_sym_xor2] = ACTIONS(2720), [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), [anon_sym_bit_DASHor2] = ACTIONS(2903), [anon_sym_err_GT] = ACTIONS(2722), [anon_sym_out_GT] = ACTIONS(2722), @@ -136625,400 +137389,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1225)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1225), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1226)] = { - [aux_sym__repeat_newline] = STATE(1183), + [aux_sym__repeat_newline] = STATE(1246), [sym_comment] = STATE(1226), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2746), + [anon_sym_err_GT] = ACTIONS(2748), + [anon_sym_out_GT] = ACTIONS(2748), + [anon_sym_e_GT] = ACTIONS(2748), + [anon_sym_o_GT] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT] = ACTIONS(2748), + [anon_sym_err_GT_GT] = ACTIONS(2746), + [anon_sym_out_GT_GT] = ACTIONS(2746), + [anon_sym_e_GT_GT] = ACTIONS(2746), + [anon_sym_o_GT_GT] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1227)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1227), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [ts_builtin_sym_end] = ACTIONS(2174), + [anon_sym_in] = ACTIONS(2174), + [sym__newline] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_err_GT_PIPE] = ACTIONS(2174), + [anon_sym_out_GT_PIPE] = ACTIONS(2174), + [anon_sym_e_GT_PIPE] = ACTIONS(2174), + [anon_sym_o_GT_PIPE] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2174), + [anon_sym_GT2] = ACTIONS(2176), + [anon_sym_DASH2] = ACTIONS(2174), + [anon_sym_STAR2] = ACTIONS(2176), + [anon_sym_and2] = ACTIONS(2174), + [anon_sym_xor2] = ACTIONS(2174), + [anon_sym_or2] = ACTIONS(2174), + [anon_sym_not_DASHin2] = ACTIONS(2174), + [anon_sym_has2] = ACTIONS(2174), + [anon_sym_not_DASHhas2] = ACTIONS(2174), + [anon_sym_starts_DASHwith2] = ACTIONS(2174), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2174), + [anon_sym_ends_DASHwith2] = ACTIONS(2174), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2174), + [anon_sym_EQ_EQ2] = ACTIONS(2174), + [anon_sym_BANG_EQ2] = ACTIONS(2174), + [anon_sym_LT2] = ACTIONS(2176), + [anon_sym_LT_EQ2] = ACTIONS(2174), + [anon_sym_GT_EQ2] = ACTIONS(2174), + [anon_sym_EQ_TILDE2] = ACTIONS(2174), + [anon_sym_BANG_TILDE2] = ACTIONS(2174), + [anon_sym_like2] = ACTIONS(2174), + [anon_sym_not_DASHlike2] = ACTIONS(2174), + [anon_sym_LPAREN2] = ACTIONS(2174), + [anon_sym_STAR_STAR2] = ACTIONS(2174), + [anon_sym_PLUS_PLUS2] = ACTIONS(2174), + [anon_sym_SLASH2] = ACTIONS(2176), + [anon_sym_mod2] = ACTIONS(2174), + [anon_sym_SLASH_SLASH2] = ACTIONS(2174), + [anon_sym_PLUS2] = ACTIONS(2176), + [anon_sym_bit_DASHshl2] = ACTIONS(2174), + [anon_sym_bit_DASHshr2] = ACTIONS(2174), + [anon_sym_bit_DASHand2] = ACTIONS(2174), + [anon_sym_bit_DASHxor2] = ACTIONS(2174), + [anon_sym_bit_DASHor2] = ACTIONS(2174), + [anon_sym_err_GT] = ACTIONS(2176), + [anon_sym_out_GT] = ACTIONS(2176), + [anon_sym_e_GT] = ACTIONS(2176), + [anon_sym_o_GT] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT] = ACTIONS(2176), + [anon_sym_err_GT_GT] = ACTIONS(2174), + [anon_sym_out_GT_GT] = ACTIONS(2174), + [anon_sym_e_GT_GT] = ACTIONS(2174), + [anon_sym_o_GT_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2174), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1228)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1228), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1229)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expression] = STATE(4914), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2253), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), [sym_comment] = STATE(1229), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1230)] = { - [sym__expression] = STATE(4724), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [aux_sym_cmd_identifier_token2] = ACTIONS(2829), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2567), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -137027,11 +137657,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(1230)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1230), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2937), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1231)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1231), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1232)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1232), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1233)] = { + [aux_sym__repeat_newline] = STATE(1186), + [sym_comment] = STATE(1233), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2907), [anon_sym_SEMI] = ACTIONS(2720), [anon_sym_PIPE] = ACTIONS(2720), [anon_sym_err_GT_PIPE] = ACTIONS(2720), @@ -137043,38 +137874,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2909), [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), [anon_sym_bit_DASHor2] = ACTIONS(2903), [anon_sym_err_GT] = ACTIONS(2722), [anon_sym_out_GT] = ACTIONS(2722), @@ -137094,78 +137925,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1232)] = { - [sym__expression] = STATE(4726), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1232), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(1234)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1234), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2762), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2764), + [anon_sym_bit_DASHshl2] = ACTIONS(2762), + [anon_sym_bit_DASHshr2] = ACTIONS(2762), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1233)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1233), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), + [STATE(1235)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1235), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2762), + [anon_sym_STAR2] = ACTIONS(2764), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2764), + [anon_sym_mod2] = ACTIONS(2762), + [anon_sym_SLASH_SLASH2] = ACTIONS(2762), + [anon_sym_PLUS2] = ACTIONS(2764), + [anon_sym_bit_DASHshl2] = ACTIONS(2762), + [anon_sym_bit_DASHshr2] = ACTIONS(2762), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1236)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1236), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1237)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1237), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2937), + [anon_sym_xor2] = ACTIONS(2939), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1238)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1238), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2937), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1239)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1239), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2937), + [anon_sym_xor2] = ACTIONS(2939), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1240)] = { + [aux_sym__repeat_newline] = STATE(1187), + [sym_comment] = STATE(1240), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2804), [anon_sym_SEMI] = ACTIONS(2720), [anon_sym_PIPE] = ACTIONS(2720), [anon_sym_err_GT_PIPE] = ACTIONS(2720), @@ -137177,36 +138343,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), [anon_sym_and2] = ACTIONS(2720), [anon_sym_xor2] = ACTIONS(2720), [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), [anon_sym_EQ_TILDE2] = ACTIONS(2720), [anon_sym_BANG_TILDE2] = ACTIONS(2720), [anon_sym_like2] = ACTIONS(2720), [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), [anon_sym_bit_DASHand2] = ACTIONS(2720), [anon_sym_bit_DASHxor2] = ACTIONS(2720), [anon_sym_bit_DASHor2] = ACTIONS(2720), @@ -137228,279 +138394,547 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1234)] = { - [aux_sym__repeat_newline] = STATE(1231), - [sym_comment] = STATE(1234), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [STATE(1241)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1241), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1235)] = { - [aux_sym__repeat_newline] = STATE(1196), - [sym_comment] = STATE(1235), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [STATE(1242)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1242), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1236)] = { - [aux_sym__repeat_newline] = STATE(1137), - [sym_comment] = STATE(1236), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [STATE(1243)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1243), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2762), + [anon_sym_bit_DASHshr2] = ACTIONS(2762), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1237)] = { - [sym__ctrl_match_body] = STATE(5168), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), - [sym_comment] = STATE(1237), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [STATE(1244)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1244), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(1238)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1238), + [STATE(1245)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1245), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1246)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1246), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1247)] = { + [sym_comment] = STATE(1247), + [ts_builtin_sym_end] = ACTIONS(2142), + [anon_sym_in] = ACTIONS(2142), + [sym__newline] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_err_GT_PIPE] = ACTIONS(2142), + [anon_sym_out_GT_PIPE] = ACTIONS(2142), + [anon_sym_e_GT_PIPE] = ACTIONS(2142), + [anon_sym_o_GT_PIPE] = ACTIONS(2142), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2142), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2142), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2142), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2142), + [anon_sym_GT2] = ACTIONS(2144), + [anon_sym_DASH2] = ACTIONS(2142), + [anon_sym_STAR2] = ACTIONS(2144), + [anon_sym_and2] = ACTIONS(2142), + [anon_sym_xor2] = ACTIONS(2142), + [anon_sym_or2] = ACTIONS(2142), + [anon_sym_not_DASHin2] = ACTIONS(2142), + [anon_sym_has2] = ACTIONS(2142), + [anon_sym_not_DASHhas2] = ACTIONS(2142), + [anon_sym_starts_DASHwith2] = ACTIONS(2142), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2142), + [anon_sym_ends_DASHwith2] = ACTIONS(2142), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2142), + [anon_sym_EQ_EQ2] = ACTIONS(2142), + [anon_sym_BANG_EQ2] = ACTIONS(2142), + [anon_sym_LT2] = ACTIONS(2144), + [anon_sym_LT_EQ2] = ACTIONS(2142), + [anon_sym_GT_EQ2] = ACTIONS(2142), + [anon_sym_EQ_TILDE2] = ACTIONS(2142), + [anon_sym_BANG_TILDE2] = ACTIONS(2142), + [anon_sym_like2] = ACTIONS(2142), + [anon_sym_not_DASHlike2] = ACTIONS(2142), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_STAR_STAR2] = ACTIONS(2142), + [anon_sym_PLUS_PLUS2] = ACTIONS(2142), + [anon_sym_SLASH2] = ACTIONS(2144), + [anon_sym_mod2] = ACTIONS(2142), + [anon_sym_SLASH_SLASH2] = ACTIONS(2142), + [anon_sym_PLUS2] = ACTIONS(2144), + [anon_sym_bit_DASHshl2] = ACTIONS(2142), + [anon_sym_bit_DASHshr2] = ACTIONS(2142), + [anon_sym_bit_DASHand2] = ACTIONS(2142), + [anon_sym_bit_DASHxor2] = ACTIONS(2142), + [anon_sym_bit_DASHor2] = ACTIONS(2142), + [anon_sym_err_GT] = ACTIONS(2144), + [anon_sym_out_GT] = ACTIONS(2144), + [anon_sym_e_GT] = ACTIONS(2144), + [anon_sym_o_GT] = ACTIONS(2144), + [anon_sym_err_PLUSout_GT] = ACTIONS(2144), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), + [anon_sym_o_PLUSe_GT] = ACTIONS(2144), + [anon_sym_e_PLUSo_GT] = ACTIONS(2144), + [anon_sym_err_GT_GT] = ACTIONS(2142), + [anon_sym_out_GT_GT] = ACTIONS(2142), + [anon_sym_e_GT_GT] = ACTIONS(2142), + [anon_sym_o_GT_GT] = ACTIONS(2142), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2142), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2142), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2142), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2142), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1248)] = { + [aux_sym__repeat_newline] = STATE(1252), + [sym_comment] = STATE(1248), + [anon_sym_in] = ACTIONS(2754), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2756), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2754), + [anon_sym_has2] = ACTIONS(2754), + [anon_sym_not_DASHhas2] = ACTIONS(2754), + [anon_sym_starts_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), + [anon_sym_ends_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), + [anon_sym_EQ_EQ2] = ACTIONS(2754), + [anon_sym_BANG_EQ2] = ACTIONS(2754), + [anon_sym_LT2] = ACTIONS(2756), + [anon_sym_LT_EQ2] = ACTIONS(2754), + [anon_sym_GT_EQ2] = ACTIONS(2754), + [anon_sym_EQ_TILDE2] = ACTIONS(2754), + [anon_sym_BANG_TILDE2] = ACTIONS(2754), + [anon_sym_like2] = ACTIONS(2754), + [anon_sym_not_DASHlike2] = ACTIONS(2754), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2754), + [anon_sym_bit_DASHshr2] = ACTIONS(2754), + [anon_sym_bit_DASHand2] = ACTIONS(2754), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1249)] = { + [aux_sym__repeat_newline] = STATE(1188), + [sym_comment] = STATE(1249), [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), + [sym__newline] = ACTIONS(2804), [anon_sym_SEMI] = ACTIONS(2720), [anon_sym_PIPE] = ACTIONS(2720), [anon_sym_err_GT_PIPE] = ACTIONS(2720), @@ -137513,8 +138947,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), [anon_sym_RPAREN] = ACTIONS(2720), [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), [anon_sym_and2] = ACTIONS(2720), [anon_sym_xor2] = ACTIONS(2720), [anon_sym_or2] = ACTIONS(2720), @@ -137534,12 +138968,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2720), [anon_sym_like2] = ACTIONS(2720), [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), [anon_sym_bit_DASHshl2] = ACTIONS(2720), [anon_sym_bit_DASHshr2] = ACTIONS(2720), [anon_sym_bit_DASHand2] = ACTIONS(2720), @@ -137563,132 +138997,467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1239)] = { - [sym_comment] = STATE(1239), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), + [STATE(1250)] = { + [aux_sym__repeat_newline] = STATE(1257), + [sym_comment] = STATE(1250), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2754), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1240)] = { - [sym__expression] = STATE(4737), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1240), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [STATE(1251)] = { + [aux_sym__repeat_newline] = STATE(1263), + [sym_comment] = STATE(1251), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1252)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1252), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1253)] = { + [sym_comment] = STATE(1253), + [anon_sym_export] = ACTIONS(2944), + [anon_sym_alias] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_mut] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [aux_sym_cmd_identifier_token1] = ACTIONS(2944), + [anon_sym_def] = ACTIONS(2948), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_export_DASHenv] = ACTIONS(2948), + [anon_sym_extern] = ACTIONS(2948), + [anon_sym_module] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_loop] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_else] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_catch] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_in] = ACTIONS(2944), + [anon_sym_true] = ACTIONS(2948), + [anon_sym_false] = ACTIONS(2948), + [anon_sym_null] = ACTIONS(2948), + [aux_sym_cmd_identifier_token3] = ACTIONS(2948), + [aux_sym_cmd_identifier_token4] = ACTIONS(2948), + [aux_sym_cmd_identifier_token5] = ACTIONS(2948), + [sym__newline] = ACTIONS(2948), + [anon_sym_SEMI] = ACTIONS(2952), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_AT] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_DOLLAR] = ACTIONS(2944), + [anon_sym_DASH2] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_RBRACE] = ACTIONS(2952), + [anon_sym_DOT_DOT] = ACTIONS(2955), + [anon_sym_where] = ACTIONS(2952), + [aux_sym_expr_unary_token1] = ACTIONS(2952), + [anon_sym_PLUS2] = ACTIONS(2958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2952), + [anon_sym_DOT_DOT_LT] = ACTIONS(2952), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2960), + [aux_sym__val_number_decimal_token1] = ACTIONS(2944), + [aux_sym__val_number_decimal_token2] = ACTIONS(2948), + [aux_sym__val_number_decimal_token3] = ACTIONS(2948), + [aux_sym__val_number_decimal_token4] = ACTIONS(2948), + [aux_sym__val_number_token1] = ACTIONS(2948), + [aux_sym__val_number_token2] = ACTIONS(2948), + [aux_sym__val_number_token3] = ACTIONS(2948), + [anon_sym_0b] = ACTIONS(2955), + [anon_sym_0o] = ACTIONS(2955), + [anon_sym_0x] = ACTIONS(2955), + [sym_val_date] = ACTIONS(2952), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_SQUOTE] = ACTIONS(2948), + [anon_sym_BQUOTE] = ACTIONS(2948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2960), + [anon_sym_CARET] = ACTIONS(2952), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2948), + }, + [STATE(1254)] = { + [aux_sym__repeat_newline] = STATE(1266), + [sym_comment] = STATE(1254), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1255)] = { + [aux_sym__repeat_newline] = STATE(1189), + [sym_comment] = STATE(1255), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_err_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2720), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1256)] = { + [sym__expression] = STATE(4938), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2253), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_comment] = STATE(1256), + [aux_sym_cmd_identifier_token2] = ACTIONS(2829), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2567), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -137697,346 +139466,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1241)] = { - [aux_sym__repeat_newline] = STATE(1211), - [sym_comment] = STATE(1241), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [STATE(1257)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1257), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1242)] = { - [sym_comment] = STATE(1242), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), + [STATE(1258)] = { + [sym_comment] = STATE(1258), + [ts_builtin_sym_end] = ACTIONS(2525), + [aux_sym_cmd_identifier_token2] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(2527), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2527), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2527), + [anon_sym_xor2] = ACTIONS(2527), + [anon_sym_or2] = ACTIONS(2527), + [anon_sym_not_DASHin2] = ACTIONS(2527), + [anon_sym_has2] = ACTIONS(2527), + [anon_sym_not_DASHhas2] = ACTIONS(2527), + [anon_sym_starts_DASHwith2] = ACTIONS(2527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2527), + [anon_sym_ends_DASHwith2] = ACTIONS(2527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2527), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2527), + [anon_sym_like2] = ACTIONS(2527), + [anon_sym_not_DASHlike2] = ACTIONS(2527), + [anon_sym_STAR_STAR2] = ACTIONS(2527), + [anon_sym_PLUS_PLUS2] = ACTIONS(2527), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2527), + [anon_sym_SLASH_SLASH2] = ACTIONS(2527), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2527), + [anon_sym_bit_DASHshr2] = ACTIONS(2527), + [anon_sym_bit_DASHand2] = ACTIONS(2527), + [anon_sym_bit_DASHxor2] = ACTIONS(2527), + [anon_sym_bit_DASHor2] = ACTIONS(2527), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(1243)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1243), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1244)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1244), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1245)] = { - [aux_sym__repeat_newline] = STATE(1225), - [sym_comment] = STATE(1245), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1246)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1246), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), + [STATE(1259)] = { + [aux_sym__repeat_newline] = STATE(1190), + [sym_comment] = STATE(1259), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2804), [anon_sym_SEMI] = ACTIONS(2720), [anon_sym_PIPE] = ACTIONS(2720), [anon_sym_err_GT_PIPE] = ACTIONS(2720), @@ -138048,37 +139616,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), [anon_sym_and2] = ACTIONS(2720), [anon_sym_xor2] = ACTIONS(2720), [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), [anon_sym_bit_DASHxor2] = ACTIONS(2720), [anon_sym_bit_DASHor2] = ACTIONS(2720), [anon_sym_err_GT] = ACTIONS(2722), @@ -138099,78 +139667,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1247)] = { - [sym_comment] = STATE(1247), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [STATE(1260)] = { + [sym_comment] = STATE(1260), + [anon_sym_in] = ACTIONS(2551), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2823), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2551), + [anon_sym_has2] = ACTIONS(2551), + [anon_sym_not_DASHhas2] = ACTIONS(2551), + [anon_sym_starts_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), + [anon_sym_ends_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2551), + [anon_sym_BANG_TILDE2] = ACTIONS(2551), + [anon_sym_like2] = ACTIONS(2551), + [anon_sym_not_DASHlike2] = ACTIONS(2551), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2551), + [anon_sym_bit_DASHxor2] = ACTIONS(2551), + [anon_sym_bit_DASHor2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1248)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1248), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), + [STATE(1261)] = { + [sym__ctrl_match_body] = STATE(5184), + [sym_match_arm] = STATE(4682), + [sym_default_arm] = STATE(4682), + [sym_match_pattern] = STATE(5194), + [sym__match_pattern] = STATE(4028), + [sym__match_pattern_expression] = STATE(4471), + [sym__match_pattern_value] = STATE(4475), + [sym__match_pattern_list] = STATE(4483), + [sym__match_pattern_record] = STATE(4489), + [sym_expr_parenthesized] = STATE(3865), + [sym_val_range] = STATE(4475), + [sym__val_range] = STATE(5176), + [sym_val_nothing] = STATE(4489), + [sym_val_bool] = STATE(4169), + [sym_val_variable] = STATE(3808), + [sym_val_number] = STATE(4489), + [sym__val_number_decimal] = STATE(3636), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(4489), + [sym_val_filesize] = STATE(4489), + [sym_val_binary] = STATE(4489), + [sym_val_string] = STATE(4489), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_table] = STATE(4489), + [sym_unquoted] = STATE(4503), + [sym__unquoted_anonymous_prefix] = STATE(5176), + [sym_comment] = STATE(1261), + [aux_sym__types_body_repeat1] = STATE(1355), + [aux_sym__ctrl_match_body_repeat1] = STATE(1368), + [anon_sym_true] = ACTIONS(2863), + [anon_sym_false] = ACTIONS(2863), + [anon_sym_null] = ACTIONS(2865), + [aux_sym_cmd_identifier_token3] = ACTIONS(2867), + [aux_sym_cmd_identifier_token4] = ACTIONS(2867), + [aux_sym_cmd_identifier_token5] = ACTIONS(2867), + [sym__newline] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_DOLLAR] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_RBRACE] = ACTIONS(2962), + [anon_sym__] = ACTIONS(2879), + [anon_sym_DOT_DOT] = ACTIONS(2881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2883), + [anon_sym_DOT_DOT_LT] = ACTIONS(2883), + [aux_sym__val_number_decimal_token1] = ACTIONS(2885), + [aux_sym__val_number_decimal_token2] = ACTIONS(2887), + [aux_sym__val_number_decimal_token3] = ACTIONS(2889), + [aux_sym__val_number_decimal_token4] = ACTIONS(2889), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2891), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [aux_sym_unquoted_token1] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(1262)] = { + [sym__ctrl_match_body] = STATE(5367), + [sym_match_arm] = STATE(4682), + [sym_default_arm] = STATE(4682), + [sym_match_pattern] = STATE(5194), + [sym__match_pattern] = STATE(4028), + [sym__match_pattern_expression] = STATE(4471), + [sym__match_pattern_value] = STATE(4475), + [sym__match_pattern_list] = STATE(4483), + [sym__match_pattern_record] = STATE(4489), + [sym_expr_parenthesized] = STATE(3865), + [sym_val_range] = STATE(4475), + [sym__val_range] = STATE(5176), + [sym_val_nothing] = STATE(4489), + [sym_val_bool] = STATE(4169), + [sym_val_variable] = STATE(3808), + [sym_val_number] = STATE(4489), + [sym__val_number_decimal] = STATE(3636), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(4489), + [sym_val_filesize] = STATE(4489), + [sym_val_binary] = STATE(4489), + [sym_val_string] = STATE(4489), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_table] = STATE(4489), + [sym_unquoted] = STATE(4503), + [sym__unquoted_anonymous_prefix] = STATE(5176), + [sym_comment] = STATE(1262), + [aux_sym__types_body_repeat1] = STATE(1355), + [aux_sym__ctrl_match_body_repeat1] = STATE(1368), + [anon_sym_true] = ACTIONS(2863), + [anon_sym_false] = ACTIONS(2863), + [anon_sym_null] = ACTIONS(2865), + [aux_sym_cmd_identifier_token3] = ACTIONS(2867), + [aux_sym_cmd_identifier_token4] = ACTIONS(2867), + [aux_sym_cmd_identifier_token5] = ACTIONS(2867), + [sym__newline] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_DOLLAR] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym__] = ACTIONS(2879), + [anon_sym_DOT_DOT] = ACTIONS(2881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2883), + [anon_sym_DOT_DOT_LT] = ACTIONS(2883), + [aux_sym__val_number_decimal_token1] = ACTIONS(2885), + [aux_sym__val_number_decimal_token2] = ACTIONS(2887), + [aux_sym__val_number_decimal_token3] = ACTIONS(2889), + [aux_sym__val_number_decimal_token4] = ACTIONS(2889), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2891), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [aux_sym_unquoted_token1] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(1263)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1263), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1264)] = { + [aux_sym__repeat_newline] = STATE(1193), + [sym_comment] = STATE(1264), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2804), [anon_sym_SEMI] = ACTIONS(2720), [anon_sym_PIPE] = ACTIONS(2720), [anon_sym_err_GT_PIPE] = ACTIONS(2720), @@ -138182,38 +139951,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), [anon_sym_and2] = ACTIONS(2720), [anon_sym_xor2] = ACTIONS(2720), [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), [anon_sym_bit_DASHor2] = ACTIONS(2720), [anon_sym_err_GT] = ACTIONS(2722), [anon_sym_out_GT] = ACTIONS(2722), @@ -138233,601 +140002,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1249)] = { - [aux_sym__repeat_newline] = STATE(1141), - [sym_comment] = STATE(1249), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1250)] = { - [aux_sym__repeat_newline] = STATE(1222), - [sym_comment] = STATE(1250), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1251)] = { - [sym_comment] = STATE(1251), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1252)] = { - [sym_comment] = STATE(1252), - [anon_sym_export] = ACTIONS(2924), - [anon_sym_alias] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_mut] = ACTIONS(2928), - [anon_sym_const] = ACTIONS(2928), - [aux_sym_cmd_identifier_token1] = ACTIONS(2924), - [anon_sym_def] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_export_DASHenv] = ACTIONS(2928), - [anon_sym_extern] = ACTIONS(2928), - [anon_sym_module] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_loop] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_else] = ACTIONS(2928), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_catch] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_in] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2928), - [anon_sym_false] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2928), - [aux_sym_cmd_identifier_token3] = ACTIONS(2928), - [aux_sym_cmd_identifier_token4] = ACTIONS(2928), - [aux_sym_cmd_identifier_token5] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_AT] = ACTIONS(2932), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_DASH2] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym_DOT_DOT] = ACTIONS(2935), - [anon_sym_where] = ACTIONS(2932), - [aux_sym_expr_unary_token1] = ACTIONS(2932), - [anon_sym_PLUS2] = ACTIONS(2938), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2932), - [anon_sym_DOT_DOT_LT] = ACTIONS(2932), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2940), - [aux_sym__val_number_decimal_token1] = ACTIONS(2924), - [aux_sym__val_number_decimal_token2] = ACTIONS(2928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2928), - [aux_sym__val_number_decimal_token4] = ACTIONS(2928), - [aux_sym__val_number_token1] = ACTIONS(2928), - [aux_sym__val_number_token2] = ACTIONS(2928), - [aux_sym__val_number_token3] = ACTIONS(2928), - [anon_sym_0b] = ACTIONS(2935), - [anon_sym_0o] = ACTIONS(2935), - [anon_sym_0x] = ACTIONS(2935), - [sym_val_date] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2940), - [anon_sym_CARET] = ACTIONS(2932), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2928), - }, - [STATE(1253)] = { - [aux_sym__repeat_newline] = STATE(1146), - [sym_comment] = STATE(1253), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1254)] = { - [sym_comment] = STATE(1254), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1255)] = { - [aux_sym__repeat_newline] = STATE(1173), - [sym_comment] = STATE(1255), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2746), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2746), - [anon_sym_mod2] = ACTIONS(2744), - [anon_sym_SLASH_SLASH2] = ACTIONS(2744), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [STATE(1265)] = { + [sym_comment] = STATE(1265), + [anon_sym_in] = ACTIONS(2551), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2553), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2823), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2551), + [anon_sym_has2] = ACTIONS(2551), + [anon_sym_not_DASHhas2] = ACTIONS(2551), + [anon_sym_starts_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), + [anon_sym_ends_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), + [anon_sym_EQ_EQ2] = ACTIONS(2551), + [anon_sym_BANG_EQ2] = ACTIONS(2551), + [anon_sym_LT2] = ACTIONS(2553), + [anon_sym_LT_EQ2] = ACTIONS(2551), + [anon_sym_GT_EQ2] = ACTIONS(2551), + [anon_sym_EQ_TILDE2] = ACTIONS(2551), + [anon_sym_BANG_TILDE2] = ACTIONS(2551), + [anon_sym_like2] = ACTIONS(2551), + [anon_sym_not_DASHlike2] = ACTIONS(2551), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2551), + [anon_sym_bit_DASHxor2] = ACTIONS(2551), + [anon_sym_bit_DASHor2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1266)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1266), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1256)] = { - [sym__expression] = STATE(4756), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1256), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [STATE(1267)] = { + [sym__expression] = STATE(4910), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2253), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_comment] = STATE(1267), + [aux_sym_cmd_identifier_token2] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(1257)] = { - [sym__expression] = STATE(4763), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1257), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2567), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138836,65 +140203,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1258)] = { - [sym__expression] = STATE(4776), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1258), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [STATE(1268)] = { + [sym__expression] = STATE(4921), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2253), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_comment] = STATE(1268), + [aux_sym_cmd_identifier_token2] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2567), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138903,65 +140270,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1259)] = { - [sym__expression] = STATE(4779), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1259), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [STATE(1269)] = { + [sym__expression] = STATE(4923), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2253), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1861), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_comment] = STATE(1269), + [aux_sym_cmd_identifier_token2] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2567), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138970,205 +140337,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1260)] = { - [sym__ctrl_match_body] = STATE(5167), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), - [sym_comment] = STATE(1260), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(1261)] = { - [aux_sym__repeat_newline] = STATE(1233), - [sym_comment] = STATE(1261), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1262)] = { - [aux_sym__repeat_newline] = STATE(1175), - [sym_comment] = STATE(1262), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [STATE(1270)] = { + [aux_sym__repeat_newline] = STATE(1239), + [sym_comment] = STATE(1270), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2909), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2748), + [anon_sym_out_GT] = ACTIONS(2748), + [anon_sym_e_GT] = ACTIONS(2748), + [anon_sym_o_GT] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT] = ACTIONS(2748), + [anon_sym_err_GT_GT] = ACTIONS(2746), + [anon_sym_out_GT_GT] = ACTIONS(2746), + [anon_sym_e_GT_GT] = ACTIONS(2746), + [anon_sym_o_GT_GT] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, }; @@ -139177,9 +140410,9 @@ static const uint16_t ts_small_parse_table[] = { [0] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1263), 1, + STATE(1271), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139193,7 +140426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2272), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139243,12 +140476,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, - [73] = 4, + [73] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1264), 1, + ACTIONS(2968), 1, + anon_sym_null, + ACTIONS(2972), 1, + sym__newline, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2976), 1, + anon_sym_LPAREN, + ACTIONS(2978), 1, + anon_sym_DOLLAR, + ACTIONS(2980), 1, + anon_sym_LBRACE, + ACTIONS(2982), 1, + anon_sym_DOT_DOT, + ACTIONS(2986), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2988), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2994), 1, + anon_sym_0b, + ACTIONS(2998), 1, + sym_val_date, + ACTIONS(3000), 1, + anon_sym_DQUOTE, + ACTIONS(3002), 1, + anon_sym_SQUOTE, + ACTIONS(3004), 1, + anon_sym_BQUOTE, + ACTIONS(3006), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3008), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3010), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3012), 1, + sym_raw_string_begin, + STATE(1272), 1, sym_comment, - ACTIONS(2154), 13, + STATE(2259), 1, + aux_sym__repeat_newline, + STATE(2492), 1, + sym__val_number_decimal, + STATE(2911), 1, + sym_expr_parenthesized, + STATE(3007), 1, + sym_val_variable, + STATE(3048), 1, + sym__inter_single_quotes, + STATE(3049), 1, + sym__inter_double_quotes, + STATE(3092), 1, + sym__val_number, + STATE(3127), 1, + sym_val_bool, + STATE(3144), 1, + sym__unquoted_in_record, + ACTIONS(2966), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2984), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2990), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(2996), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4601), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2970), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(2992), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3410), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2568), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3091), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [216] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1273), 1, + sym_comment, + ACTIONS(1914), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139262,7 +140599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2152), 49, + ACTIONS(1912), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139312,12 +140649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [146] = 4, + [289] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1265), 1, + STATE(1274), 1, sym_comment, - ACTIONS(2220), 13, + ACTIONS(2583), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139331,7 +140668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2218), 49, + ACTIONS(2581), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139381,12 +140718,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [219] = 4, + [362] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1266), 1, + STATE(1275), 1, sym_comment, - ACTIONS(1966), 13, + ACTIONS(2622), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139400,7 +140737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1964), 49, + ACTIONS(2620), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139450,47 +140787,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, - [292] = 17, + [435] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, - STATE(1267), 1, + STATE(1276), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2284), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139499,17 +140806,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 23, + ACTIONS(2282), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -139521,9 +140820,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -139532,18 +140856,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, - [391] = 6, + [508] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1268), 1, + STATE(1277), 1, sym_comment, - ACTIONS(2138), 5, + ACTIONS(2595), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2140), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139552,8 +140875,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(2136), 20, + ACTIONS(2593), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -139565,16 +140889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2134), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -139603,12 +140917,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [468] = 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, + [581] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1269), 1, + STATE(1278), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2270), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139622,7 +140944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2268), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139672,12 +140994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [541] = 4, + [654] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1270), 1, + STATE(1279), 1, sym_comment, - ACTIONS(2517), 13, + ACTIONS(2274), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139691,7 +141013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2515), 49, + ACTIONS(2272), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139741,17 +141063,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, - [614] = 4, + [727] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1271), 1, + ACTIONS(3018), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + ACTIONS(3034), 1, + anon_sym_bit_DASHand2, + STATE(1280), 1, sym_comment, - ACTIONS(2078), 13, + ACTIONS(3016), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3020), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3022), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3024), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2553), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139760,9 +141108,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2076), 49, - ts_builtin_sym_end, + ACTIONS(3014), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2551), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -139774,10 +141130,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_DASH2, 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, + [822] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + STATE(1281), 1, + sym_comment, + ACTIONS(3016), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3020), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3022), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2553), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3014), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -139785,20 +141190,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(2551), 30, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -139810,12 +141221,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [687] = 4, + [913] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1272), 1, + STATE(1282), 1, sym_comment, - ACTIONS(2593), 13, + ACTIONS(2591), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139829,7 +141240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2591), 49, + ACTIONS(2589), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139879,12 +141290,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [760] = 4, + [986] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1273), 1, + STATE(1283), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(2238), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139898,7 +141309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2202), 49, + ACTIONS(2236), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139948,12 +141359,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [833] = 4, + [1059] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1274), 1, + STATE(1284), 1, sym_comment, - ACTIONS(2521), 13, + ACTIONS(1958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139967,7 +141378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2519), 49, + ACTIONS(1956), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140017,129 +141428,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, - [906] = 37, + [1132] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(195), 1, - sym_val_date, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(287), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(2406), 1, - aux_sym_expr_unary_token1, - ACTIONS(2410), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2412), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, - anon_sym_null, - ACTIONS(2970), 1, - anon_sym_DOT_DOT, - STATE(694), 1, - sym__val_number, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(945), 1, - sym__expr_unary_minus, - STATE(1275), 1, - sym_comment, - STATE(1875), 1, - sym__val_number_decimal, - STATE(1955), 1, - sym_expr_parenthesized, - STATE(1959), 1, - sym_val_variable, - STATE(2216), 1, - sym__expr_binary_expression, - STATE(5030), 1, - sym__expression, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2398), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2414), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(2972), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(944), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(943), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [1045] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1276), 1, + STATE(1285), 1, sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 10, + ACTIONS(2535), 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, @@ -140148,7 +141447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 44, + ACTIONS(2533), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140162,6 +141461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -140180,6 +141480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -140193,17 +141497,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, - [1128] = 4, + [1205] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1277), 1, + STATE(1286), 1, sym_comment, - ACTIONS(2507), 13, + ACTIONS(2164), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(2168), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140212,9 +141517,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(2505), 49, + ACTIONS(2166), 20, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140226,6 +141530,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2162), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -140254,57 +141568,49 @@ 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, - [1201] = 18, + [1282] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(3018), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(3030), 1, anon_sym_PLUS2, - ACTIONS(2964), 1, + ACTIONS(3034), 1, anon_sym_bit_DASHand2, - ACTIONS(2966), 1, + ACTIONS(3036), 1, + anon_sym_and2, + ACTIONS(3038), 1, anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, + ACTIONS(3040), 1, anon_sym_bit_DASHor2, - ACTIONS(2974), 1, - anon_sym_and2, - STATE(1278), 1, + STATE(1287), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(3016), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(3020), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(3026), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(3028), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(3032), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(3022), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, + ACTIONS(3024), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + ACTIONS(2553), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140313,7 +141619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, + ACTIONS(3014), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -140322,7 +141628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 22, + ACTIONS(2551), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -140345,17 +141651,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1302] = 4, + [1383] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1279), 1, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(287), 1, + anon_sym_DASH2, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(2430), 1, + aux_sym_expr_unary_token1, + ACTIONS(2434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2714), 1, + anon_sym_null, + ACTIONS(3042), 1, + anon_sym_DOT_DOT, + STATE(707), 1, + sym__val_number, + STATE(749), 1, + sym__inter_single_quotes, + STATE(750), 1, + sym__inter_double_quotes, + STATE(948), 1, + sym__expr_unary_minus, + STATE(1288), 1, + sym_comment, + STATE(1882), 1, + sym__val_number_decimal, + STATE(1950), 1, + sym_val_variable, + STATE(1957), 1, + sym_expr_parenthesized, + STATE(2250), 1, + sym__expr_binary_expression, + STATE(4954), 1, + sym__expression, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2422), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2438), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3044), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(947), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(946), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [1522] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + STATE(1289), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(3016), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3020), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3022), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3024), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2553), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140364,9 +141796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2222), 49, - ts_builtin_sym_end, + ACTIONS(3014), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2551), 26, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140378,31 +141818,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -140414,12 +141832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1375] = 4, + [1615] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1280), 1, + STATE(1290), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2618), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140433,7 +141851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2616), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140483,12 +141901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1448] = 4, + [1688] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1281), 1, + STATE(1291), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2553), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140502,7 +141920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2551), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140552,12 +141970,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1521] = 4, + [1761] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1282), 1, + STATE(1292), 1, sym_comment, - ACTIONS(2535), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140571,7 +141989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140621,36 +142039,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1594] = 13, + [1834] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + STATE(1293), 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(2240), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, - ACTIONS(2960), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + 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, + [1907] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, anon_sym_PLUS2, - STATE(1283), 1, + ACTIONS(3034), 1, + anon_sym_bit_DASHand2, + ACTIONS(3036), 1, + anon_sym_and2, + ACTIONS(3038), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3040), 1, + anon_sym_bit_DASHor2, + ACTIONS(3046), 1, + anon_sym_xor2, + STATE(1294), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(3016), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(3020), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(3026), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(3028), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(3032), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(3022), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2535), 8, + ACTIONS(3024), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2553), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140659,7 +142161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, + ACTIONS(3014), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -140668,7 +142170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 30, + ACTIONS(2551), 21, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -140681,16 +142183,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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -140699,12 +142192,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1685] = 4, + [2010] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1284), 1, + STATE(1295), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(1614), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140718,7 +142211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(1713), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140768,12 +142261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1758] = 4, + [2083] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1285), 1, + STATE(1296), 1, sym_comment, - ACTIONS(2605), 13, + ACTIONS(2246), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140787,7 +142280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2603), 49, + ACTIONS(2244), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140837,43 +142330,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1831] = 15, + [2156] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - STATE(1286), 1, + STATE(1297), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2100), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140882,17 +142349,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 25, + ACTIONS(2098), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140904,9 +142363,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -140917,119 +142399,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1926] = 39, + [2229] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1287), 1, - sym_comment, - STATE(1329), 1, - aux_sym__repeat_newline, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2871), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2980), 1, - sym_val_bool, - STATE(3024), 1, - sym__unquoted_in_record, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3260), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [2069] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1288), 1, + STATE(1298), 1, sym_comment, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 13, + ACTIONS(866), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141043,7 +142418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 47, + ACTIONS(886), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141076,6 +142451,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -141091,12 +142468,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2144] = 4, + [2302] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1289), 1, + STATE(1299), 1, sym_comment, - ACTIONS(868), 13, + ACTIONS(2120), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141110,7 +142487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(968), 49, + ACTIONS(2118), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141160,12 +142537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2217] = 4, + [2375] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1290), 1, + STATE(1300), 1, sym_comment, - ACTIONS(2577), 13, + ACTIONS(2234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141179,7 +142556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 49, + ACTIONS(2232), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141229,116 +142606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2290] = 39, + [2448] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1291), 1, - sym_comment, - STATE(2226), 1, - aux_sym__repeat_newline, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2821), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2961), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3234), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [2433] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1292), 1, + STATE(1301), 1, sym_comment, - ACTIONS(1868), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141352,7 +142625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1866), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141402,12 +142675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2506] = 4, + [2521] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1293), 1, + STATE(1302), 1, sym_comment, - ACTIONS(2565), 13, + ACTIONS(2638), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141421,7 +142694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2563), 49, + ACTIONS(2636), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141471,12 +142744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2579] = 4, + [2594] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1294), 1, + STATE(1303), 1, sym_comment, - ACTIONS(2601), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141490,7 +142763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2599), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141540,12 +142813,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2652] = 4, + [2667] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1295), 1, + STATE(1304), 1, sym_comment, - ACTIONS(2573), 13, + ACTIONS(2172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141559,7 +142832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2571), 49, + ACTIONS(2170), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141609,12 +142882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2725] = 4, + [2740] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1296), 1, + STATE(1305), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141628,7 +142901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141678,12 +142951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2798] = 4, + [2813] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1297), 1, + STATE(1306), 1, sym_comment, - ACTIONS(2609), 13, + ACTIONS(2278), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141697,7 +142970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2607), 49, + ACTIONS(2276), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141747,12 +143020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2871] = 4, + [2886] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1298), 1, + STATE(1307), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(2539), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141766,7 +143039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2206), 49, + ACTIONS(2537), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141816,17 +143089,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, - [2944] = 4, + [2959] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1299), 1, + ACTIONS(3018), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + STATE(1308), 1, sym_comment, - ACTIONS(2513), 13, - anon_sym_GT2, + ACTIONS(3020), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2553), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141835,7 +143118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2511), 49, + ACTIONS(2551), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141849,7 +143132,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -141868,10 +143150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -141885,12 +143163,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3017] = 4, + [3042] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1300), 1, + STATE(1309), 1, sym_comment, - ACTIONS(2212), 13, + ACTIONS(2288), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141904,7 +143182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2210), 49, + ACTIONS(2286), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141954,12 +143232,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3090] = 4, + [3115] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1301), 1, + STATE(1310), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2531), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141973,7 +143251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2529), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142023,12 +143301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3163] = 4, + [3188] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1302), 1, + STATE(1311), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2198), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142042,7 +143320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2196), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142092,12 +143370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3236] = 4, + [3261] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1303), 1, + STATE(1312), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(1975), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142111,7 +143389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1706), 49, + ACTIONS(1973), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142161,12 +143439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3309] = 4, + [3334] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1304), 1, + STATE(1313), 1, sym_comment, - ACTIONS(2114), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142180,7 +143458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2112), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142230,12 +143508,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3382] = 4, + [3407] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1305), 1, + STATE(1314), 1, sym_comment, - ACTIONS(2621), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142249,7 +143527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2619), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142299,12 +143577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3455] = 4, + [3480] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1306), 1, + STATE(1315), 1, sym_comment, - ACTIONS(2216), 13, + ACTIONS(2104), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142318,7 +143596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2214), 49, + ACTIONS(2102), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142368,12 +143646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3528] = 4, + [3553] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1307), 1, + STATE(1316), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2206), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142387,7 +143665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2204), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142437,51 +143715,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, - [3601] = 19, + [3626] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, - ACTIONS(2974), 1, - anon_sym_and2, - ACTIONS(3024), 1, - anon_sym_xor2, - STATE(1308), 1, + STATE(1317), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2278), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142490,17 +143734,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 21, + ACTIONS(2276), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142512,7 +143748,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -142521,12 +143784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3704] = 4, + [3699] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1309), 1, + STATE(1318), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(2634), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142540,7 +143803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2258), 49, + ACTIONS(2632), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142590,12 +143853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3777] = 4, + [3772] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1310), 1, + STATE(1319), 1, sym_comment, - ACTIONS(2264), 13, + ACTIONS(2292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142609,7 +143872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2262), 49, + ACTIONS(2290), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142659,12 +143922,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3850] = 4, + [3845] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1311), 1, + STATE(1320), 1, sym_comment, - ACTIONS(2122), 13, + ACTIONS(2296), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142678,7 +143941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2120), 49, + ACTIONS(2294), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142728,17 +143991,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, - [3923] = 4, + [3918] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1312), 1, + ACTIONS(3018), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + ACTIONS(3034), 1, + anon_sym_bit_DASHand2, + ACTIONS(3038), 1, + anon_sym_bit_DASHxor2, + STATE(1321), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(3016), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3020), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3022), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3024), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2553), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142747,9 +144038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, - ts_builtin_sym_end, + ACTIONS(3014), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2551), 24, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142761,33 +144060,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -142797,12 +144072,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, - [3996] = 4, + [4015] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1313), 1, + ACTIONS(2968), 1, + anon_sym_null, + ACTIONS(2972), 1, + sym__newline, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2976), 1, + anon_sym_LPAREN, + ACTIONS(2978), 1, + anon_sym_DOLLAR, + ACTIONS(2980), 1, + anon_sym_LBRACE, + ACTIONS(2982), 1, + anon_sym_DOT_DOT, + ACTIONS(2986), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2988), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2994), 1, + anon_sym_0b, + ACTIONS(2998), 1, + sym_val_date, + ACTIONS(3000), 1, + anon_sym_DQUOTE, + ACTIONS(3002), 1, + anon_sym_SQUOTE, + ACTIONS(3004), 1, + anon_sym_BQUOTE, + ACTIONS(3006), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3008), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3010), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3012), 1, + sym_raw_string_begin, + STATE(1322), 1, + sym_comment, + STATE(2259), 1, + aux_sym__repeat_newline, + STATE(2492), 1, + sym__val_number_decimal, + STATE(2986), 1, + sym_expr_parenthesized, + STATE(3007), 1, + sym_val_variable, + STATE(3048), 1, + sym__inter_single_quotes, + STATE(3049), 1, + sym__inter_double_quotes, + STATE(3092), 1, + sym__val_number, + STATE(3127), 1, + sym_val_bool, + STATE(3180), 1, + sym__unquoted_in_record, + ACTIONS(2966), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2984), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2990), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(2996), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4601), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2970), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(2992), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3476), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2568), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3091), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [4158] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1323), 1, sym_comment, - ACTIONS(2525), 13, + ACTIONS(2164), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142816,7 +144195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2523), 49, + ACTIONS(2162), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142866,45 +144245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4069] = 16, + [4231] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - STATE(1314), 1, + STATE(1324), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2100), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142913,17 +144264,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 24, + ACTIONS(2098), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142935,9 +144278,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -142947,41 +144314,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, - [4166] = 14, + [4304] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(3018), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(3030), 1, anon_sym_PLUS2, - STATE(1315), 1, + STATE(1325), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(3016), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(3020), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(3026), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(3028), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(3032), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(3022), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + ACTIONS(2553), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142990,17 +144352,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 26, + ACTIONS(2551), 38, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -143015,6 +144369,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -143026,12 +144391,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, - [4259] = 4, + [4393] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 1, + ACTIONS(2968), 1, + anon_sym_null, + ACTIONS(2972), 1, + sym__newline, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2976), 1, + anon_sym_LPAREN, + ACTIONS(2978), 1, + anon_sym_DOLLAR, + ACTIONS(2980), 1, + anon_sym_LBRACE, + ACTIONS(2982), 1, + anon_sym_DOT_DOT, + ACTIONS(2986), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2988), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2994), 1, + anon_sym_0b, + ACTIONS(2998), 1, + sym_val_date, + ACTIONS(3000), 1, + anon_sym_DQUOTE, + ACTIONS(3002), 1, + anon_sym_SQUOTE, + ACTIONS(3004), 1, + anon_sym_BQUOTE, + ACTIONS(3006), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3008), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3010), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3012), 1, + sym_raw_string_begin, + STATE(1272), 1, + aux_sym__repeat_newline, + STATE(1326), 1, sym_comment, - ACTIONS(2196), 13, + STATE(2492), 1, + sym__val_number_decimal, + STATE(2986), 1, + sym_expr_parenthesized, + STATE(3007), 1, + sym_val_variable, + STATE(3048), 1, + sym__inter_single_quotes, + STATE(3049), 1, + sym__inter_double_quotes, + STATE(3092), 1, + sym__val_number, + STATE(3127), 1, + sym_val_bool, + STATE(3180), 1, + sym__unquoted_in_record, + ACTIONS(2966), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2984), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2990), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(2996), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4601), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2970), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(2992), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3476), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2568), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3091), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [4536] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1327), 1, + sym_comment, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143045,7 +144514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2194), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143095,17 +144564,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, - [4332] = 4, + [4609] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1317), 1, + ACTIONS(3018), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + STATE(1328), 1, sym_comment, - ACTIONS(2090), 13, - anon_sym_GT2, + ACTIONS(3020), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2553), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143114,7 +144596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2551), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143128,7 +144610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -143147,12 +144628,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -143164,12 +144639,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4405] = 4, + [4694] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1318), 1, + STATE(1329), 1, sym_comment, - ACTIONS(1976), 13, + ACTIONS(2543), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143183,7 +144658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1974), 49, + ACTIONS(2541), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143233,12 +144708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4478] = 4, + [4767] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1319), 1, + STATE(1330), 1, sym_comment, - ACTIONS(2270), 13, + ACTIONS(2575), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143252,7 +144727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2268), 49, + ACTIONS(2573), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143302,12 +144777,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4551] = 4, + [4840] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1320), 1, + STATE(1331), 1, sym_comment, - ACTIONS(1860), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143321,7 +144796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1858), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143371,12 +144846,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4624] = 4, + [4913] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1321), 1, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(169), 1, + anon_sym_DOT_DOT, + ACTIONS(173), 1, + aux_sym_expr_unary_token1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(287), 1, + anon_sym_DASH2, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1928), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1930), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2714), 1, + anon_sym_null, + STATE(704), 1, + sym_expr_parenthesized, + STATE(707), 1, + sym__val_number, + STATE(713), 1, + sym_val_variable, + STATE(749), 1, + sym__inter_single_quotes, + STATE(750), 1, + sym__inter_double_quotes, + STATE(948), 1, + sym__expr_unary_minus, + STATE(1332), 1, sym_comment, - ACTIONS(2090), 13, + STATE(1861), 1, + sym__val_number_decimal, + STATE(2253), 1, + sym__expr_binary_expression, + STATE(4887), 1, + sym__expression, + ACTIONS(179), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1932), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(947), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(946), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [5052] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1333), 1, + sym_comment, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143390,7 +144967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143440,16 +145017,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, - [4697] = 4, + [5125] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1322), 1, + STATE(1334), 1, sym_comment, - ACTIONS(2138), 13, - anon_sym_GT2, + ACTIONS(3020), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2553), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -143459,7 +145043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2134), 49, + ACTIONS(2551), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143492,10 +145076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -143509,36 +145089,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, - [4770] = 12, + [5204] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1323), 1, + STATE(1335), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2599), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143547,7 +145108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 38, + ACTIONS(2597), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143561,6 +145122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -143571,10 +145133,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -143586,12 +145158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4859] = 4, + [5277] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1324), 1, + STATE(1336), 1, sym_comment, - ACTIONS(2200), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143605,7 +145177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2198), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143655,12 +145227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4932] = 4, + [5350] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1325), 1, + STATE(1337), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2250), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143674,7 +145246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2254), 49, + ACTIONS(2248), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143724,12 +145296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5005] = 4, + [5423] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1326), 1, + STATE(1338), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(1864), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143743,7 +145315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2254), 49, + ACTIONS(1862), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143793,12 +145365,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5078] = 4, + [5496] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1327), 1, + STATE(1339), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143812,7 +145384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2252), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143862,7 +145434,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, - [5151] = 37, + [5569] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1340), 1, + sym_comment, + ACTIONS(2112), 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(2110), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5642] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(157), 1, @@ -143893,33 +145534,33 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(287), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1004), 1, anon_sym_DOLLAR, - ACTIONS(1926), 1, - aux_sym__val_number_decimal_token1, ACTIONS(1928), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1930), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, + ACTIONS(2714), 1, anon_sym_null, - STATE(694), 1, + STATE(704), 1, + sym_expr_parenthesized, + STATE(707), 1, sym__val_number, - STATE(697), 1, + STATE(713), 1, sym_val_variable, - STATE(700), 1, - sym_expr_parenthesized, - STATE(743), 1, + STATE(749), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(750), 1, sym__inter_double_quotes, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(1328), 1, + STATE(1341), 1, sym_comment, - STATE(1830), 1, + STATE(1861), 1, sym__val_number_decimal, - STATE(2215), 1, + STATE(2253), 1, sym__expr_binary_expression, - STATE(4707), 1, + STATE(4919), 1, sym__expression, ACTIONS(179), 2, anon_sym_DOT_DOT_EQ, @@ -143927,18 +145568,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1930), 2, + ACTIONS(1932), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(944), 4, + STATE(947), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -143950,7 +145591,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(943), 13, + STATE(946), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -143964,134 +145605,17 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5290] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1329), 1, - sym_comment, - STATE(2226), 1, - aux_sym__repeat_newline, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2866), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2969), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3231), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [5433] = 10, + [5781] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1330), 1, + STATE(1342), 1, sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2535), 10, + ACTIONS(2258), 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, @@ -144100,7 +145624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 42, + ACTIONS(2256), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144114,6 +145638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -144132,6 +145657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -144143,116 +145674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5518] = 39, + [5854] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1291), 1, - aux_sym__repeat_newline, - STATE(1331), 1, - sym_comment, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2866), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2969), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3231), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [5661] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1332), 1, + STATE(1343), 1, sym_comment, - ACTIONS(2539), 13, + ACTIONS(2662), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144266,7 +145693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2537), 49, + ACTIONS(2660), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144316,12 +145743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5734] = 4, + [5927] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1333), 1, + STATE(1344), 1, sym_comment, - ACTIONS(2617), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144335,7 +145762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2615), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144385,12 +145812,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, - [5807] = 4, + [6000] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1334), 1, + ACTIONS(2968), 1, + anon_sym_null, + ACTIONS(2972), 1, + sym__newline, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2976), 1, + anon_sym_LPAREN, + ACTIONS(2978), 1, + anon_sym_DOLLAR, + ACTIONS(2980), 1, + anon_sym_LBRACE, + ACTIONS(2982), 1, + anon_sym_DOT_DOT, + ACTIONS(2986), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2988), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2994), 1, + anon_sym_0b, + ACTIONS(2998), 1, + sym_val_date, + ACTIONS(3000), 1, + anon_sym_DQUOTE, + ACTIONS(3002), 1, + anon_sym_SQUOTE, + ACTIONS(3004), 1, + anon_sym_BQUOTE, + ACTIONS(3006), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3008), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3010), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3012), 1, + sym_raw_string_begin, + STATE(1322), 1, + aux_sym__repeat_newline, + STATE(1345), 1, sym_comment, - ACTIONS(2090), 13, + STATE(2492), 1, + sym__val_number_decimal, + STATE(2935), 1, + sym_expr_parenthesized, + STATE(3007), 1, + sym_val_variable, + STATE(3048), 1, + sym__inter_single_quotes, + STATE(3049), 1, + sym__inter_double_quotes, + STATE(3092), 1, + sym__val_number, + STATE(3117), 1, + sym__unquoted_in_record, + STATE(3127), 1, + sym_val_bool, + ACTIONS(2966), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2984), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2990), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(2996), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4601), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2970), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(2992), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3395), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2568), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3091), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [6143] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1346), 1, + sym_comment, + ACTIONS(2666), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144404,7 +145935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2664), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144454,23 +145985,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, - [5880] = 7, + [6216] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1335), 1, + STATE(1347), 1, sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(3026), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 11, + ACTIONS(2553), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -144480,7 +146007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 45, + ACTIONS(2551), 47, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144513,6 +146040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -144526,12 +146055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5959] = 4, + [6291] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1336), 1, + STATE(1348), 1, sym_comment, - ACTIONS(2228), 13, + ACTIONS(2610), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144545,7 +146074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2226), 49, + ACTIONS(2608), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144595,257 +146124,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, - [6032] = 4, + [6364] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(1337), 1, + ACTIONS(3018), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + ACTIONS(3034), 1, + anon_sym_bit_DASHand2, + ACTIONS(3038), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3040), 1, + anon_sym_bit_DASHor2, + STATE(1349), 1, sym_comment, - ACTIONS(2232), 13, + ACTIONS(3016), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3020), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2230), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(3026), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - 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, - [6105] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_DOT_DOT, - ACTIONS(173), 1, - aux_sym_expr_unary_token1, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(195), 1, - sym_val_date, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(287), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(1926), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1928), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, - anon_sym_null, - STATE(694), 1, - sym__val_number, - STATE(697), 1, - sym_val_variable, - STATE(700), 1, - sym_expr_parenthesized, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(945), 1, - sym__expr_unary_minus, - STATE(1338), 1, - sym_comment, - STATE(1830), 1, - sym__val_number_decimal, - STATE(2215), 1, - sym__expr_binary_expression, - STATE(4718), 1, - sym__expression, - ACTIONS(179), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1930), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(944), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(943), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [6244] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1339), 1, - sym_comment, - ACTIONS(2236), 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(2234), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(3022), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3024), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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, - [6317] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1340), 1, - sym_comment, - ACTIONS(2240), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2553), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144854,24 +146173,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(2238), 49, - ts_builtin_sym_end, + ACTIONS(3014), 8, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -144879,53 +146182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6390] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1341), 1, - sym_comment, - ACTIONS(2244), 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(2242), 49, + ACTIONS(2551), 23, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -144937,34 +146195,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -144976,9 +146209,9 @@ static const uint16_t ts_small_parse_table[] = { [6463] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1342), 1, + STATE(1350), 1, sym_comment, - ACTIONS(2248), 13, + ACTIONS(2262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144992,7 +146225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2246), 49, + ACTIONS(2260), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145045,9 +146278,9 @@ static const uint16_t ts_small_parse_table[] = { [6536] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1343), 1, + STATE(1351), 1, sym_comment, - ACTIONS(2252), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145061,7 +146294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2250), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145114,9 +146347,9 @@ static const uint16_t ts_small_parse_table[] = { [6609] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1344), 1, + STATE(1352), 1, sym_comment, - ACTIONS(2569), 13, + ACTIONS(2266), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145130,7 +146363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2567), 49, + ACTIONS(2264), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145183,9 +146416,9 @@ static const uint16_t ts_small_parse_table[] = { [6682] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1345), 1, + STATE(1353), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2202), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145199,7 +146432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2200), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145258,87 +146491,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1936), 1, aux_sym_unquoted_token1, - ACTIONS(2664), 1, + ACTIONS(2682), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2684), 1, anon_sym_COLON2, - ACTIONS(2680), 1, + ACTIONS(2692), 1, anon_sym_LBRACK, - ACTIONS(2682), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2696), 1, anon_sym_DOLLAR, - ACTIONS(2686), 1, + ACTIONS(2698), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3050), 1, anon_sym_null, - ACTIONS(3032), 1, + ACTIONS(3054), 1, anon_sym_DOT_DOT, - ACTIONS(3040), 1, + ACTIONS(3062), 1, sym_val_date, - STATE(694), 1, + STATE(707), 1, sym__val_number, - STATE(743), 1, + STATE(749), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(750), 1, sym__inter_double_quotes, - STATE(1346), 1, + STATE(1354), 1, sym_comment, - STATE(3710), 1, + STATE(3807), 1, sym__val_number_decimal, - STATE(4207), 1, + STATE(4227), 1, sym_val_variable, - STATE(4255), 1, + STATE(4422), 1, sym_expr_parenthesized, - STATE(4677), 1, + STATE(4816), 1, sym_val_bool, - STATE(4932), 1, + STATE(5079), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3026), 2, + ACTIONS(3048), 2, anon_sym_true, anon_sym_false, - ACTIONS(3034), 2, + ACTIONS(3056), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, + ACTIONS(3058), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, + ACTIONS(3060), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - STATE(4931), 2, + STATE(5078), 2, sym_val_range, sym__value, - ACTIONS(2555), 3, + STATE(5176), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2561), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3030), 3, + ACTIONS(3052), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(943), 12, + STATE(946), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145356,99 +146589,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1936), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2865), 1, anon_sym_null, - ACTIONS(2874), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(2876), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, + ACTIONS(2879), 1, anon_sym__, - ACTIONS(2886), 1, + ACTIONS(2881), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + ACTIONS(2885), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(2887), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, + ACTIONS(2891), 1, sym_val_date, - STATE(694), 1, + STATE(707), 1, sym__val_number, - STATE(1347), 1, + STATE(1355), 1, sym_comment, - STATE(1360), 1, + STATE(1378), 1, aux_sym__ctrl_match_body_repeat1, - STATE(2241), 1, + STATE(2270), 1, aux_sym__types_body_repeat1, - STATE(3487), 1, + STATE(3636), 1, sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, + STATE(3808), 1, sym_val_variable, - STATE(3762), 1, + STATE(3865), 1, + sym_expr_parenthesized, + STATE(4028), 1, sym__match_pattern, - STATE(4016), 1, + STATE(4169), 1, sym_val_bool, - STATE(4285), 1, + STATE(4471), 1, sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, + STATE(4483), 1, sym__match_pattern_list, - STATE(5173), 1, + STATE(4503), 1, + sym_unquoted, + STATE(5194), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(2863), 2, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, + ACTIONS(2883), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + ACTIONS(2889), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + STATE(4475), 2, sym__match_pattern_value, sym_val_range, - STATE(4549), 2, + STATE(4679), 2, sym_match_arm, sym_default_arm, - STATE(4884), 2, + STATE(5176), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2872), 3, + ACTIONS(2867), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4489), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -145457,220 +146690,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [7043] = 37, - ACTIONS(103), 1, + [7043] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2680), 1, - anon_sym_LBRACK, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(3064), 1, + sym__newline, + STATE(1356), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1971), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(2686), 1, - anon_sym_LBRACE, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3028), 1, - anon_sym_null, - ACTIONS(3032), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3040), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(1348), 1, - sym_comment, - STATE(3710), 1, - sym__val_number_decimal, - STATE(4207), 1, - sym_val_variable, - STATE(4232), 1, - sym_expr_parenthesized, - STATE(4677), 1, - sym_val_bool, - STATE(4986), 1, - sym_unquoted, - ACTIONS(193), 2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3026), 2, + ACTIONS(1966), 48, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3034), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4879), 2, - sym_val_range, - sym__value, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2555), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3030), 3, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(943), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [7180] = 37, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2680), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(2682), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, - anon_sym_DOLLAR, - ACTIONS(2686), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, - anon_sym_null, - ACTIONS(3032), 1, - anon_sym_DOT_DOT, - ACTIONS(3040), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(1349), 1, - sym_comment, - STATE(3710), 1, - sym__val_number_decimal, - STATE(4207), 1, - sym_val_variable, - STATE(4255), 1, - sym_expr_parenthesized, - STATE(4677), 1, - sym_val_bool, - STATE(4932), 1, - sym_unquoted, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3034), 2, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - STATE(4931), 2, - sym_val_range, - sym__value, - ACTIONS(2555), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3030), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(943), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [7317] = 7, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [7116] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, - sym_comment, - STATE(1357), 1, - aux_sym__block_body_repeat1, - ACTIONS(153), 2, + ACTIONS(3071), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3046), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3042), 10, + STATE(1357), 2, + sym_comment, + aux_sym__block_body_repeat1, + ACTIONS(3067), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -145681,7 +146778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3069), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -145709,7 +146806,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -145727,94 +146826,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7394] = 37, + [7189] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, + ACTIONS(1396), 1, anon_sym_LPAREN, - ACTIONS(1390), 1, + ACTIONS(1400), 1, anon_sym_DOLLAR, - ACTIONS(1406), 1, + ACTIONS(1416), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(1418), 1, + ACTIONS(1428), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1496), 1, + ACTIONS(1482), 1, anon_sym_LBRACE, - ACTIONS(1578), 1, + ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_DOT_DOT, - ACTIONS(3058), 1, + ACTIONS(3084), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, + ACTIONS(3086), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, + ACTIONS(3090), 1, sym_val_date, - ACTIONS(3066), 1, + ACTIONS(3092), 1, aux_sym__unquoted_in_record_token1, - STATE(1351), 1, + STATE(1358), 1, sym_comment, - STATE(3418), 1, + STATE(3640), 1, sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, STATE(3965), 1, + sym_val_variable, + STATE(4105), 1, sym_expr_parenthesized, - STATE(4130), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4173), 1, + STATE(4220), 1, sym__unquoted_in_record, - STATE(4452), 1, + STATE(4386), 1, + sym__val_number, + STATE(4421), 1, + sym_val_bool, + STATE(4680), 1, sym__inter_single_quotes, - STATE(4453), 1, + STATE(4683), 1, sym__inter_double_quotes, - ACTIONS(1408), 2, + ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3074), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3082), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + ACTIONS(3088), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4485), 2, + STATE(4595), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1404), 3, + ACTIONS(1414), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, + ACTIONS(3078), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4636), 3, + STATE(4889), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3505), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4536), 12, + STATE(4538), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145827,62 +146926,160 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7531] = 37, + [7326] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, + ACTIONS(1396), 1, anon_sym_LPAREN, - ACTIONS(1390), 1, + ACTIONS(1400), 1, anon_sym_DOLLAR, - ACTIONS(1406), 1, + ACTIONS(1416), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(1418), 1, + ACTIONS(1428), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1496), 1, + ACTIONS(1482), 1, anon_sym_LBRACE, - ACTIONS(1578), 1, + ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_DOT_DOT, - ACTIONS(3058), 1, + ACTIONS(3084), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, + ACTIONS(3086), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, + ACTIONS(3090), 1, sym_val_date, - ACTIONS(3066), 1, + ACTIONS(3092), 1, aux_sym__unquoted_in_record_token1, - STATE(1352), 1, + STATE(1359), 1, sym_comment, - STATE(3418), 1, + STATE(3640), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(3965), 1, sym_val_variable, - STATE(4005), 1, + STATE(4187), 1, sym_expr_parenthesized, - STATE(4130), 1, + STATE(4278), 1, + sym__unquoted_in_record, + STATE(4386), 1, + sym__val_number, + STATE(4421), 1, sym_val_bool, - STATE(4165), 1, + STATE(4680), 1, + sym__inter_single_quotes, + STATE(4683), 1, + sym__inter_double_quotes, + ACTIONS(1418), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3074), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3082), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3088), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4595), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1414), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3078), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(4835), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4538), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [7463] = 37, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(1936), 1, + aux_sym_unquoted_token1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2692), 1, + anon_sym_LBRACK, + ACTIONS(2694), 1, + anon_sym_LPAREN, + ACTIONS(2696), 1, + anon_sym_DOLLAR, + ACTIONS(2698), 1, + anon_sym_LBRACE, + ACTIONS(3050), 1, + anon_sym_null, + ACTIONS(3054), 1, + anon_sym_DOT_DOT, + ACTIONS(3062), 1, + sym_val_date, + STATE(707), 1, sym__val_number, - STATE(4256), 1, - sym__unquoted_in_record, - STATE(4452), 1, + STATE(749), 1, sym__inter_single_quotes, - STATE(4453), 1, + STATE(750), 1, sym__inter_double_quotes, - ACTIONS(1408), 2, + STATE(1360), 1, + sym_comment, + STATE(3807), 1, + sym__val_number_decimal, + STATE(4227), 1, + sym_val_variable, + STATE(4422), 1, + sym_expr_parenthesized, + STATE(4816), 1, + sym_val_bool, + STATE(5079), 1, + sym_unquoted, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, ACTIONS(3048), 2, @@ -145891,13 +147088,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3056), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + ACTIONS(3058), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3060), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4485), 2, + STATE(5078), 2, + sym_val_range, + sym__value, + STATE(5176), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1404), 3, + ACTIONS(2561), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -145905,16 +147108,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4717), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3505), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4536), 12, + STATE(946), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145927,94 +147126,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7668] = 37, + [7600] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, + ACTIONS(1396), 1, anon_sym_LPAREN, - ACTIONS(1390), 1, + ACTIONS(1400), 1, anon_sym_DOLLAR, - ACTIONS(1406), 1, + ACTIONS(1416), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(1418), 1, + ACTIONS(1428), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1496), 1, + ACTIONS(1482), 1, anon_sym_LBRACE, - ACTIONS(1578), 1, + ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_DOT_DOT, - ACTIONS(3058), 1, + ACTIONS(3084), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, + ACTIONS(3086), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, + ACTIONS(3090), 1, sym_val_date, - ACTIONS(3066), 1, + ACTIONS(3092), 1, aux_sym__unquoted_in_record_token1, - STATE(1353), 1, + STATE(1361), 1, sym_comment, - STATE(3418), 1, + STATE(3640), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(3965), 1, sym_val_variable, - STATE(3976), 1, + STATE(4154), 1, sym_expr_parenthesized, - STATE(4130), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4184), 1, + STATE(4249), 1, sym__unquoted_in_record, - STATE(4452), 1, + STATE(4386), 1, + sym__val_number, + STATE(4421), 1, + sym_val_bool, + STATE(4680), 1, sym__inter_single_quotes, - STATE(4453), 1, + STATE(4683), 1, sym__inter_double_quotes, - ACTIONS(1408), 2, + ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3074), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3082), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + ACTIONS(3088), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4485), 2, + STATE(4595), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1404), 3, + ACTIONS(1414), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, + ACTIONS(3078), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4656), 3, + STATE(4788), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3505), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4536), 12, + STATE(4538), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -146027,20 +147226,20 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7805] = 7, + [7737] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1354), 1, - sym_comment, STATE(1357), 1, aux_sym__block_body_repeat1, + STATE(1362), 1, + sym_comment, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3068), 2, + ACTIONS(3098), 2, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3042), 10, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146051,7 +147250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3096), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146097,88 +147296,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7882] = 5, - ACTIONS(3), 1, + [7814] = 37, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3070), 1, - sym__newline, - STATE(1355), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1960), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(1936), 1, + aux_sym_unquoted_token1, + ACTIONS(2692), 1, + anon_sym_LBRACK, + ACTIONS(2694), 1, + anon_sym_LPAREN, + ACTIONS(2696), 1, anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(2698), 1, + anon_sym_LBRACE, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3050), 1, + anon_sym_null, + ACTIONS(3054), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(3062), 1, + sym_val_date, + STATE(707), 1, + sym__val_number, + STATE(749), 1, + sym__inter_single_quotes, + STATE(750), 1, + sym__inter_double_quotes, + STATE(1363), 1, + sym_comment, + STATE(3807), 1, + sym__val_number_decimal, + STATE(4227), 1, + sym_val_variable, + STATE(4460), 1, + sym_expr_parenthesized, + STATE(4816), 1, + sym_val_bool, + STATE(5197), 1, + sym_unquoted, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1955), 48, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(3048), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(3056), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + ACTIONS(3058), 2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3060), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(5176), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + STATE(5354), 2, + sym_val_range, + sym__value, + ACTIONS(2561), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [7955] = 7, + ACTIONS(3052), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(946), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [7951] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1356), 1, - sym_comment, STATE(1357), 1, aux_sym__block_body_repeat1, + STATE(1364), 1, + sym_comment, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3073), 2, + ACTIONS(3100), 2, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3042), 10, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146189,7 +147420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3096), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146235,16 +147466,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8032] = 5, + [8028] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3079), 2, + STATE(1357), 1, + aux_sym__block_body_repeat1, + STATE(1365), 1, + sym_comment, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - STATE(1357), 2, - sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3075), 10, + ACTIONS(3102), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146255,7 +147490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3077), 47, + ACTIONS(3096), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146283,9 +147518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146303,80 +147536,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8105] = 6, - ACTIONS(103), 1, + [8105] = 36, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, - anon_sym_POUND_BANG, - ACTIONS(2932), 1, - sym__newline, - STATE(1358), 1, - sym_comment, - ACTIONS(3084), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(810), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, + ACTIONS(832), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3082), 47, + ACTIONS(854), 1, + aux_sym_unquoted_token1, + ACTIONS(856), 1, sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(1250), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3106), 1, anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_SEMI, - anon_sym_AT, + ACTIONS(3110), 1, anon_sym_LBRACK, + ACTIONS(3112), 1, anon_sym_LPAREN, + ACTIONS(3114), 1, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3116), 1, + anon_sym_DOT_DOT, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3122), 1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(3128), 1, sym_val_date, + ACTIONS(3130), 1, anon_sym_DQUOTE, + ACTIONS(3132), 1, anon_sym_SQUOTE, + ACTIONS(3134), 1, anon_sym_BQUOTE, + ACTIONS(3136), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3138), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8179] = 4, + STATE(1366), 1, + sym_comment, + STATE(3072), 1, + sym_unquoted, + STATE(3094), 1, + sym__inter_single_quotes, + STATE(3095), 1, + sym__inter_double_quotes, + STATE(3192), 1, + sym__val_number, + STATE(3700), 1, + sym__val_number_decimal, + STATE(4092), 1, + sym_val_bool, + ACTIONS(834), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3104), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3120), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3124), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3071), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5092), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3108), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3126), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2483), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3023), 13, + sym_val_nothing, + sym_val_variable, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [8239] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1359), 1, + ACTIONS(2146), 1, + anon_sym_PIPE, + STATE(1367), 1, sym_comment, - ACTIONS(2098), 10, + ACTIONS(2955), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146387,7 +147652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2096), 49, + ACTIONS(2952), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146414,7 +147679,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -146437,201 +147701,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8249] = 40, + [8311] = 40, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1936), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2865), 1, anon_sym_null, - ACTIONS(2876), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, + ACTIONS(2879), 1, anon_sym__, - ACTIONS(2886), 1, + ACTIONS(2881), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + ACTIONS(2885), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(2887), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, + ACTIONS(2891), 1, sym_val_date, - STATE(694), 1, + STATE(707), 1, sym__val_number, - STATE(1360), 1, + STATE(1368), 1, sym_comment, - STATE(1361), 1, + STATE(1380), 1, aux_sym__ctrl_match_body_repeat1, - STATE(3487), 1, + STATE(3636), 1, sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, + STATE(3808), 1, sym_val_variable, - STATE(3762), 1, + STATE(3865), 1, + sym_expr_parenthesized, + STATE(4028), 1, sym__match_pattern, - STATE(4016), 1, + STATE(4169), 1, sym_val_bool, - STATE(4285), 1, + STATE(4471), 1, sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, + STATE(4483), 1, sym__match_pattern_list, - STATE(5173), 1, + STATE(4503), 1, + sym_unquoted, + STATE(5194), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(2863), 2, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, + ACTIONS(2883), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + ACTIONS(2889), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + STATE(4475), 2, sym__match_pattern_value, sym_val_range, - STATE(4608), 2, + STATE(4679), 2, sym_match_arm, sym_default_arm, - STATE(4884), 2, + STATE(5176), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2872), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [8391] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3089), 1, - anon_sym_null, - ACTIONS(3095), 1, - anon_sym_LBRACK, - ACTIONS(3098), 1, - anon_sym_LPAREN, - ACTIONS(3101), 1, - anon_sym_DOLLAR, - ACTIONS(3104), 1, - anon_sym_LBRACE, - ACTIONS(3107), 1, - anon_sym__, - ACTIONS(3110), 1, - anon_sym_DOT_DOT, - ACTIONS(3116), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3119), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3128), 1, - anon_sym_0b, - ACTIONS(3134), 1, - sym_val_date, - ACTIONS(3137), 1, - anon_sym_DQUOTE, - ACTIONS(3140), 1, - anon_sym_SQUOTE, - ACTIONS(3143), 1, - anon_sym_BQUOTE, - ACTIONS(3146), 1, - aux_sym_unquoted_token1, - ACTIONS(3149), 1, - sym_raw_string_begin, - STATE(694), 1, - sym__val_number, - STATE(3487), 1, - sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, - sym_val_variable, - STATE(3762), 1, - sym__match_pattern, - STATE(4016), 1, - sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(5173), 1, - sym_match_pattern, - ACTIONS(3086), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3113), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3122), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3131), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1361), 2, - sym_comment, - aux_sym__ctrl_match_body_repeat1, - STATE(4299), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4785), 2, - sym_match_arm, - sym_default_arm, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3092), 3, + ACTIONS(2867), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3125), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4489), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -146640,117 +147803,20 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [8531] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3154), 1, - anon_sym_null, - ACTIONS(3158), 1, - anon_sym_LBRACK, - ACTIONS(3160), 1, - anon_sym_LPAREN, - ACTIONS(3162), 1, - anon_sym_DOLLAR, - ACTIONS(3164), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_DOT_DOT, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3172), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3174), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3178), 1, - sym_val_date, - ACTIONS(3180), 1, - aux_sym_unquoted_token1, - STATE(1362), 1, - sym_comment, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(3062), 1, - sym__val_number, - STATE(3544), 1, - sym__val_number_decimal, - STATE(4301), 1, - sym_val_bool, - STATE(4466), 1, - sym_unquoted, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3152), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3170), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3176), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4463), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(4946), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3156), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 13, - sym_val_nothing, - sym_val_variable, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [8665] = 7, + [8453] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3186), 1, + ACTIONS(2563), 1, sym__newline, - ACTIONS(3189), 1, + ACTIONS(3144), 1, anon_sym_SEMI, - STATE(4404), 1, - aux_sym__repeat_newline, - STATE(1363), 2, + STATE(1369), 1, sym_comment, + STATE(1383), 1, aux_sym__parenthesized_body_repeat1, - ACTIONS(3182), 10, + STATE(1391), 1, + aux_sym__repeat_newline, + ACTIONS(3140), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146761,7 +147827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3184), 45, + ACTIONS(3142), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146807,20 +147873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8741] = 8, + [8531] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2557), 1, + ACTIONS(3098), 1, + ts_builtin_sym_end, + STATE(1370), 1, + sym_comment, + STATE(1374), 1, + aux_sym__block_body_repeat1, + ACTIONS(55), 2, sym__newline, - ACTIONS(3196), 1, anon_sym_SEMI, - STATE(1363), 1, - aux_sym__parenthesized_body_repeat1, - STATE(1364), 1, - sym_comment, - STATE(1383), 1, - aux_sym__repeat_newline, - ACTIONS(3192), 10, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146831,7 +147896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3194), 45, + ACTIONS(3096), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146877,110 +147942,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8819] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(799), 1, - anon_sym_DOLLAR, - ACTIONS(815), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(821), 1, - anon_sym_0b, - ACTIONS(841), 1, - aux_sym_unquoted_token1, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3200), 1, - anon_sym_null, - ACTIONS(3204), 1, - anon_sym_LBRACK, - ACTIONS(3206), 1, - anon_sym_LPAREN, - ACTIONS(3208), 1, - anon_sym_LBRACE, - ACTIONS(3210), 1, - anon_sym_DOT_DOT, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3216), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3222), 1, - sym_val_date, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(1365), 1, - sym_comment, - STATE(2448), 1, - sym__val_number_decimal, - STATE(2695), 1, - sym_val_bool, - STATE(2956), 1, - sym_unquoted, - STATE(3023), 1, - sym__val_number, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - ACTIONS(823), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3198), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3214), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3218), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3060), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(4992), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3202), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3220), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3021), 13, - sym_val_nothing, - sym_val_variable, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [8953] = 4, + [8607] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1366), 1, + STATE(1371), 1, sym_comment, - ACTIONS(3084), 10, + ACTIONS(3146), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146991,7 +147958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 49, + ACTIONS(3148), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147041,19 +148008,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9023] = 7, + [8677] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3100), 1, ts_builtin_sym_end, - STATE(1367), 1, + STATE(1372), 1, sym_comment, - STATE(1370), 1, + STATE(1374), 1, aux_sym__block_body_repeat1, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3042), 10, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147064,7 +148031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3096), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147110,19 +148077,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9099] = 7, + [8753] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3073), 1, - ts_builtin_sym_end, - STATE(1368), 1, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(2994), 1, + anon_sym_0b, + ACTIONS(3006), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3008), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3152), 1, + anon_sym_null, + ACTIONS(3156), 1, + anon_sym_LBRACK, + ACTIONS(3158), 1, + anon_sym_LPAREN, + ACTIONS(3160), 1, + anon_sym_DOLLAR, + ACTIONS(3162), 1, + anon_sym_LBRACE, + ACTIONS(3164), 1, + anon_sym_DOT_DOT, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3170), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3172), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3176), 1, + sym_val_date, + ACTIONS(3178), 1, + aux_sym_unquoted_token1, + STATE(1373), 1, sym_comment, - STATE(1370), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, + STATE(3048), 1, + sym__inter_single_quotes, + STATE(3049), 1, + sym__inter_double_quotes, + STATE(3092), 1, + sym__val_number, + STATE(3714), 1, + sym__val_number_decimal, + STATE(4217), 1, + sym_val_bool, + STATE(4716), 1, + sym_unquoted, + ACTIONS(2996), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3150), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3168), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3174), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4712), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5373), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2992), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3154), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3091), 13, + sym_val_nothing, + sym_val_variable, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [8887] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3180), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3042), 10, + STATE(1374), 2, + sym_comment, + aux_sym__block_body_repeat1, + ACTIONS(3067), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147133,8 +148195,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3069), 46, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147179,14 +148242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9175] = 5, - ACTIONS(3), 1, + [8959] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2096), 1, - anon_sym_PIPE, - STATE(1369), 1, + ACTIONS(2146), 1, + anon_sym_POUND_BANG, + ACTIONS(2952), 1, + sym__newline, + STATE(1375), 1, sym_comment, - ACTIONS(2935), 10, + ACTIONS(3146), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147197,8 +148262,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2932), 48, + ACTIONS(3148), 47, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147222,13 +148288,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147246,16 +148310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9247] = 5, + [9033] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3234), 2, - sym__newline, - anon_sym_SEMI, - STATE(1370), 2, + STATE(1376), 1, sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3075), 10, + ACTIONS(2148), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147266,9 +148326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3077), 46, + ACTIONS(2146), 49, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147292,10 +148351,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147313,19 +148376,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9319] = 7, + [9103] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(810), 1, + anon_sym_DOLLAR, + ACTIONS(826), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(832), 1, + anon_sym_0b, + ACTIONS(854), 1, + aux_sym_unquoted_token1, + ACTIONS(856), 1, + sym_raw_string_begin, + ACTIONS(3110), 1, + anon_sym_LBRACK, + ACTIONS(3112), 1, + anon_sym_LPAREN, + ACTIONS(3114), 1, + anon_sym_LBRACE, + ACTIONS(3116), 1, + anon_sym_DOT_DOT, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3130), 1, + anon_sym_DQUOTE, + ACTIONS(3132), 1, + anon_sym_SQUOTE, + ACTIONS(3134), 1, + anon_sym_BQUOTE, + ACTIONS(3136), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3138), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3185), 1, + anon_sym_null, + ACTIONS(3189), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3193), 1, + sym_val_date, + STATE(1377), 1, + sym_comment, + STATE(2493), 1, + sym__val_number_decimal, + STATE(2794), 1, + sym_val_bool, + STATE(3072), 1, + sym_unquoted, + STATE(3094), 1, + sym__inter_single_quotes, + STATE(3095), 1, + sym__inter_double_quotes, + STATE(3192), 1, + sym__val_number, + ACTIONS(834), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3120), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3183), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3191), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3071), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5092), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3126), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3187), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2483), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3023), 13, + sym_val_nothing, + sym_val_variable, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [9237] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(1936), 1, + aux_sym_unquoted_token1, + ACTIONS(2694), 1, + anon_sym_LPAREN, + ACTIONS(2865), 1, + anon_sym_null, + ACTIONS(2871), 1, + anon_sym_LBRACK, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + anon_sym__, + ACTIONS(2881), 1, + anon_sym_DOT_DOT, + ACTIONS(2885), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2887), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2891), 1, + sym_val_date, + STATE(707), 1, + sym__val_number, + STATE(1378), 1, + sym_comment, + STATE(1380), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(3636), 1, + sym__val_number_decimal, + STATE(3808), 1, + sym_val_variable, + STATE(3865), 1, + sym_expr_parenthesized, + STATE(4028), 1, + sym__match_pattern, + STATE(4169), 1, + sym_val_bool, + STATE(4471), 1, + sym__match_pattern_expression, + STATE(4483), 1, + sym__match_pattern_list, + STATE(4503), 1, + sym_unquoted, + STATE(5194), 1, + sym_match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2863), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2883), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2889), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4475), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4729), 2, + sym_match_arm, + sym_default_arm, + STATE(5176), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(189), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(2867), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4489), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [9379] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3102), 1, ts_builtin_sym_end, - STATE(1370), 1, + STATE(1374), 1, aux_sym__block_body_repeat1, - STATE(1371), 1, + STATE(1379), 1, sym_comment, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3042), 10, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147336,7 +148599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3096), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147382,100 +148645,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9395] = 40, + [9455] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(3198), 1, anon_sym_null, - ACTIONS(2876), 1, + ACTIONS(3204), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(3207), 1, + anon_sym_LPAREN, + ACTIONS(3210), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(3213), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, + ACTIONS(3216), 1, anon_sym__, - ACTIONS(2886), 1, + ACTIONS(3219), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + ACTIONS(3225), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(3228), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, + ACTIONS(3237), 1, + anon_sym_0b, + ACTIONS(3243), 1, sym_val_date, - STATE(694), 1, + ACTIONS(3246), 1, + anon_sym_DQUOTE, + ACTIONS(3249), 1, + anon_sym_SQUOTE, + ACTIONS(3252), 1, + anon_sym_BQUOTE, + ACTIONS(3255), 1, + aux_sym_unquoted_token1, + ACTIONS(3258), 1, + sym_raw_string_begin, + STATE(707), 1, sym__val_number, - STATE(1361), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(1372), 1, - sym_comment, - STATE(3487), 1, + STATE(3636), 1, sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, + STATE(3808), 1, sym_val_variable, - STATE(3762), 1, + STATE(3865), 1, + sym_expr_parenthesized, + STATE(4028), 1, sym__match_pattern, - STATE(4016), 1, + STATE(4169), 1, sym_val_bool, - STATE(4285), 1, + STATE(4471), 1, sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, + STATE(4483), 1, sym__match_pattern_list, - STATE(5173), 1, + STATE(4503), 1, + sym_unquoted, + STATE(5194), 1, sym_match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(3195), 2, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, + ACTIONS(3222), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + ACTIONS(3231), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + ACTIONS(3240), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1380), 2, + sym_comment, + aux_sym__ctrl_match_body_repeat1, + STATE(4475), 2, sym__match_pattern_value, sym_val_range, - STATE(4549), 2, + STATE(4789), 2, sym_match_arm, sym_default_arm, - STATE(4884), 2, + STATE(5176), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(2872), 3, + ACTIONS(3201), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + ACTIONS(3234), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4489), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -147484,91 +148746,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [9537] = 36, + [9595] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(914), 1, - anon_sym_DOLLAR, - ACTIONS(930), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(936), 1, - anon_sym_0b, - ACTIONS(956), 1, - aux_sym_unquoted_token1, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(3239), 1, + ACTIONS(3263), 1, anon_sym_null, - ACTIONS(3243), 1, + ACTIONS(3267), 1, anon_sym_LBRACK, - ACTIONS(3245), 1, + ACTIONS(3269), 1, anon_sym_LPAREN, - ACTIONS(3247), 1, + ACTIONS(3271), 1, + anon_sym_DOLLAR, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3249), 1, + ACTIONS(3275), 1, anon_sym_DOT_DOT, - ACTIONS(3251), 1, + ACTIONS(3277), 1, anon_sym_LPAREN2, - ACTIONS(3255), 1, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3283), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3261), 1, + ACTIONS(3289), 1, + anon_sym_0b, + ACTIONS(3293), 1, sym_val_date, - ACTIONS(3263), 1, + ACTIONS(3295), 1, anon_sym_DQUOTE, - ACTIONS(3265), 1, + ACTIONS(3297), 1, anon_sym_SQUOTE, - ACTIONS(3267), 1, + ACTIONS(3299), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, + ACTIONS(3301), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, + ACTIONS(3303), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1373), 1, + ACTIONS(3305), 1, + aux_sym_unquoted_token1, + ACTIONS(3307), 1, + sym_raw_string_begin, + STATE(1381), 1, sym_comment, - STATE(2469), 1, + STATE(1863), 1, sym__val_number_decimal, - STATE(2876), 1, + STATE(2144), 1, sym_val_bool, - STATE(3091), 1, + STATE(2172), 1, sym__inter_single_quotes, - STATE(3098), 1, + STATE(2173), 1, sym__inter_double_quotes, - STATE(3152), 1, - sym_unquoted, - STATE(3203), 1, + STATE(2208), 1, sym__val_number, - ACTIONS(938), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3237), 2, + STATE(2232), 1, + sym_unquoted, + ACTIONS(3261), 2, anon_sym_true, anon_sym_false, - ACTIONS(3253), 2, + ACTIONS(3279), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3257), 2, + ACTIONS(3285), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3147), 2, + ACTIONS(3291), 2, + anon_sym_0o, + anon_sym_0x, + STATE(2230), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(4851), 2, + STATE(5227), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3241), 3, + ACTIONS(3265), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3259), 3, + ACTIONS(3287), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2472), 4, + STATE(2178), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3180), 13, + STATE(2206), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147582,91 +148844,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9671] = 36, + [9729] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(799), 1, + ACTIONS(930), 1, anon_sym_DOLLAR, - ACTIONS(821), 1, + ACTIONS(946), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(952), 1, anon_sym_0b, - ACTIONS(841), 1, + ACTIONS(972), 1, aux_sym_unquoted_token1, - ACTIONS(843), 1, + ACTIONS(974), 1, sym_raw_string_begin, - ACTIONS(1240), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3204), 1, + ACTIONS(3311), 1, + anon_sym_null, + ACTIONS(3315), 1, anon_sym_LBRACK, - ACTIONS(3206), 1, + ACTIONS(3317), 1, anon_sym_LPAREN, - ACTIONS(3208), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(3210), 1, + ACTIONS(3321), 1, anon_sym_DOT_DOT, - ACTIONS(3212), 1, + ACTIONS(3323), 1, anon_sym_LPAREN2, - ACTIONS(3224), 1, + ACTIONS(3327), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3333), 1, + sym_val_date, + ACTIONS(3335), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(3337), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(3339), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, + ACTIONS(3343), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3275), 1, - anon_sym_null, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - sym_val_date, - STATE(1374), 1, + STATE(1382), 1, sym_comment, - STATE(2956), 1, - sym_unquoted, - STATE(3023), 1, - sym__val_number, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - STATE(3526), 1, + STATE(2528), 1, sym__val_number_decimal, - STATE(3941), 1, + STATE(2950), 1, sym_val_bool, - ACTIONS(823), 2, + STATE(3340), 1, + sym__inter_single_quotes, + STATE(3342), 1, + sym__inter_double_quotes, + STATE(3344), 1, + sym_unquoted, + STATE(3362), 1, + sym__val_number, + ACTIONS(954), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3214), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3273), 2, + ACTIONS(3309), 2, anon_sym_true, anon_sym_false, - ACTIONS(3281), 2, + ACTIONS(3325), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3329), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3060), 2, + STATE(3275), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(4992), 2, + STATE(5316), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3220), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3277), 3, + ACTIONS(3313), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2454), 4, + ACTIONS(3331), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2554), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3021), 13, + STATE(3355), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147680,110 +148942,148 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9805] = 36, + [9863] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3287), 1, + ACTIONS(3349), 1, + sym__newline, + ACTIONS(3352), 1, + anon_sym_SEMI, + STATE(4562), 1, + aux_sym__repeat_newline, + STATE(1383), 2, + sym_comment, + aux_sym__parenthesized_body_repeat1, + ACTIONS(3345), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3347), 45, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(3291), 1, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(3293), 1, anon_sym_LPAREN, - ACTIONS(3295), 1, - anon_sym_DOLLAR, - ACTIONS(3297), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, - anon_sym_DOT_DOT, - ACTIONS(3301), 1, - anon_sym_LPAREN2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3307), 1, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, - ACTIONS(3313), 1, - anon_sym_0b, - ACTIONS(3317), 1, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_val_date, - ACTIONS(3319), 1, anon_sym_DQUOTE, - ACTIONS(3321), 1, anon_sym_SQUOTE, - ACTIONS(3323), 1, anon_sym_BQUOTE, - ACTIONS(3325), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3327), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3329), 1, - aux_sym_unquoted_token1, - ACTIONS(3331), 1, - sym_raw_string_begin, - STATE(1375), 1, + anon_sym_CARET, + [9939] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3148), 1, + anon_sym_RPAREN, + STATE(1384), 1, sym_comment, - STATE(1841), 1, - sym__val_number_decimal, - STATE(2116), 1, - sym_val_bool, - STATE(2168), 1, - sym__inter_single_quotes, - STATE(2176), 1, - sym_unquoted, - STATE(2178), 1, - sym__val_number, - STATE(2179), 1, - sym__inter_double_quotes, - ACTIONS(3285), 2, + ACTIONS(3359), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3355), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3357), 45, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3303), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3309), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3315), 2, - anon_sym_0o, - anon_sym_0x, - STATE(2174), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(5050), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3289), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3311), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2160), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2171), 13, - sym_val_nothing, - sym_val_variable, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [9939] = 4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [10012] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1376), 1, + STATE(1385), 1, sym_comment, - ACTIONS(3335), 10, + ACTIONS(3362), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147794,9 +149094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3333), 48, + ACTIONS(3364), 48, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147826,6 +149125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147843,12 +149143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10008] = 4, + [10081] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1377), 1, + STATE(1386), 1, sym_comment, - ACTIONS(3339), 10, + ACTIONS(3368), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147859,7 +149159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3337), 48, + ACTIONS(3366), 48, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -147908,12 +149208,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10077] = 4, + [10150] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1378), 1, + STATE(1357), 1, + aux_sym__block_body_repeat1, + STATE(1387), 1, sym_comment, - ACTIONS(3341), 10, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147924,7 +149229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3343), 48, + ACTIONS(3096), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147949,13 +149254,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147973,38 +149275,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10146] = 12, + [10223] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(3345), 1, + ACTIONS(3370), 1, anon_sym_DOT, - STATE(1379), 1, + STATE(1388), 1, sym_comment, - STATE(1434), 1, + STATE(1444), 1, sym__immediate_decimal, - ACTIONS(3347), 2, + ACTIONS(3372), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3349), 2, + ACTIONS(3374), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(698), 2, + STATE(688), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1602), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 41, + ACTIONS(1598), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148046,12 +149348,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10231] = 4, + [10308] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1380), 1, + STATE(1389), 1, sym_comment, - ACTIONS(3084), 10, + ACTIONS(3146), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148062,7 +149364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 48, + ACTIONS(3148), 48, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -148111,17 +149413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10300] = 6, + [10377] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3082), 1, - anon_sym_RPAREN, - STATE(1381), 1, + STATE(1390), 1, sym_comment, - ACTIONS(3355), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3351), 10, + ACTIONS(3376), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148132,7 +149429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3353), 45, + ACTIONS(3378), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148157,77 +149454,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10373] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1357), 1, - aux_sym__block_body_repeat1, - STATE(1382), 1, - sym_comment, - ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3042), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3044), 45, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -148248,15 +149481,15 @@ static const uint16_t ts_small_parse_table[] = { [10446] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2557), 1, + ACTIONS(2563), 1, sym__newline, - ACTIONS(3362), 1, + ACTIONS(3384), 1, anon_sym_SEMI, - STATE(1355), 1, + STATE(1356), 1, aux_sym__repeat_newline, - STATE(1383), 1, + STATE(1391), 1, sym_comment, - ACTIONS(3358), 10, + ACTIONS(3380), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148267,7 +149500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3360), 45, + ACTIONS(3382), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148316,9 +149549,9 @@ static const uint16_t ts_small_parse_table[] = { [10521] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1384), 1, + STATE(1392), 1, sym_comment, - ACTIONS(3364), 10, + ACTIONS(3388), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148329,8 +149562,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3366), 48, + ACTIONS(3386), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148360,7 +149594,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -148381,9 +149614,9 @@ static const uint16_t ts_small_parse_table[] = { [10590] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1385), 1, + STATE(1393), 1, sym_comment, - ACTIONS(3368), 10, + ACTIONS(3390), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148394,7 +149627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3370), 48, + ACTIONS(3392), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148443,39 +149676,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10659] = 12, + [10659] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(3372), 1, - anon_sym_DOT, - STATE(1386), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern, + STATE(1394), 1, sym_comment, - STATE(1443), 1, + STATE(1491), 1, sym__immediate_decimal, - ACTIONS(3374), 2, + ACTIONS(3394), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3376), 2, + ACTIONS(3396), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(929), 2, + STATE(748), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1653), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 40, - ts_builtin_sym_end, + ACTIONS(1651), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148488,6 +149718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -148515,244 +149747,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10743] = 11, + [10741] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(1387), 1, + ACTIONS(3404), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3411), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3414), 1, + aux_sym__val_number_decimal_token2, + STATE(2137), 1, + sym__val_number_decimal, + STATE(4730), 1, + sym_env_var, + STATE(5260), 1, + sym_cmd_identifier, + ACTIONS(3398), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3417), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1395), 2, sym_comment, - STATE(1486), 1, - sym__immediate_decimal, - ACTIONS(3378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 41, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [10825] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(1388), 1, - sym_comment, - STATE(1471), 1, - sym__immediate_decimal, - ACTIONS(3378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1631), 41, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [10907] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1389), 1, - sym_comment, - ACTIONS(3182), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3184), 47, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10975] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3388), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3398), 1, - aux_sym__val_number_decimal_token2, - STATE(2103), 1, - sym__val_number_decimal, - STATE(4391), 1, - sym_env_var, - STATE(4838), 1, - sym_cmd_identifier, - ACTIONS(3382), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3401), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1390), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat2, - ACTIONS(3393), 6, - anon_sym_DOLLAR, + aux_sym_pipe_element_parenthesized_repeat2, + ACTIONS(3409), 6, + anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3391), 17, + ACTIONS(3407), 17, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148770,7 +149796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3385), 23, + ACTIONS(3401), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148794,12 +149820,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [11061] = 4, + [10827] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1391), 1, + STATE(1396), 1, sym_comment, - ACTIONS(3351), 10, + ACTIONS(3345), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148810,7 +149836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3353), 47, + ACTIONS(3347), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148858,286 +149884,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11129] = 13, + [10895] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3410), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3420), 1, - aux_sym__val_number_decimal_token2, - STATE(2103), 1, - sym__val_number_decimal, - STATE(4759), 1, - sym_env_var, - STATE(4838), 1, - sym_cmd_identifier, - ACTIONS(3404), 2, + STATE(1397), 1, + sym_comment, + ACTIONS(3355), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3423), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1392), 2, - sym_comment, - aux_sym_pipe_element_repeat2, - ACTIONS(3415), 6, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3413), 17, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3407), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [11215] = 33, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1390), 1, - anon_sym_DOLLAR, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1418), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1502), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1504), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1578), 1, - anon_sym_LBRACK, - ACTIONS(3426), 1, - anon_sym_null, - ACTIONS(3428), 1, - anon_sym_LBRACE, - ACTIONS(3430), 1, - anon_sym_DOT_DOT, - ACTIONS(3434), 1, - sym_val_date, - STATE(1393), 1, - sym_comment, - STATE(3676), 1, - sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, - STATE(4037), 1, - sym_expr_parenthesized, - STATE(4165), 1, - sym__val_number, - STATE(4452), 1, - sym__inter_single_quotes, - STATE(4453), 1, - sym__inter_double_quotes, - STATE(4768), 1, - sym_block, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1482), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1506), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3432), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4774), 2, - sym_val_range, - sym__value, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1404), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(4536), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [11340] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(2658), 1, - anon_sym_LBRACE, - ACTIONS(2662), 1, - sym_val_date, - ACTIONS(3436), 1, - sym__newline, - ACTIONS(3438), 1, - anon_sym_LBRACK, - STATE(1394), 1, - sym_comment, - STATE(1424), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(2247), 1, - aux_sym__types_body_repeat1, - STATE(3555), 1, - sym__val_number_decimal, - STATE(3756), 1, - sym_expr_parenthesized, - STATE(3757), 1, - sym_val_variable, - STATE(4134), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4516), 1, - sym__match_pattern_list, - ACTIONS(1374), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1396), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - STATE(4290), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(4515), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4853), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4517), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [11473] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3442), 1, - sym__newline, - ACTIONS(3445), 1, - sym__space, - ACTIONS(3448), 1, + ACTIONS(3357), 47, sym_raw_string_begin, - STATE(1395), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3440), 52, - anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -149151,32 +149919,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT, + anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -149184,37 +149948,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11544] = 11, + [10963] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(1396), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + STATE(1398), 1, sym_comment, - STATE(1504), 1, + STATE(1468), 1, sym__immediate_decimal, - ACTIONS(3450), 2, + ACTIONS(3394), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, + ACTIONS(3396), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1343), 2, + STATE(730), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1602), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 40, - ts_builtin_sym_end, + ACTIONS(1598), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149227,6 +149990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149254,36 +150019,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11625] = 11, + [11045] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(1649), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(1397), 1, + ACTIONS(3420), 1, + anon_sym_DOT, + STATE(1399), 1, sym_comment, - STATE(1505), 1, + STATE(1453), 1, sym__immediate_decimal, - ACTIONS(3450), 2, + ACTIONS(3422), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, + ACTIONS(3424), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1311), 2, + STATE(929), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1602), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 40, + ACTIONS(1598), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -149324,26 +150091,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11706] = 7, - ACTIONS(103), 1, + [11129] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3391), 1, - sym_raw_string_begin, - ACTIONS(3454), 1, - sym__newline, - ACTIONS(3456), 1, - sym__space, - STATE(1395), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(1398), 1, - sym_comment, - ACTIONS(3393), 52, + ACTIONS(3432), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3439), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3442), 1, + aux_sym__val_number_decimal_token2, + STATE(2137), 1, + sym__val_number_decimal, + STATE(4786), 1, + sym_env_var, + STATE(5260), 1, + sym_cmd_identifier, + ACTIONS(3426), 2, anon_sym_export, + anon_sym_in, + ACTIONS(3445), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1400), 2, + sym_comment, + aux_sym_pipe_element_repeat2, + ACTIONS(3437), 6, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3435), 17, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(3429), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -149357,118 +150158,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, + [11215] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(1685), 1, anon_sym_DOLLAR, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + STATE(1401), 1, + sym_comment, + STATE(1509), 1, + sym__immediate_decimal, + ACTIONS(3448), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3450), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1279), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1653), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1651), 40, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [11296] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1386), 1, + anon_sym_null, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1410), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1416), 1, + anon_sym_0b, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1434), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(1576), 1, anon_sym_DOT_DOT, - aux_sym_expr_unary_token1, + ACTIONS(2674), 1, + anon_sym_DOLLAR, + ACTIONS(2676), 1, + anon_sym_LBRACE, + ACTIONS(2680), 1, + sym_val_date, + ACTIONS(3452), 1, + sym__newline, + ACTIONS(3454), 1, + anon_sym_LBRACK, + STATE(1402), 1, + sym_comment, + STATE(1421), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(2281), 1, + aux_sym__types_body_repeat1, + STATE(3727), 1, + sym__val_number_decimal, + STATE(4040), 1, + sym_expr_parenthesized, + STATE(4041), 1, + sym_val_variable, + STATE(4386), 1, + sym__val_number, + STATE(4490), 1, + sym_val_bool, + STATE(4737), 1, + sym__match_pattern_list, + ACTIONS(1384), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1406), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(1412), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + ACTIONS(1418), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4338), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(4736), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5140), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1388), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1414), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [11779] = 33, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4742), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [11429] = 33, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, + ACTIONS(1396), 1, anon_sym_LPAREN, - ACTIONS(1390), 1, + ACTIONS(1400), 1, anon_sym_DOLLAR, - ACTIONS(1406), 1, + ACTIONS(1416), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(1418), 1, + ACTIONS(1428), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1502), 1, + ACTIONS(1488), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1504), 1, + ACTIONS(1490), 1, aux_sym__val_number_decimal_token2, - ACTIONS(1578), 1, + ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(3426), 1, + ACTIONS(3456), 1, anon_sym_null, - ACTIONS(3428), 1, + ACTIONS(3458), 1, anon_sym_LBRACE, - ACTIONS(3430), 1, + ACTIONS(3460), 1, anon_sym_DOT_DOT, - ACTIONS(3434), 1, + ACTIONS(3464), 1, sym_val_date, - STATE(1399), 1, + STATE(1403), 1, sym_comment, - STATE(3676), 1, + STATE(3792), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(3965), 1, sym_val_variable, - STATE(4033), 1, + STATE(4078), 1, sym_expr_parenthesized, - STATE(4165), 1, + STATE(4386), 1, sym__val_number, - STATE(4452), 1, + STATE(4680), 1, sym__inter_single_quotes, - STATE(4453), 1, + STATE(4683), 1, sym__inter_double_quotes, - STATE(4761), 1, + STATE(4783), 1, sym_block, - ACTIONS(1408), 2, + ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1482), 2, + ACTIONS(1468), 2, anon_sym_true, anon_sym_false, - ACTIONS(1506), 2, + ACTIONS(1492), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3432), 2, + ACTIONS(3462), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4765), 2, + STATE(4784), 2, sym_val_range, sym__value, - STATE(3505), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1404), 6, + ACTIONS(1414), 6, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(4536), 13, + STATE(4538), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -149482,25 +150422,37 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11904] = 6, + [11554] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3458), 1, - anon_sym_DOT, - ACTIONS(3460), 1, - aux_sym__immediate_decimal_token5, - STATE(1400), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + STATE(1404), 1, sym_comment, - ACTIONS(739), 8, + STATE(1513), 1, + sym__immediate_decimal, + ACTIONS(3448), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3450), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1299), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 46, + ACTIONS(1598), 40, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149513,9 +150465,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149534,7 +150483,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149544,17 +150492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [11975] = 6, + [11635] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3462), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3464), 1, + ACTIONS(3466), 1, + anon_sym_DOT, + ACTIONS(3468), 1, aux_sym__immediate_decimal_token5, - STATE(1401), 1, + STATE(1405), 1, sym_comment, ACTIONS(747), 8, anon_sym_GT2, @@ -149612,78 +150557,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12046] = 6, - ACTIONS(3), 1, + [11706] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3466), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3468), 1, - aux_sym__immediate_decimal_token5, - STATE(1402), 1, + ACTIONS(3407), 1, + sym_raw_string_begin, + ACTIONS(3470), 1, + sym__newline, + ACTIONS(3472), 1, + sym__space, + STATE(1406), 1, sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 45, - ts_builtin_sym_end, + STATE(1408), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3409), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12116] = 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [11779] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3470), 1, + ACTIONS(3474), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3476), 1, aux_sym__immediate_decimal_token5, - STATE(1403), 1, + STATE(1407), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -149692,7 +150641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(741), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149739,17 +150688,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12184] = 5, + [11850] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3474), 1, + ACTIONS(3480), 1, + sym__newline, + ACTIONS(3483), 1, sym__space, - ACTIONS(3477), 1, + ACTIONS(3486), 1, sym_raw_string_begin, - STATE(1404), 2, + STATE(1408), 2, sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(3472), 52, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3478), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -149802,96 +150753,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12252] = 5, + [11921] = 33, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3479), 1, - sym__newline, - STATE(1405), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1960), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, + ACTIONS(1416), 1, anon_sym_0b, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1428), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(1488), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1490), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1588), 1, + anon_sym_LBRACK, + ACTIONS(3456), 1, + anon_sym_null, + ACTIONS(3458), 1, + anon_sym_LBRACE, + ACTIONS(3460), 1, + anon_sym_DOT_DOT, + ACTIONS(3464), 1, + sym_val_date, + STATE(1409), 1, + sym_comment, + STATE(3792), 1, + sym__val_number_decimal, + STATE(3965), 1, + sym_val_variable, + STATE(4075), 1, + sym_expr_parenthesized, + STATE(4386), 1, + sym__val_number, + STATE(4680), 1, + sym__inter_single_quotes, + STATE(4683), 1, + sym__inter_double_quotes, + STATE(4780), 1, + sym_block, + ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1955), 43, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(1468), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(1492), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4782), 2, + sym_val_range, + sym__value, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1414), 6, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [12320] = 11, + STATE(4538), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [12046] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1724), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1734), 1, sym__unquoted_pattern, - ACTIONS(3482), 1, + ACTIONS(3488), 1, anon_sym_DOT_DOT2, - ACTIONS(3486), 1, + ACTIONS(3492), 1, sym_filesize_unit, - ACTIONS(3488), 1, + ACTIONS(3494), 1, sym_duration_unit, - STATE(1406), 1, + STATE(1410), 1, sym_comment, - STATE(4739), 1, + STATE(4801), 1, sym__expr_parenthesized_immediate, - ACTIONS(3484), 2, + ACTIONS(3490), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 42, + ACTIONS(886), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149934,18 +150914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [12400] = 6, + [12126] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3413), 1, + STATE(1411), 1, + sym_comment, + ACTIONS(3496), 2, sym_raw_string_begin, - ACTIONS(3490), 1, sym__space, - STATE(1404), 1, - aux_sym_pipe_element_repeat1, - STATE(1407), 1, - sym_comment, - ACTIONS(3415), 52, + ACTIONS(850), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -149972,6 +150949,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -149998,14 +150976,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12470] = 6, + [12192] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3494), 1, + ACTIONS(3498), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3500), 1, aux_sym__immediate_decimal_token5, - STATE(1408), 1, + STATE(1412), 1, sym_comment, ACTIONS(739), 8, anon_sym_GT2, @@ -150062,21 +151040,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12540] = 4, - ACTIONS(103), 1, + [12262] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1409), 1, + ACTIONS(3502), 1, + sym__newline, + STATE(1413), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(3496), 2, - sym_raw_string_begin, - sym__space, - ACTIONS(858), 53, + ACTIONS(1971), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1966), 43, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -150090,33 +151078,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -150124,14 +151103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12606] = 5, + [12330] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3460), 1, + ACTIONS(3505), 1, + anon_sym_DOT, + ACTIONS(3507), 1, aux_sym__immediate_decimal_token5, - STATE(1410), 1, + STATE(1414), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150140,7 +151121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 46, + ACTIONS(749), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150153,9 +151135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -150187,24 +151167,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12674] = 4, - ACTIONS(103), 1, + [12400] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1411), 1, + ACTIONS(3468), 1, + aux_sym__immediate_decimal_token5, + STATE(1415), 1, sym_comment, - ACTIONS(3500), 2, - sym_raw_string_begin, - sym__space, - ACTIONS(3498), 52, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, + ACTIONS(747), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 46, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [12468] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3511), 1, + sym__space, + ACTIONS(3514), 1, + sym_raw_string_begin, + STATE(1416), 2, + sym_comment, + aux_sym_pipe_element_repeat1, + ACTIONS(3509), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_for, @@ -150248,103 +151293,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12739] = 34, - ACTIONS(3), 1, + [12536] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3505), 1, + ACTIONS(3435), 1, + sym_raw_string_begin, + ACTIONS(3516), 1, + sym__space, + STATE(1416), 1, + aux_sym_pipe_element_repeat1, + STATE(1417), 1, + sym_comment, + ACTIONS(3437), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(3511), 1, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, anon_sym_LBRACK, - ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(3517), 1, anon_sym_DOLLAR, - ACTIONS(3520), 1, + anon_sym_DASH2, anon_sym_LBRACE, - ACTIONS(3523), 1, anon_sym_DOT_DOT, - ACTIONS(3529), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3532), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3541), 1, - anon_sym_0b, - ACTIONS(3547), 1, - sym_val_date, - ACTIONS(3550), 1, - anon_sym_DQUOTE, - ACTIONS(3553), 1, - anon_sym_SQUOTE, - ACTIONS(3556), 1, - anon_sym_BQUOTE, - ACTIONS(3559), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3562), 1, - sym_raw_string_begin, - STATE(3672), 1, - sym__val_number_decimal, - STATE(4165), 1, - sym__val_number, - STATE(4191), 1, - sym_expr_parenthesized, - STATE(4192), 1, - sym_val_variable, - STATE(4516), 1, - sym__match_pattern_list, - STATE(4685), 1, - sym_val_bool, - ACTIONS(3502), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3526), 2, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3535), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3544), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1412), 2, - sym_comment, - aux_sym__match_pattern_list_body_repeat1, - STATE(4515), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4732), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(4853), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3508), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3538), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4517), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [12864] = 5, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [12606] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3565), 1, + ACTIONS(3518), 1, aux_sym__immediate_decimal_token5, - STATE(1413), 1, + STATE(1418), 1, sym_comment, ACTIONS(771), 8, anon_sym_GT2, @@ -150355,8 +151373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 45, - ts_builtin_sym_end, + ACTIONS(773), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150369,7 +151386,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -150401,24 +151420,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12931] = 6, + [12674] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3567), 1, - anon_sym_DOT, - ACTIONS(3569), 1, - aux_sym__immediate_decimal_token5, - STATE(1414), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(1820), 1, + sym__unquoted_pattern, + ACTIONS(3520), 1, + anon_sym_DOT_DOT2, + ACTIONS(3524), 1, + sym_filesize_unit, + ACTIONS(3526), 1, + sym_duration_unit, + STATE(1419), 1, sym_comment, - ACTIONS(1738), 7, + STATE(4881), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3522), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 45, + ACTIONS(886), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150431,9 +151460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -150452,7 +151479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -150462,35 +151488,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, - [13000] = 11, + [12753] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - ACTIONS(3571), 1, - anon_sym_DOT_DOT2, - ACTIONS(3575), 1, - sym_filesize_unit, - ACTIONS(3577), 1, - sym_duration_unit, - STATE(1415), 1, + ACTIONS(3528), 1, + aux_sym__immediate_decimal_token5, + STATE(1420), 1, sym_comment, - STATE(4775), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3573), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 41, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -150523,6 +151537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -150532,12 +151547,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [13079] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [12820] = 36, ACTIONS(3), 1, anon_sym_POUND, - STATE(1416), 1, + ACTIONS(1386), 1, + anon_sym_null, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1410), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1416), 1, + anon_sym_0b, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1434), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(1576), 1, + anon_sym_DOT_DOT, + ACTIONS(2674), 1, + anon_sym_DOLLAR, + ACTIONS(2676), 1, + anon_sym_LBRACE, + ACTIONS(2680), 1, + sym_val_date, + ACTIONS(3454), 1, + anon_sym_LBRACK, + STATE(1421), 1, sym_comment, - ACTIONS(2098), 10, + STATE(1424), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(3727), 1, + sym__val_number_decimal, + STATE(4040), 1, + sym_expr_parenthesized, + STATE(4041), 1, + sym_val_variable, + STATE(4243), 1, + sym__match_pattern_expression, + STATE(4244), 1, + sym__unquoted_in_list, + STATE(4386), 1, + sym__val_number, + STATE(4490), 1, + sym_val_bool, + STATE(4737), 1, + sym__match_pattern_list, + ACTIONS(1384), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1406), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1412), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1418), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4736), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5140), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1388), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1414), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4742), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [12949] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1422), 1, + sym_comment, + ACTIONS(2148), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150548,7 +151659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2096), 44, + ACTIONS(2146), 44, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150593,184 +151704,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13144] = 36, + [13014] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2876), 1, - anon_sym_LBRACK, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LBRACE, - ACTIONS(3581), 1, - anon_sym_null, - ACTIONS(3585), 1, - anon_sym_DOT_DOT, - ACTIONS(3589), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3591), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3595), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(1417), 1, + ACTIONS(3507), 1, + aux_sym__immediate_decimal_token5, + STATE(1423), 1, sym_comment, - STATE(3501), 1, - sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, - sym_val_variable, - STATE(4087), 1, - sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(4587), 1, - sym__match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3579), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3587), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3593), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4299), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3583), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13273] = 36, + ACTIONS(747), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 45, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [13081] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1376), 1, + ACTIONS(3533), 1, anon_sym_null, - ACTIONS(1386), 1, + ACTIONS(3539), 1, + anon_sym_LBRACK, + ACTIONS(3542), 1, anon_sym_LPAREN, - ACTIONS(1398), 1, + ACTIONS(3545), 1, + anon_sym_DOLLAR, + ACTIONS(3548), 1, + anon_sym_LBRACE, + ACTIONS(3551), 1, + anon_sym_DOT_DOT, + ACTIONS(3557), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, + ACTIONS(3560), 1, aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, + ACTIONS(3569), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(3575), 1, + sym_val_date, + ACTIONS(3578), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(3581), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(3584), 1, anon_sym_BQUOTE, - ACTIONS(1424), 1, + ACTIONS(3587), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, + ACTIONS(3590), 1, sym_raw_string_begin, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(2658), 1, - anon_sym_LBRACE, - ACTIONS(2662), 1, - sym_val_date, - ACTIONS(3438), 1, - anon_sym_LBRACK, - STATE(1412), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(1418), 1, - sym_comment, - STATE(3555), 1, + STATE(3889), 1, sym__val_number_decimal, - STATE(3756), 1, - sym_expr_parenthesized, - STATE(3757), 1, + STATE(4356), 1, sym_val_variable, - STATE(4134), 1, - sym_val_bool, - STATE(4165), 1, + STATE(4386), 1, sym__val_number, - STATE(4295), 1, - sym__match_pattern_expression, - STATE(4296), 1, - sym__unquoted_in_list, STATE(4516), 1, + sym_expr_parenthesized, + STATE(4737), 1, sym__match_pattern_list, - ACTIONS(1374), 2, + STATE(4901), 1, + sym_val_bool, + ACTIONS(3530), 2, anon_sym_true, anon_sym_false, - ACTIONS(1396), 2, + ACTIONS(3554), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, + ACTIONS(3563), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, + ACTIONS(3572), 2, anon_sym_0o, anon_sym_0x, - STATE(4515), 2, + STATE(1424), 2, + sym_comment, + aux_sym__match_pattern_list_body_repeat1, + STATE(4736), 2, sym__match_pattern_value, sym_val_range, - STATE(4853), 2, + STATE(4793), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(5140), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, + ACTIONS(3536), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, + ACTIONS(3566), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3505), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4517), 8, + STATE(4742), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150779,16 +151857,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13402] = 6, + [13206] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1425), 1, + sym_comment, + ACTIONS(3595), 2, + sym_raw_string_begin, + sym__space, + ACTIONS(3593), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [13271] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3597), 1, aux_sym__immediate_decimal_token1, ACTIONS(3599), 1, aux_sym__immediate_decimal_token5, - STATE(1419), 1, + STATE(1426), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1772), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150796,7 +151935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 45, + ACTIONS(1770), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150842,91 +151981,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13471] = 36, + [13340] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1936), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2876), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(3581), 1, + ACTIONS(3603), 1, anon_sym_null, - ACTIONS(3585), 1, + ACTIONS(3607), 1, anon_sym_DOT_DOT, - ACTIONS(3589), 1, + ACTIONS(3611), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3591), 1, + ACTIONS(3613), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3595), 1, + ACTIONS(3617), 1, sym_val_date, - STATE(694), 1, + STATE(707), 1, sym__val_number, - STATE(1420), 1, + STATE(1427), 1, sym_comment, - STATE(3501), 1, + STATE(3725), 1, sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, + STATE(3808), 1, sym_val_variable, - STATE(4087), 1, + STATE(3865), 1, + sym_expr_parenthesized, + STATE(4219), 1, sym_val_bool, - STATE(4285), 1, + STATE(4471), 1, sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, + STATE(4483), 1, sym__match_pattern_list, - STATE(4602), 1, + STATE(4503), 1, + sym_unquoted, + STATE(4643), 1, sym__match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3579), 2, + ACTIONS(3601), 2, anon_sym_true, anon_sym_false, - ACTIONS(3587), 2, + ACTIONS(3609), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3593), 2, + ACTIONS(3615), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + STATE(4475), 2, sym__match_pattern_value, sym_val_range, - STATE(4884), 2, + STATE(5176), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3583), 3, + ACTIONS(3605), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4489), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150935,12 +152074,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13600] = 4, + [13469] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1421), 1, + STATE(1428), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(860), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150949,7 +152088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(851), 46, + ACTIONS(862), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150996,24 +152135,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13665] = 5, + [13534] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3494), 1, + ACTIONS(3619), 1, + anon_sym_DOT, + ACTIONS(3621), 1, aux_sym__immediate_decimal_token5, - STATE(1422), 1, + STATE(1429), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(1746), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 45, - ts_builtin_sym_end, + ACTIONS(1744), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151026,7 +152165,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151057,13 +152198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [13732] = 4, + [13603] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1423), 1, + STATE(1430), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151072,7 +152212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 46, + ACTIONS(741), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151119,91 +152259,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13797] = 36, + [13668] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, + ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - ACTIONS(2656), 1, + ACTIONS(1936), 1, + aux_sym_unquoted_token1, + ACTIONS(2694), 1, + anon_sym_LPAREN, + ACTIONS(2871), 1, + anon_sym_LBRACK, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(2658), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2662), 1, + ACTIONS(3603), 1, + anon_sym_null, + ACTIONS(3607), 1, + anon_sym_DOT_DOT, + ACTIONS(3611), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3613), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3617), 1, sym_val_date, - ACTIONS(3438), 1, - anon_sym_LBRACK, - STATE(1412), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(1424), 1, + STATE(707), 1, + sym__val_number, + STATE(1431), 1, sym_comment, - STATE(3555), 1, + STATE(3725), 1, sym__val_number_decimal, - STATE(3756), 1, - sym_expr_parenthesized, - STATE(3757), 1, + STATE(3808), 1, sym_val_variable, - STATE(4134), 1, + STATE(3865), 1, + sym_expr_parenthesized, + STATE(4219), 1, sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4190), 1, + STATE(4471), 1, sym__match_pattern_expression, - STATE(4194), 1, - sym__unquoted_in_list, - STATE(4516), 1, + STATE(4483), 1, sym__match_pattern_list, - ACTIONS(1374), 2, + STATE(4503), 1, + sym_unquoted, + STATE(4724), 1, + sym__match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3601), 2, anon_sym_true, anon_sym_false, - ACTIONS(1396), 2, + ACTIONS(3609), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, + ACTIONS(3615), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4515), 2, + STATE(4475), 2, sym__match_pattern_value, sym_val_range, - STATE(4853), 2, + STATE(5176), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, + ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3505), 4, + ACTIONS(3605), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4517), 8, + STATE(4489), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -151212,10 +152352,10 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13926] = 4, + [13797] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1425), 1, + STATE(1432), 1, sym_comment, ACTIONS(771), 8, anon_sym_GT2, @@ -151273,24 +152413,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13991] = 6, + [13862] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3601), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3603), 1, - aux_sym__immediate_decimal_token5, - STATE(1426), 1, + ACTIONS(1386), 1, + anon_sym_null, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1410), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1416), 1, + anon_sym_0b, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1434), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(1576), 1, + anon_sym_DOT_DOT, + ACTIONS(2674), 1, + anon_sym_DOLLAR, + ACTIONS(2676), 1, + anon_sym_LBRACE, + ACTIONS(2680), 1, + sym_val_date, + ACTIONS(3454), 1, + anon_sym_LBRACK, + STATE(1424), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(1433), 1, sym_comment, - ACTIONS(1728), 7, + STATE(3727), 1, + sym__val_number_decimal, + STATE(4040), 1, + sym_expr_parenthesized, + STATE(4041), 1, + sym_val_variable, + STATE(4339), 1, + sym__match_pattern_expression, + STATE(4340), 1, + sym__unquoted_in_list, + STATE(4386), 1, + sym__val_number, + STATE(4490), 1, + sym_val_bool, + STATE(4737), 1, + sym__match_pattern_list, + ACTIONS(1384), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1406), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1412), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1418), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4736), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5140), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1388), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1414), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4742), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [13991] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1434), 1, + sym_comment, + ACTIONS(860), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1726), 44, + ACTIONS(862), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151335,16 +152565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14059] = 6, + sym_duration_unit, + [14055] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3605), 1, - anon_sym_DOT, - ACTIONS(3607), 1, + ACTIONS(3621), 1, aux_sym__immediate_decimal_token5, - STATE(1427), 1, + STATE(1435), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1746), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151352,8 +152581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 44, - ts_builtin_sym_end, + ACTIONS(1744), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151366,7 +152594,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151397,12 +152627,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14127] = 4, + [14121] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1428), 1, + STATE(1436), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151411,7 +152641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(851), 45, + ACTIONS(741), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151457,14 +152687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [14191] = 5, + [14185] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3569), 1, + ACTIONS(3623), 1, aux_sym__immediate_decimal_token5, - STATE(1429), 1, + STATE(1437), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1854), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151472,7 +152702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 45, + ACTIONS(1852), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151518,21 +152748,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14257] = 4, + [14251] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1430), 1, + ACTIONS(3625), 1, + anon_sym_DOT, + ACTIONS(3627), 1, + aux_sym__immediate_decimal_token5, + STATE(1438), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1746), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 45, + ACTIONS(1744), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151577,23 +152810,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [14321] = 5, + [14319] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3609), 1, - aux_sym__immediate_decimal_token5, - STATE(1431), 1, + STATE(1439), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1802), 45, + ACTIONS(773), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151606,9 +152838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151639,21 +152869,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14387] = 4, + sym_duration_unit, + [14383] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1432), 1, + ACTIONS(3629), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3631), 1, + aux_sym__immediate_decimal_token5, + STATE(1440), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(1772), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 45, + ACTIONS(1770), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151698,13 +152932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [14451] = 4, + [14451] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1433), 1, + ACTIONS(3633), 1, + aux_sym__immediate_decimal_token5, + STATE(1441), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1854), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151712,7 +152947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 45, + ACTIONS(1852), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151725,9 +152961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151758,27 +152992,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14514] = 8, + [14516] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(3611), 1, - anon_sym_DOT_DOT2, - STATE(1434), 1, + STATE(1442), 1, sym_comment, - ACTIONS(3613), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(1854), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 42, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151812,6 +153039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -151821,12 +153049,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14585] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [14579] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1435), 1, + ACTIONS(3627), 1, + aux_sym__immediate_decimal_token5, + STATE(1443), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1746), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151834,7 +153066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 45, + ACTIONS(1744), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151847,9 +153080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151880,27 +153111,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14648] = 8, + [14644] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(3615), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(3635), 1, anon_sym_DOT_DOT2, - STATE(1436), 1, + STATE(1444), 1, sym_comment, - ACTIONS(3617), 2, + ACTIONS(3637), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(1975), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 42, + ACTIONS(1973), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151943,20 +153174,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14719] = 4, + [14715] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1437), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(3639), 1, + anon_sym_DOT_DOT2, + STATE(1445), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(3641), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 45, + ACTIONS(1956), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151990,7 +153228,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152000,16 +153237,12 @@ 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, - [14782] = 5, + [14786] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3607), 1, - aux_sym__immediate_decimal_token5, - STATE(1438), 1, + STATE(1446), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1772), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152017,8 +153250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 44, - ts_builtin_sym_end, + ACTIONS(1770), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152031,7 +153263,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152062,14 +153296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14847] = 5, + [14849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3619), 1, - aux_sym__immediate_decimal_token5, - STATE(1439), 1, + STATE(1447), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1872), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152077,8 +153309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 44, - ts_builtin_sym_end, + ACTIONS(1870), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152091,7 +153322,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152122,23 +153355,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14912] = 6, + [14912] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3621), 1, - anon_sym_DOT, - ACTIONS(3623), 1, - aux_sym__immediate_decimal_token5, - STATE(1440), 1, + STATE(1448), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1772), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 43, + ACTIONS(1770), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152151,9 +153382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152182,85 +153411,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14978] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(3625), 1, - anon_sym_DOT_DOT2, - STATE(1441), 1, - sym_comment, - ACTIONS(3627), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1964), 41, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15048] = 6, + [14974] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3629), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3631), 1, - aux_sym__immediate_decimal_token5, - STATE(1442), 1, + STATE(1449), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1854), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 43, + ACTIONS(1852), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152273,9 +153440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152304,27 +153469,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15114] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15036] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(3633), 1, - anon_sym_DOT_DOT2, - STATE(1443), 1, + STATE(1450), 1, sym_comment, - ACTIONS(3635), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(1872), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 41, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1870), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152357,6 +153517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152366,21 +153527,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15184] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15098] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1444), 1, + ACTIONS(3643), 1, + anon_sym_DOT, + ACTIONS(3645), 1, + aux_sym__immediate_decimal_token5, + STATE(1451), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1746), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 44, - ts_builtin_sym_end, + ACTIONS(1744), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152393,7 +153558,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152422,61 +153589,59 @@ 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, - [15246] = 22, + [15164] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3645), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3647), 1, + ACTIONS(3657), 1, anon_sym_STAR2, - STATE(1445), 1, + STATE(1452), 1, sym_comment, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(4326), 1, + STATE(4379), 1, sym__command_name, - STATE(4327), 1, + STATE(4380), 1, sym_scope_pattern, - STATE(4328), 1, + STATE(4381), 1, sym_wild_card, - STATE(4329), 1, + STATE(4382), 1, sym_command_list, - ACTIONS(3637), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3643), 4, + ACTIONS(3653), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -152500,26 +153665,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15344] = 9, + [15262] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(423), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(923), 1, - sym_cell_path, - STATE(1446), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(3663), 1, + anon_sym_DOT_DOT2, + STATE(1453), 1, sym_comment, - ACTIONS(1853), 5, + ACTIONS(3665), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1975), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3653), 13, + ACTIONS(1973), 41, + ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -152531,10 +153699,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1850), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -152563,59 +153727,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15416] = 22, + [15332] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3645), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3647), 1, + ACTIONS(3657), 1, anon_sym_STAR2, - STATE(1447), 1, + STATE(1454), 1, sym_comment, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(4270), 1, - sym_scope_pattern, - STATE(4326), 1, + STATE(4379), 1, sym__command_name, - STATE(4328), 1, + STATE(4381), 1, sym_wild_card, - STATE(4329), 1, + STATE(4382), 1, sym_command_list, - ACTIONS(3637), 2, + STATE(4466), 1, + sym_scope_pattern, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3657), 4, + ACTIONS(3667), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -152639,22 +153803,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15514] = 4, + [15430] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1448), 1, + ACTIONS(1866), 1, + anon_sym_DOT2, + STATE(427), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(458), 1, + sym_path, + STATE(932), 1, + sym_cell_path, + STATE(1455), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1885), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 44, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(3669), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -152666,6 +153834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1882), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -152685,7 +153857,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152695,87 +153866,29 @@ 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, - [15576] = 4, + [15502] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1449), 1, - sym_comment, - ACTIONS(1872), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(1870), 44, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(1960), 1, anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(3673), 1, + anon_sym_DOT_DOT2, + STATE(1456), 1, + sym_comment, + ACTIONS(3675), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [15638] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_DOT2, - STATE(518), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, - sym_path, - STATE(1292), 1, - sym_cell_path, - STATE(1450), 1, - sym_comment, - ACTIONS(1853), 5, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3653), 12, + ACTIONS(1956), 41, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -152787,8 +153900,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(1850), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -152817,79 +153928,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15709] = 5, + [15572] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3659), 1, - aux_sym__immediate_decimal_token5, - STATE(1451), 1, - sym_comment, - ACTIONS(1804), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 43, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15772] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3623), 1, + ACTIONS(3677), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3679), 1, aux_sym__immediate_decimal_token5, - STATE(1452), 1, + STATE(1457), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 43, + ACTIONS(1770), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152933,50 +153988,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15835] = 20, + [15638] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(251), 1, aux_sym_cmd_identifier_token1, - ACTIONS(843), 1, + ACTIONS(856), 1, sym_raw_string_begin, - ACTIONS(3224), 1, + ACTIONS(3130), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(3132), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(3134), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, + ACTIONS(3138), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, + ACTIONS(3681), 1, anon_sym_LPAREN, - ACTIONS(3663), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - STATE(1453), 1, + STATE(1458), 1, sym_comment, - STATE(2101), 1, + STATE(2136), 1, sym__val_number_decimal, - STATE(3063), 1, + STATE(3094), 1, sym__inter_single_quotes, - STATE(3066), 1, + STATE(3095), 1, sym__inter_double_quotes, ACTIONS(277), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2454), 4, + STATE(2483), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3031), 5, + STATE(2905), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, @@ -153006,50 +154061,168 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15928] = 20, + [15731] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3685), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3687), 1, + aux_sym__immediate_decimal_token5, + STATE(1459), 1, + sym_comment, + ACTIONS(1772), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1770), 42, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [15796] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3689), 1, + anon_sym_DOT, + ACTIONS(3691), 1, + aux_sym__immediate_decimal_token5, + STATE(1460), 1, + sym_comment, + ACTIONS(1746), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1744), 42, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [15861] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(251), 1, aux_sym_cmd_identifier_token1, - ACTIONS(843), 1, + ACTIONS(856), 1, sym_raw_string_begin, - ACTIONS(3224), 1, + ACTIONS(3130), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(3132), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(3134), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, + ACTIONS(3138), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, + ACTIONS(3681), 1, anon_sym_LPAREN, - ACTIONS(3663), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - STATE(1454), 1, + STATE(1461), 1, sym_comment, - STATE(2101), 1, + STATE(2136), 1, sym__val_number_decimal, - STATE(3063), 1, + STATE(3094), 1, sym__inter_single_quotes, - STATE(3066), 1, + STATE(3095), 1, sym__inter_double_quotes, ACTIONS(277), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2454), 4, + STATE(2483), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2839), 5, + STATE(3124), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, @@ -153079,99 +154252,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16021] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3671), 1, - anon_sym_LBRACK, - ACTIONS(3673), 1, - anon_sym_STAR2, - STATE(1455), 1, - sym_comment, - STATE(1976), 1, - sym__val_number_decimal, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, - sym_val_string, - STATE(4456), 1, - sym__command_name, - STATE(4457), 1, - sym_scope_pattern, - STATE(4458), 1, - sym_wild_card, - STATE(4459), 1, - sym_command_list, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3643), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3667), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [16118] = 6, + [15954] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3675), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3677), 1, + ACTIONS(3693), 1, aux_sym__immediate_decimal_token5, - STATE(1456), 1, + STATE(1462), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1854), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 42, - ts_builtin_sym_end, + ACTIONS(1852), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153184,7 +154279,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -153213,56 +154310,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16183] = 20, + [16017] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(19), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(3263), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(3265), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(3267), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, - anon_sym_LPAREN, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - STATE(1457), 1, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(3699), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3701), 1, + anon_sym_LBRACK, + ACTIONS(3703), 1, + anon_sym_STAR2, + STATE(1463), 1, sym_comment, - STATE(2085), 1, + STATE(2013), 1, sym__val_number_decimal, - STATE(3091), 1, - sym__inter_single_quotes, - STATE(3098), 1, - sym__inter_double_quotes, - ACTIONS(45), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + STATE(4301), 1, + sym_cmd_identifier, + STATE(4302), 1, + sym_val_string, + STATE(4640), 1, + sym__command_name, + STATE(4647), 1, + sym_wild_card, + STATE(4649), 1, + sym_command_list, + STATE(4703), 1, + sym_scope_pattern, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2472), 4, + ACTIONS(3695), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3667), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(502), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2962), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(39), 23, + ACTIONS(3697), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153286,58 +154385,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16276] = 22, + [16114] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, + ACTIONS(19), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(974), 1, + sym_raw_string_begin, + ACTIONS(3335), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(3337), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(3339), 1, anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3671), 1, - anon_sym_LBRACK, - ACTIONS(3673), 1, - anon_sym_STAR2, - STATE(1458), 1, + ACTIONS(3341), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3343), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3705), 1, + anon_sym_LPAREN, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + STATE(1464), 1, sym_comment, - STATE(1976), 1, + STATE(2121), 1, sym__val_number_decimal, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, - sym_val_string, - STATE(4379), 1, - sym_scope_pattern, - STATE(4456), 1, - sym__command_name, - STATE(4458), 1, - sym_wild_card, - STATE(4459), 1, - sym_command_list, - ACTIONS(3649), 2, + STATE(3340), 1, + sym__inter_single_quotes, + STATE(3342), 1, + sym__inter_double_quotes, + ACTIONS(45), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3657), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - STATE(480), 4, + STATE(2554), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3667), 23, + STATE(3059), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(39), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153361,25 +154458,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16373] = 6, + [16207] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - ACTIONS(3685), 1, - aux_sym__immediate_decimal_token5, - STATE(1459), 1, + ACTIONS(2280), 1, + anon_sym_DOT2, + STATE(622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(720), 1, + sym_path, + STATE(1273), 1, + sym_cell_path, + STATE(1465), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1885), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 42, + ACTIONS(3669), 12, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -153391,6 +154490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(1882), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -153410,7 +154511,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -153420,22 +154520,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16438] = 6, + [16278] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(1460), 1, + ACTIONS(3645), 1, + aux_sym__immediate_decimal_token5, + STATE(1466), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(1746), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 42, + sym__unquoted_pattern, + ACTIONS(1744), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153469,6 +154568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -153478,78 +154578,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16502] = 4, + [16341] = 22, ACTIONS(3), 1, anon_sym_POUND, - STATE(1461), 1, - sym_comment, - ACTIONS(1728), 6, - anon_sym_GT2, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(3699), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3701), 1, + anon_sym_LBRACK, + ACTIONS(3703), 1, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 43, + STATE(1467), 1, + sym_comment, + STATE(2013), 1, + sym__val_number_decimal, + STATE(4301), 1, + sym_cmd_identifier, + STATE(4302), 1, + sym_val_string, + STATE(4640), 1, + sym__command_name, + STATE(4642), 1, + sym_scope_pattern, + STATE(4647), 1, + sym_wild_card, + STATE(4649), 1, + sym_command_list, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3695), 2, + anon_sym_export, anon_sym_in, + ACTIONS(3653), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [16562] = 6, + STATE(502), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3697), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [16438] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1983), 1, sym__unquoted_pattern, - STATE(1462), 1, + STATE(1468), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(1975), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 42, + ACTIONS(1973), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153592,19 +154711,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16626] = 4, + [16502] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1463), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(1469), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 43, + ACTIONS(1956), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153638,7 +154760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -153648,20 +154769,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16686] = 7, + [16566] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3689), 1, + ACTIONS(3711), 1, anon_sym_RBRACE, - ACTIONS(3691), 1, + ACTIONS(3713), 1, sym_raw_string_begin, - STATE(1464), 1, + STATE(1470), 1, sym_comment, - STATE(1473), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, - ACTIONS(3687), 45, + ACTIONS(3709), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153707,22 +154828,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16752] = 6, + [16632] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1465), 1, + STATE(1471), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(1854), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 42, + sym__unquoted_pattern, + ACTIONS(1852), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153756,6 +154874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -153765,20 +154884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16816] = 7, + [16692] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(3717), 1, sym__entry_separator, - ACTIONS(3696), 1, - anon_sym_RBRACE, - ACTIONS(3699), 1, + ACTIONS(3720), 1, sym_raw_string_begin, - STATE(1466), 1, + STATE(1472), 2, sym_comment, - STATE(1473), 1, aux_sym__types_body_repeat2, - ACTIONS(3693), 45, + ACTIONS(3715), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153808,6 +154924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_PLUS2, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_DOT_DOLLAR, @@ -153824,20 +154941,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16882] = 7, + [16754] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3691), 1, - sym_raw_string_begin, - ACTIONS(3702), 1, + ACTIONS(3724), 1, anon_sym_RBRACE, - STATE(1467), 1, - sym_comment, - STATE(1473), 1, + ACTIONS(3726), 1, + sym_raw_string_begin, + STATE(1472), 1, aux_sym__types_body_repeat2, - ACTIONS(3687), 45, + STATE(1473), 1, + sym_comment, + ACTIONS(3722), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153883,20 +155000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16948] = 7, + [16820] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3706), 1, - anon_sym_RBRACE, - ACTIONS(3708), 1, + ACTIONS(3713), 1, sym_raw_string_begin, - STATE(1468), 1, - sym_comment, - STATE(1473), 1, + ACTIONS(3728), 1, + anon_sym_RBRACE, + STATE(1472), 1, aux_sym__types_body_repeat2, - ACTIONS(3704), 45, + STATE(1474), 1, + sym_comment, + ACTIONS(3709), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153942,20 +155059,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17014] = 7, + [16886] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(1475), 1, + sym_comment, + ACTIONS(994), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1030), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [16950] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3706), 1, - anon_sym_RBRACE, - ACTIONS(3708), 1, + ACTIONS(3713), 1, sym_raw_string_begin, - STATE(1469), 1, - sym_comment, - STATE(1473), 1, + ACTIONS(3728), 1, + anon_sym_RBRACE, + STATE(1472), 1, aux_sym__types_body_repeat2, - ACTIONS(3704), 45, + STATE(1476), 1, + sym_comment, + ACTIONS(3709), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154001,22 +155176,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17080] = 6, + [17016] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(2656), 1, anon_sym_LPAREN2, - STATE(1470), 1, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(1477), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(1020), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 42, + ACTIONS(1022), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154059,22 +155234,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17144] = 6, + [17080] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(2652), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2654), 1, sym__unquoted_pattern, - STATE(1471), 1, + STATE(1478), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(2650), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 42, + ACTIONS(2648), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154117,19 +155292,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17208] = 4, + [17144] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1472), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(1479), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(1614), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 43, + ACTIONS(1713), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154163,7 +155341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154173,136 +155350,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17268] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3712), 1, - sym__entry_separator, - ACTIONS(3715), 1, - sym_raw_string_begin, - STATE(1473), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 46, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17330] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3691), 1, - sym_raw_string_begin, - ACTIONS(3717), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1474), 1, - sym_comment, - ACTIONS(3687), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17396] = 7, + [17208] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3713), 1, sym_raw_string_begin, - ACTIONS(3719), 1, + ACTIONS(3730), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, - STATE(1475), 1, + STATE(1480), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3709), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154348,76 +155409,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17462] = 5, + [17274] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3685), 1, - aux_sym__immediate_decimal_token5, - STATE(1476), 1, - sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 42, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(1977), 1, anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17524] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1477), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(1481), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(2599), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 43, + ACTIONS(2597), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154451,7 +155458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154461,20 +155467,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17584] = 7, + [17338] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3691), 1, + ACTIONS(3713), 1, sym_raw_string_begin, - ACTIONS(3721), 1, + ACTIONS(3730), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, - STATE(1478), 1, + STATE(1482), 1, sym_comment, - ACTIONS(3687), 45, + ACTIONS(3709), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154520,22 +155526,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17650] = 6, + [17404] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1479), 1, + ACTIONS(3732), 1, + aux_sym__immediate_decimal_token5, + STATE(1483), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(1854), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 42, + sym__unquoted_pattern, + ACTIONS(1852), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154548,9 +155554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -154569,6 +155573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154578,20 +155583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17714] = 7, + [17466] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3726), 1, sym_raw_string_begin, - ACTIONS(3723), 1, + ACTIONS(3734), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, - STATE(1480), 1, + STATE(1484), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3722), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154637,135 +155642,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17780] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3725), 1, - aux_sym__immediate_decimal_token5, - STATE(1481), 1, - sym_comment, - ACTIONS(1804), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 42, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17842] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(1482), 1, - sym_comment, - ACTIONS(2637), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2635), 42, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17906] = 7, + [17532] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3699), 1, + ACTIONS(3726), 1, sym_raw_string_begin, - ACTIONS(3727), 1, + ACTIONS(3736), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, - STATE(1483), 1, + STATE(1485), 1, sym_comment, - ACTIONS(3693), 45, + ACTIONS(3722), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154811,20 +155701,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17972] = 7, + [17598] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3726), 1, sym_raw_string_begin, - ACTIONS(3730), 1, + ACTIONS(3738), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, - STATE(1484), 1, + STATE(1486), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3722), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154870,20 +155760,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18038] = 7, + [17664] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3713), 1, sym_raw_string_begin, - ACTIONS(3730), 1, + ACTIONS(3740), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, - STATE(1485), 1, + STATE(1487), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3709), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154929,22 +155819,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18104] = 6, + [17730] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - STATE(1486), 1, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(1488), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(2543), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 42, + ACTIONS(2541), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154987,22 +155877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18168] = 6, + [17794] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(1487), 1, + STATE(1489), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(1872), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 42, + sym__unquoted_pattern, + ACTIONS(1870), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155036,6 +155923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155045,14 +155933,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18232] = 5, - ACTIONS(103), 1, + [17854] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(1488), 1, + ACTIONS(3691), 1, + aux_sym__immediate_decimal_token5, + STATE(1490), 1, sym_comment, - ACTIONS(968), 18, + ACTIONS(1746), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1744), 42, + ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155064,18 +155961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(868), 29, - anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155086,93 +155972,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18293] = 4, - ACTIONS(103), 1, + [17916] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1489), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(1491), 1, sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 46, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18352] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(1490), 1, - sym_comment, - ACTIONS(2637), 5, + ACTIONS(2591), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 41, - ts_builtin_sym_end, + ACTIONS(2589), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155185,7 +156018,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155213,18 +156048,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18415] = 6, + [17980] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3745), 1, + anon_sym_RBRACE, + ACTIONS(3748), 1, sym_raw_string_begin, - STATE(1473), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, - STATE(1491), 1, + STATE(1492), 1, + sym_comment, + ACTIONS(3742), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [18046] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(3748), 1, + sym_raw_string_begin, + ACTIONS(3751), 1, + anon_sym_RBRACE, + STATE(1472), 1, + aux_sym__types_body_repeat2, + STATE(1493), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3742), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155270,20 +156166,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18478] = 4, + [18112] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1492), 1, + STATE(1494), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(2501), 42, - ts_builtin_sym_end, + ACTIONS(1770), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155296,7 +156191,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155325,14 +156222,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18537] = 5, - ACTIONS(103), 1, + [18172] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(1493), 1, + STATE(1495), 1, sym_comment, - ACTIONS(2501), 18, + ACTIONS(2527), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2525), 43, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155345,17 +156248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2503), 29, - anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155366,37 +156260,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18598] = 6, + [18232] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - STATE(1494), 1, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(1496), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(2543), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 41, + ACTIONS(2541), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155438,22 +156335,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18661] = 6, + [18295] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(1495), 1, + STATE(1497), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 41, + ACTIONS(1956), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155495,79 +156392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18724] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3691), 1, - sym_raw_string_begin, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1496), 1, - sym_comment, - ACTIONS(3687), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18787] = 6, + [18358] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1497), 1, + STATE(1498), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(2527), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 41, + sym__unquoted_pattern, + ACTIONS(2525), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155600,6 +156437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155609,28 +156447,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18850] = 5, - ACTIONS(3), 1, + [18417] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3740), 1, - sym__newline, - STATE(1498), 2, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(3713), 1, + sym_raw_string_begin, + STATE(1472), 1, + aux_sym__types_body_repeat2, + STATE(1499), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, + ACTIONS(3709), 45, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - aux_sym__val_number_decimal_token1, - ACTIONS(3738), 39, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -155644,6 +156478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, @@ -155651,8 +156486,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -155665,19 +156504,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18911] = 4, + [18480] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1499), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(1500), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(2599), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 42, + ACTIONS(2597), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155710,7 +156552,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155720,19 +156561,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18970] = 4, + [18543] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1500), 1, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(1501), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(2650), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 42, + ACTIONS(2648), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155765,7 +156609,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155775,22 +156618,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19029] = 6, + [18606] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(2656), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(1501), 1, + STATE(1502), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(1020), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 41, + ACTIONS(1022), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155832,22 +156675,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19092] = 6, + [18669] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + STATE(1503), 1, + sym_comment, + ACTIONS(2648), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2650), 29, + anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18730] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + STATE(1504), 1, + sym_comment, + ACTIONS(2525), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2527), 29, + anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18791] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(1502), 1, + STATE(1505), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 41, + sym__unquoted_pattern, + ACTIONS(1770), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155880,29 +156832,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18850] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + STATE(1506), 1, + sym_comment, + ACTIONS(886), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(866), 29, + anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19155] = 5, + [18911] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(1503), 1, + STATE(1507), 1, sym_comment, - ACTIONS(868), 5, + ACTIONS(994), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 42, + ACTIONS(1030), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155915,9 +156927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155945,22 +156955,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19216] = 6, + [18974] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(3726), 1, + sym_raw_string_begin, + STATE(1472), 1, + aux_sym__types_body_repeat2, + STATE(1508), 1, + sym_comment, + ACTIONS(3722), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [19037] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(2644), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2646), 1, sym__unquoted_pattern, - STATE(1504), 1, + STATE(1509), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(2591), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 41, + ACTIONS(2589), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156002,22 +157069,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19279] = 6, + [19100] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1510), 1, + sym_comment, + ACTIONS(3756), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 46, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [19159] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2612), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2614), 1, sym__unquoted_pattern, - STATE(1505), 1, + STATE(1511), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(1614), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 41, + ACTIONS(1713), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156059,22 +157181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19342] = 6, + [19222] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1506), 1, + STATE(1512), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(1854), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 41, + sym__unquoted_pattern, + ACTIONS(1852), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156107,6 +157226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -156116,19 +157236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19405] = 4, + [19281] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1507), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(1513), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1975), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 42, + ACTIONS(1973), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156161,7 +157284,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -156171,14 +157293,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19464] = 5, - ACTIONS(103), 1, + [19344] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(1508), 1, + STATE(1514), 1, sym_comment, - ACTIONS(2635), 18, + ACTIONS(1872), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1870), 42, + ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156190,18 +157319,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_RBRACE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2637), 29, - anon_sym_in, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [19403] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(1515), 1, + sym_comment, + ACTIONS(866), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(886), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156212,98 +157387,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19525] = 15, + [19464] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1509), 1, + ACTIONS(3762), 1, + sym__newline, + STATE(1516), 2, sym_comment, - STATE(4529), 1, - sym_block, - STATE(4690), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [19605] = 5, + aux_sym__types_body_repeat1, + ACTIONS(3758), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + aux_sym__val_number_decimal_token1, + ACTIONS(3760), 39, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [19525] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1510), 1, + ACTIONS(2831), 1, + sym__newline, + STATE(1517), 1, + sym_comment, + STATE(1636), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2732), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2730), 36, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [19593] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1518), 1, sym_comment, - ACTIONS(2565), 5, + ACTIONS(2583), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3757), 13, + ACTIONS(3771), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156317,7 +157544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2563), 29, + ACTIONS(2581), 29, anon_sym_in, anon_sym_DASH2, anon_sym_and2, @@ -156347,14 +157574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19665] = 5, + [19653] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2829), 1, aux_sym_cmd_identifier_token2, - STATE(1511), 1, + STATE(1519), 1, sym_comment, - ACTIONS(2501), 17, + ACTIONS(2525), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -156372,7 +157599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2503), 29, + ACTIONS(2527), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -156402,14 +157629,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19725] = 5, + [19713] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2829), 1, aux_sym_cmd_identifier_token2, - STATE(1512), 1, + STATE(1520), 1, sym_comment, - ACTIONS(2635), 17, + ACTIONS(2648), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -156427,7 +157654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2637), 29, + ACTIONS(2650), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -156457,40 +157684,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19785] = 15, + [19773] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1521), 1, + sym_comment, + ACTIONS(2958), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + aux_sym__val_number_decimal_token1, + ACTIONS(2960), 40, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [19831] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1513), 1, + STATE(1522), 1, sym_comment, - STATE(4385), 1, + STATE(4654), 1, sym_block, - STATE(4629), 1, + STATE(4817), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156522,40 +157803,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [19865] = 15, + [19911] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1514), 1, + STATE(1523), 1, sym_comment, - STATE(4397), 1, + STATE(4529), 1, sym_block, - STATE(4638), 1, + STATE(4868), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156587,94 +157868,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [19945] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1515), 1, - sym_comment, - ACTIONS(2938), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - aux_sym__val_number_decimal_token1, - ACTIONS(2940), 40, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [20003] = 15, + [19991] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1516), 1, + STATE(1524), 1, sym_comment, - STATE(4427), 1, + STATE(4663), 1, sym_block, - STATE(4647), 1, + STATE(4847), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156706,40 +157933,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20083] = 15, + [20071] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1517), 1, + STATE(1525), 1, sym_comment, - STATE(4429), 1, + STATE(4658), 1, sym_block, - STATE(4659), 1, + STATE(4850), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156771,14 +157998,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20163] = 5, + [20151] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2829), 1, aux_sym_cmd_identifier_token2, - STATE(1518), 1, + STATE(1526), 1, sym_comment, - ACTIONS(968), 17, + ACTIONS(886), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -156796,7 +158023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(868), 29, + ACTIONS(866), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -156826,38 +158053,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20223] = 12, + [20211] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(3760), 1, + ACTIONS(3788), 1, anon_sym_DOT, - STATE(1519), 1, + STATE(1527), 1, sym_comment, - STATE(1826), 1, + STATE(1860), 1, sym__immediate_decimal, - ACTIONS(3762), 2, + ACTIONS(3790), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3764), 2, + ACTIONS(3792), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(698), 2, + STATE(688), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1602), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 30, + ACTIONS(1598), 30, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -156888,20 +158115,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20297] = 5, + [20285] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1820), 1, sym__unquoted_pattern, - STATE(1520), 1, + STATE(1528), 1, sym_comment, - ACTIONS(868), 5, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 41, + ACTIONS(886), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156943,40 +158170,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20357] = 15, + [20345] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1521), 1, + STATE(1529), 1, sym_comment, - STATE(4434), 1, + STATE(4714), 1, sym_block, - STATE(4687), 1, + STATE(4834), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157008,40 +158235,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20437] = 15, + [20425] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1522), 1, + STATE(1530), 1, sym_comment, - STATE(4435), 1, + STATE(4725), 1, sym_block, - STATE(4688), 1, + STATE(4837), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157073,40 +158300,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20517] = 15, + [20505] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1523), 1, + STATE(1531), 1, sym_comment, - STATE(4437), 1, + STATE(4726), 1, sym_block, - STATE(4693), 1, + STATE(4842), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157138,40 +158365,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20597] = 15, + [20585] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1524), 1, + STATE(1532), 1, sym_comment, - STATE(4440), 1, + STATE(4739), 1, sym_block, - STATE(4703), 1, + STATE(4843), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157203,110 +158430,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20677] = 20, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, - anon_sym_DASH_DASH, - STATE(1525), 1, - sym_comment, - STATE(1713), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3729), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [20767] = 15, + [20665] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1526), 1, + STATE(1533), 1, sym_comment, - STATE(4525), 1, + STATE(4700), 1, sym_block, - STATE(4689), 1, + STATE(4844), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157338,40 +158495,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20847] = 15, + [20745] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1527), 1, + STATE(1534), 1, sym_comment, - STATE(4527), 1, + STATE(4713), 1, sym_block, - STATE(4694), 1, + STATE(4845), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157403,40 +158560,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20927] = 15, + [20825] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1528), 1, + STATE(1535), 1, sym_comment, - STATE(4528), 1, + STATE(4715), 1, sym_block, - STATE(4696), 1, + STATE(4848), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157468,40 +158625,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21007] = 15, + [20905] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1529), 1, + STATE(1536), 1, sym_comment, - STATE(4534), 1, + STATE(4719), 1, sym_block, - STATE(4702), 1, - sym_returns, STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + sym_returns, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157533,173 +158690,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21087] = 18, + [20985] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3772), 1, - anon_sym_LBRACK, ACTIONS(3774), 1, - anon_sym_DOLLAR, - ACTIONS(3776), 1, - anon_sym_LBRACE, - STATE(1530), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3093), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3095), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [21173] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1531), 1, + STATE(1537), 1, sym_comment, - STATE(4564), 1, + STATE(4652), 1, sym_block, - STATE(4738), 1, + STATE(4821), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21253] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1532), 1, - sym_comment, - STATE(4565), 1, - sym_block, - STATE(4740), 1, - sym_returns, - STATE(4849), 1, + STATE(5066), 1, sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157731,40 +158755,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21333] = 15, + [21065] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1533), 1, + STATE(1538), 1, sym_comment, - STATE(4494), 1, + STATE(4778), 1, sym_block, - STATE(4648), 1, + STATE(4825), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157796,105 +158820,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21413] = 15, + [21145] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3699), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3794), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3796), 1, + anon_sym_DOLLAR, + ACTIONS(3798), 1, anon_sym_LBRACE, - STATE(1534), 1, + ACTIONS(3800), 1, + anon_sym_DQUOTE, + ACTIONS(3802), 1, + anon_sym_SQUOTE, + ACTIONS(3804), 1, + anon_sym_BQUOTE, + ACTIONS(3806), 1, + sym_raw_string_begin, + STATE(1539), 1, sym_comment, - STATE(4495), 1, - sym_block, - STATE(4651), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21493] = 15, + STATE(2013), 1, + sym__val_number_decimal, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3695), 2, + anon_sym_export, + anon_sym_in, + STATE(3346), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3256), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2379), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3697), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [21231] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1535), 1, + STATE(1540), 1, sym_comment, - STATE(4068), 1, + STATE(4479), 1, sym_block, - STATE(4691), 1, + STATE(4894), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157926,40 +158953,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21573] = 15, + [21311] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1536), 1, + STATE(1541), 1, sym_comment, - STATE(4069), 1, + STATE(4480), 1, sym_block, - STATE(4692), 1, + STATE(4895), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157991,54 +159018,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21653] = 21, + [21391] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3784), 1, + ACTIONS(3814), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, + ACTIONS(3816), 1, sym__newline, - ACTIONS(3788), 1, + ACTIONS(3818), 1, anon_sym_RBRACK, - STATE(1537), 1, + STATE(1542), 1, sym_comment, - STATE(1703), 1, + STATE(1710), 1, aux_sym__types_body_repeat1, - STATE(1770), 1, + STATE(1789), 1, aux_sym__command_list_body_repeat1, - STATE(2107), 1, + STATE(2138), 1, sym__val_number_decimal, - STATE(4524), 1, + STATE(4636), 1, sym__command_name, - STATE(4710), 1, + STATE(4851), 1, sym_cmd_identifier, - STATE(4711), 1, + STATE(4852), 1, sym_val_string, - STATE(4854), 1, + STATE(5233), 1, sym__command_list_body, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, + ACTIONS(3810), 2, anon_sym_export, anon_sym_in, - STATE(3505), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3812), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -158062,40 +159089,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [21745] = 15, + [21483] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1538), 1, + STATE(1543), 1, sym_comment, - STATE(4316), 1, + STATE(4411), 1, sym_block, - STATE(4781), 1, + STATE(4885), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158127,40 +159154,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21825] = 15, + [21563] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1539), 1, + STATE(1544), 1, sym_comment, - STATE(4320), 1, + STATE(4412), 1, sym_block, - STATE(4782), 1, + STATE(4886), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158192,40 +159219,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21905] = 15, + [21643] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1540), 1, + STATE(1545), 1, sym_comment, - STATE(4345), 1, + STATE(4491), 1, sym_block, - STATE(4622), 1, + STATE(4907), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158257,40 +159284,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21985] = 15, + [21723] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1541), 1, + STATE(1546), 1, sym_comment, - STATE(4346), 1, + STATE(4492), 1, sym_block, - STATE(4771), 1, + STATE(4909), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158322,40 +159349,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22065] = 15, + [21803] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1542), 1, + STATE(1547), 1, sym_comment, - STATE(4347), 1, + STATE(4505), 1, sym_block, - STATE(4644), 1, + STATE(4913), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158387,40 +159414,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22145] = 15, + [21883] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1543), 1, + STATE(1548), 1, sym_comment, - STATE(4220), 1, + STATE(4208), 1, sym_block, - STATE(4645), 1, + STATE(4917), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158452,40 +159479,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22225] = 15, + [21963] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1544), 1, + STATE(1549), 1, sym_comment, - STATE(4376), 1, + STATE(4591), 1, sym_block, - STATE(4747), 1, + STATE(4898), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158517,40 +159544,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22305] = 15, + [22043] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1545), 1, + STATE(1550), 1, sym_comment, - STATE(4387), 1, + STATE(4613), 1, sym_block, - STATE(4643), 1, + STATE(4905), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158582,40 +159609,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22385] = 15, + [22123] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1546), 1, + STATE(1551), 1, sym_comment, - STATE(4164), 1, + STATE(4262), 1, sym_block, - STATE(4662), 1, + STATE(4863), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158647,40 +159674,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22465] = 15, + [22203] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1547), 1, + STATE(1552), 1, sym_comment, - STATE(4170), 1, + STATE(4263), 1, sym_block, - STATE(4670), 1, + STATE(4864), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158712,40 +159739,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22545] = 15, + [22283] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1548), 1, + STATE(1553), 1, sym_comment, - STATE(4201), 1, + STATE(4268), 1, sym_block, - STATE(4672), 1, + STATE(4865), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158777,40 +159804,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22625] = 15, + [22363] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1549), 1, + STATE(1554), 1, sym_comment, - STATE(4202), 1, + STATE(4269), 1, sym_block, - STATE(4675), 1, + STATE(4866), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158842,51 +159869,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22705] = 18, + [22443] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3010), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(3012), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(3014), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(3022), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3790), 1, + ACTIONS(3820), 1, anon_sym_LBRACK, - ACTIONS(3792), 1, + ACTIONS(3822), 1, anon_sym_DOLLAR, - ACTIONS(3794), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(1550), 1, + STATE(1555), 1, sym_comment, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - ACTIONS(3637), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3093), 2, + STATE(2908), 2, sym_cmd_identifier, sym_val_string, - STATE(3095), 3, + STATE(2912), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2548), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -158910,105 +159937,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [22791] = 15, + [22529] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1551), 1, + STATE(1556), 1, sym_comment, - STATE(4244), 1, + STATE(4288), 1, sym_block, - STATE(4704), 1, + STATE(4873), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22871] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1552), 1, - sym_comment, - STATE(4265), 1, - sym_block, - STATE(4705), 1, - sym_returns, - STATE(4849), 1, + STATE(5066), 1, sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159040,40 +160002,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22951] = 15, + [22609] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1553), 1, + STATE(1557), 1, sym_comment, - STATE(4321), 1, + STATE(4290), 1, sym_block, - STATE(4634), 1, + STATE(4875), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159105,40 +160067,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23031] = 15, + [22689] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1554), 1, + STATE(1558), 1, sym_comment, - STATE(4322), 1, + STATE(4327), 1, sym_block, - STATE(4635), 1, + STATE(4928), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159170,40 +160132,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23111] = 15, + [22769] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1555), 1, + STATE(1559), 1, sym_comment, - STATE(4053), 1, + STATE(4328), 1, sym_block, - STATE(4637), 1, + STATE(4931), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159235,40 +160197,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23191] = 15, + [22849] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1556), 1, + STATE(1560), 1, sym_comment, - STATE(4054), 1, + STATE(4342), 1, sym_block, - STATE(4639), 1, + STATE(4944), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159300,40 +160262,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23271] = 15, + [22929] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1557), 1, + STATE(1561), 1, sym_comment, - STATE(4086), 1, + STATE(4343), 1, sym_block, - STATE(4664), 1, + STATE(4945), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159365,40 +160327,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23351] = 15, + [23009] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1558), 1, + STATE(1562), 1, sym_comment, - STATE(4090), 1, + STATE(4518), 1, sym_block, - STATE(4666), 1, + STATE(4795), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159430,40 +160392,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23431] = 15, + [23089] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1559), 1, + STATE(1563), 1, sym_comment, - STATE(4091), 1, + STATE(4359), 1, sym_block, - STATE(4667), 1, + STATE(4796), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159495,40 +160457,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23511] = 15, + [23169] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1560), 1, + STATE(1564), 1, sym_comment, - STATE(4093), 1, + STATE(4360), 1, sym_block, - STATE(4668), 1, + STATE(4798), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159560,40 +160522,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23591] = 15, + [23249] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1561), 1, + STATE(1565), 1, sym_comment, - STATE(4137), 1, + STATE(4362), 1, sym_block, - STATE(4679), 1, + STATE(4799), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159625,40 +160587,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23671] = 15, + [23329] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1562), 1, + STATE(1566), 1, sym_comment, - STATE(4142), 1, + STATE(4372), 1, sym_block, - STATE(4680), 1, + STATE(4813), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159690,111 +160652,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23751] = 21, + [23409] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, - ACTIONS(3796), 1, - anon_sym_RBRACK, - STATE(1563), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1567), 1, sym_comment, - STATE(1703), 1, - aux_sym__types_body_repeat1, - STATE(1770), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4524), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - STATE(4815), 1, - sym__command_list_body, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(4373), 1, + sym_block, + STATE(4814), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [23843] = 13, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23489] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2860), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1564), 1, + STATE(1568), 1, sym_comment, - STATE(1579), 1, + STATE(1582), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2744), 29, + ACTIONS(2754), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -159824,35 +160780,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23919] = 12, + [23565] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2860), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1565), 1, + STATE(1569), 1, sym_comment, - STATE(1581), 1, + STATE(1584), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(2756), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 33, + ACTIONS(2754), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -159886,29 +160842,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23993] = 9, + [23639] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2860), 1, sym__newline, - STATE(1566), 1, + STATE(1570), 1, sym_comment, - STATE(1583), 1, + STATE(1586), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2746), 3, + ACTIONS(2756), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2744), 36, + ACTIONS(2754), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -159945,25 +160901,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24061] = 7, + [23707] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2860), 1, sym__newline, - STATE(1567), 1, + STATE(1571), 1, sym_comment, - STATE(1585), 1, + STATE(1588), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2746), 5, + ACTIONS(2756), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2744), 38, + ACTIONS(2754), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160002,51 +160958,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24125] = 18, + [23771] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2860), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - STATE(1568), 1, + STATE(1572), 1, sym_comment, - STATE(1587), 1, + STATE(1590), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160055,7 +161011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 14, + ACTIONS(2754), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160070,53 +161026,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24211] = 19, + [23857] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2860), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3846), 1, anon_sym_and2, - STATE(1569), 1, + STATE(1573), 1, sym_comment, - STATE(1678), 1, + STATE(1592), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160125,7 +161081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 13, + ACTIONS(2754), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160139,55 +161095,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [24299] = 20, + [23945] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3846), 1, anon_sym_and2, - ACTIONS(3826), 1, + ACTIONS(3848), 1, anon_sym_xor2, - STATE(1570), 1, + STATE(1574), 1, sym_comment, - STATE(1590), 1, + STATE(1594), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160196,7 +161152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 12, + ACTIONS(2754), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160209,40 +161165,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [24389] = 14, + [24035] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2860), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1571), 1, + STATE(1575), 1, sym_comment, - STATE(1592), 1, + STATE(1596), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160251,7 +161207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 21, + ACTIONS(2754), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160273,32 +161229,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24467] = 11, + [24113] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2860), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1572), 1, + STATE(1576), 1, sym_comment, - STATE(1594), 1, + STATE(1598), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(2756), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2744), 35, + ACTIONS(2754), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160334,45 +161290,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24539] = 15, + [24185] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2860), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1573), 1, + STATE(1577), 1, sym_comment, - STATE(1596), 1, + STATE(1600), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160381,7 +161337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 17, + ACTIONS(2754), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160399,47 +161355,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24619] = 16, + [24265] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2860), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - STATE(1574), 1, + STATE(1578), 1, sym_comment, - STATE(1598), 1, + STATE(1602), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160448,7 +161404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 16, + ACTIONS(2754), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160465,49 +161421,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24701] = 17, + [24347] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2860), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - STATE(1575), 1, + STATE(1579), 1, sym_comment, - STATE(1600), 1, + STATE(1604), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160516,7 +161472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 15, + ACTIONS(2754), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160532,116 +161488,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [24785] = 15, + [24431] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1576), 1, - sym_comment, - STATE(4538), 1, - sym_block, - STATE(4686), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [24865] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(3000), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(3004), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(3012), 1, sym_raw_string_begin, - ACTIONS(3784), 1, + ACTIONS(3854), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3828), 1, + ACTIONS(3856), 1, anon_sym_LBRACK, - ACTIONS(3830), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR, - ACTIONS(3832), 1, + ACTIONS(3860), 1, anon_sym_LBRACE, - STATE(1577), 1, + STATE(1580), 1, sym_comment, - STATE(2107), 1, + STATE(2139), 1, sym__val_number_decimal, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, + ACTIONS(3850), 2, anon_sym_export, anon_sym_in, - STATE(4760), 2, + STATE(3448), 2, sym_cmd_identifier, sym_val_string, - STATE(4762), 3, + STATE(3366), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(3505), 4, + STATE(2568), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3852), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -160665,40 +161556,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [24951] = 13, + [24517] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1578), 1, + STATE(1581), 1, sym_comment, - STATE(1614), 1, + STATE(1619), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2702), 29, + ACTIONS(2720), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160728,38 +161619,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25027] = 12, + [24593] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1579), 1, + STATE(1582), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2706), 30, + ACTIONS(2724), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160790,35 +161681,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25101] = 12, + [24667] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1580), 1, + STATE(1583), 1, sym_comment, - STATE(1615), 1, + STATE(1620), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2722), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 33, + ACTIONS(2720), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160852,33 +161743,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25175] = 11, + [24741] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1581), 1, + STATE(1584), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2726), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 34, + ACTIONS(2724), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160913,29 +161804,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25247] = 9, + [24813] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - STATE(1582), 1, + STATE(1585), 1, sym_comment, - STATE(1616), 1, + STATE(1621), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, + ACTIONS(2722), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2702), 36, + ACTIONS(2720), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160972,27 +161863,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25315] = 8, + [24881] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1583), 1, + STATE(1586), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2708), 3, + ACTIONS(2726), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2706), 37, + ACTIONS(2724), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161030,25 +161921,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25381] = 7, + [24947] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - STATE(1584), 1, + STATE(1587), 1, sym_comment, - STATE(1617), 1, + STATE(1622), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, + ACTIONS(2722), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2702), 38, + ACTIONS(2720), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -161087,23 +161978,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25445] = 6, + [25011] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1585), 1, + STATE(1588), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2708), 5, + ACTIONS(2726), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2706), 39, + ACTIONS(2724), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161143,51 +162034,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25507] = 18, + [25073] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - STATE(1586), 1, + STATE(1589), 1, sym_comment, - STATE(1618), 1, + STATE(1623), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161196,7 +162087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 14, + ACTIONS(2720), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161211,49 +162102,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25593] = 17, + [25159] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1587), 1, + STATE(1590), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161262,7 +162153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 15, + ACTIONS(2724), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161278,124 +162169,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25677] = 19, + [25243] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3846), 1, anon_sym_and2, - STATE(1588), 1, + STATE(1591), 1, sym_comment, - STATE(1619), 1, + STATE(1624), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 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, - [25765] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - ACTIONS(3826), 1, - anon_sym_xor2, - STATE(1589), 1, - sym_comment, - STATE(1620), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(3826), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161404,7 +162224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 12, + ACTIONS(2720), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161416,54 +162236,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [25855] = 19, + [25331] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3888), 1, anon_sym_and2, - ACTIONS(3862), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1590), 1, + STATE(1592), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161472,7 +162291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 13, + ACTIONS(2724), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161485,41 +162304,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_xor2, anon_sym_or2, - [25943] = 14, + [25417] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1591), 1, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3844), 1, + anon_sym_bit_DASHor2, + ACTIONS(3846), 1, + anon_sym_and2, + ACTIONS(3848), 1, + anon_sym_xor2, + STATE(1593), 1, sym_comment, - STATE(1621), 1, + STATE(1625), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161528,7 +162363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 21, + ACTIONS(2720), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161540,48 +162375,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26021] = 13, + [25507] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + ACTIONS(3884), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3886), 1, + anon_sym_bit_DASHor2, + ACTIONS(3888), 1, + anon_sym_and2, + ACTIONS(3890), 1, + anon_sym_xor2, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1592), 1, + STATE(1594), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(3880), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161590,7 +162431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 22, + ACTIONS(2724), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161603,43 +162444,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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26097] = 11, + [25595] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1593), 1, + STATE(1595), 1, sym_comment, - STATE(1622), 1, + STATE(1626), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 35, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3836), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2720), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161654,51 +162502,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26169] = 10, + [25673] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1594), 1, + STATE(1596), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2706), 36, + ACTIONS(3876), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3868), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3878), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2724), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161714,74 +162565,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26239] = 15, + [25749] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1595), 1, + STATE(1597), 1, sym_comment, - STATE(1623), 1, + STATE(1627), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(2722), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(2720), 35, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161796,55 +162613,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26319] = 14, + [25821] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1596), 1, + STATE(1598), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(2726), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(2724), 36, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161860,50 +162673,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26397] = 16, + [25891] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - STATE(1597), 1, + STATE(1599), 1, sym_comment, - STATE(1624), 1, + STATE(1628), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161912,7 +162740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 16, + ACTIONS(2720), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161927,47 +162755,46 @@ 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, - [26479] = 15, + [25971] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1598), 1, + STATE(1600), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161976,7 +162803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 17, + ACTIONS(2724), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161992,51 +162819,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26559] = 17, + [26049] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - STATE(1599), 1, + STATE(1601), 1, sym_comment, - STATE(1625), 1, + STATE(1629), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162045,7 +162871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 15, + ACTIONS(2720), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162060,48 +162886,47 @@ 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, - [26643] = 16, + [26131] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1600), 1, + STATE(1602), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162110,7 +162935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 16, + ACTIONS(2724), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -162126,41 +162951,175 @@ 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, - [26725] = 13, + [26211] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2804), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1601), 1, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + STATE(1603), 1, sym_comment, - STATE(1627), 1, + STATE(1630), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2720), 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, + [26295] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + ACTIONS(3884), 1, + anon_sym_bit_DASHxor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1604), 1, + sym_comment, + ACTIONS(3862), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3866), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3870), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3872), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3876), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3868), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3880), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3878), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2724), 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, + [26377] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1605), 1, + sym_comment, + STATE(1632), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2712), 29, + ACTIONS(2730), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162190,35 +163149,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26801] = 12, + [26453] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1602), 1, + STATE(1606), 1, sym_comment, - STATE(1629), 1, + STATE(1634), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2732), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 33, + ACTIONS(2730), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162252,29 +163211,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26875] = 9, + [26527] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(3699), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3892), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(1607), 1, + sym_comment, + STATE(2013), 1, + sym__val_number_decimal, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3695), 2, + anon_sym_export, + anon_sym_in, + STATE(3346), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3256), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(502), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3697), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [26613] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, sym__newline, - STATE(1603), 1, + STATE(1608), 1, sym_comment, - STATE(1631), 1, + STATE(1638), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2714), 3, + ACTIONS(2732), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2712), 36, + ACTIONS(2730), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162306,45 +163329,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26943] = 15, + [26677] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(1604), 1, + STATE(1609), 1, sym_comment, - STATE(4550), 1, + STATE(4610), 1, sym_block, - STATE(4719), 1, + STATE(4862), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5053), 1, sym__one_type, - STATE(5169), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162376,108 +163401,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [27023] = 7, + [26757] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - STATE(1605), 1, - sym_comment, - STATE(1633), 1, - aux_sym__repeat_newline, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2714), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2712), 38, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [27087] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - STATE(1606), 1, + STATE(1610), 1, sym_comment, - STATE(1635), 1, + STATE(1640), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162486,7 +163454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 14, + ACTIONS(2730), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162501,53 +163469,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [27173] = 19, + [26843] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3846), 1, anon_sym_and2, - STATE(1607), 1, + STATE(1611), 1, sym_comment, - STATE(1637), 1, + STATE(1642), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162556,7 +163524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 13, + ACTIONS(2730), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162570,55 +163538,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [27261] = 20, + [26931] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3846), 1, anon_sym_and2, - ACTIONS(3826), 1, + ACTIONS(3848), 1, anon_sym_xor2, - STATE(1608), 1, + STATE(1612), 1, sym_comment, - STATE(1639), 1, + STATE(1644), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162627,7 +163595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 12, + ACTIONS(2730), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162640,40 +163608,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [27351] = 14, + [27021] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1609), 1, + STATE(1613), 1, sym_comment, - STATE(1641), 1, + STATE(1646), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162682,7 +163650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 21, + ACTIONS(2730), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162704,32 +163672,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27429] = 11, + [27099] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1610), 1, + STATE(1614), 1, sym_comment, - STATE(1643), 1, + STATE(1648), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2732), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2712), 35, + ACTIONS(2730), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162765,45 +163733,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27501] = 15, + [27171] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1611), 1, + STATE(1615), 1, sym_comment, - STATE(1645), 1, + STATE(1650), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162812,7 +163780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 17, + ACTIONS(2730), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162830,47 +163798,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27581] = 16, + [27251] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - STATE(1612), 1, + STATE(1616), 1, sym_comment, - STATE(1647), 1, + STATE(1652), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162879,7 +163847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 16, + ACTIONS(2730), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162896,49 +163864,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27663] = 17, + [27333] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - STATE(1613), 1, + STATE(1617), 1, sym_comment, - STATE(1649), 1, + STATE(1654), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162947,7 +163915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 15, + ACTIONS(2730), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162963,38 +163931,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [27747] = 12, + [27417] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3814), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3816), 1, + sym__newline, + ACTIONS(3898), 1, + anon_sym_RBRACK, + STATE(1618), 1, + sym_comment, + STATE(1710), 1, + aux_sym__types_body_repeat1, + STATE(1789), 1, + aux_sym__command_list_body_repeat1, + STATE(2138), 1, + sym__val_number_decimal, + STATE(4636), 1, + sym__command_name, + STATE(4851), 1, + sym_cmd_identifier, + STATE(4852), 1, + sym_val_string, + STATE(5122), 1, + sym__command_list_body, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3810), 2, + anon_sym_export, + anon_sym_in, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3812), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [27509] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1614), 1, + STATE(1619), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 30, + ACTIONS(2738), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163025,33 +164064,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27821] = 11, + [27583] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1615), 1, + STATE(1620), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2740), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 34, + ACTIONS(2738), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163086,27 +164125,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27893] = 8, + [27655] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1616), 1, + STATE(1621), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, + ACTIONS(2740), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2720), 37, + ACTIONS(2738), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163144,23 +164183,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27959] = 6, + [27721] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1617), 1, + STATE(1622), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(2740), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 39, + ACTIONS(2738), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163200,49 +164239,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28021] = 17, + [27783] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1618), 1, + STATE(1623), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163251,7 +164290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 15, + ACTIONS(2738), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163267,51 +164306,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [28105] = 18, + [27867] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3888), 1, anon_sym_and2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1619), 1, + STATE(1624), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163320,7 +164359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 14, + ACTIONS(2738), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163335,53 +164374,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [28191] = 19, + [27953] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3888), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(3890), 1, anon_sym_xor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1620), 1, + STATE(1625), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163390,7 +164429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 13, + ACTIONS(2738), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163404,38 +164443,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [28279] = 13, + [28041] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1621), 1, + STATE(1626), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163444,7 +164483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 22, + ACTIONS(2738), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163467,30 +164506,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28355] = 10, + [28117] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1622), 1, + STATE(1627), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2740), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 36, + ACTIONS(2738), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163527,43 +164566,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28425] = 14, + [28187] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1623), 1, + STATE(1628), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163572,7 +164611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 18, + ACTIONS(2738), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163591,45 +164630,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28503] = 15, + [28265] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1624), 1, + STATE(1629), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163638,7 +164677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 17, + ACTIONS(2738), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163656,47 +164695,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28583] = 16, + [28345] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1625), 1, + STATE(1630), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163705,7 +164744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 16, + ACTIONS(2738), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163722,40 +164761,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [28665] = 13, + [28427] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1626), 1, + STATE(1631), 1, sym_comment, - STATE(1650), 1, + STATE(1655), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2728), 29, + ACTIONS(2746), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -163785,38 +164824,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28741] = 12, + [28503] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1627), 1, + STATE(1632), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2732), 30, + ACTIONS(2750), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163847,35 +164886,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28815] = 12, + [28577] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1628), 1, + STATE(1633), 1, sym_comment, - STATE(1651), 1, + STATE(1656), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2748), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 33, + ACTIONS(2746), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -163909,33 +164948,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28889] = 11, + [28651] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1629), 1, + STATE(1634), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2752), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 34, + ACTIONS(2750), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163970,29 +165009,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28961] = 9, + [28723] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - STATE(1630), 1, + STATE(1635), 1, sym_comment, - STATE(1652), 1, + STATE(1657), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2730), 3, + ACTIONS(2748), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2728), 36, + ACTIONS(2746), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -164029,27 +165068,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29029] = 8, + [28791] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1631), 1, + STATE(1636), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2734), 3, + ACTIONS(2752), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2732), 37, + ACTIONS(2750), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164087,25 +165126,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29095] = 7, + [28857] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - STATE(1632), 1, + STATE(1637), 1, sym_comment, - STATE(1653), 1, + STATE(1658), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, + ACTIONS(2748), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2728), 38, + ACTIONS(2746), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -164144,23 +165183,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29159] = 6, + [28921] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1633), 1, + STATE(1638), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2734), 5, + ACTIONS(2752), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2732), 39, + ACTIONS(2750), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164200,51 +165239,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29221] = 18, + [28983] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - STATE(1634), 1, + STATE(1639), 1, sym_comment, - STATE(1654), 1, + STATE(1659), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164253,7 +165292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 14, + ACTIONS(2746), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164268,49 +165307,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [29307] = 17, + [29069] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1635), 1, + STATE(1640), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164319,7 +165358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 15, + ACTIONS(2750), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164335,120 +165374,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [29391] = 19, + [29153] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3846), 1, anon_sym_and2, - STATE(1636), 1, + STATE(1641), 1, sym_comment, - STATE(1655), 1, + STATE(1660), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 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, - [29479] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1637), 1, - sym_comment, - ACTIONS(3834), 2, + ACTIONS(3826), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164457,8 +165429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 14, - sym__newline, + ACTIONS(2746), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164472,123 +165443,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [29565] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - ACTIONS(3826), 1, - anon_sym_xor2, - STATE(1638), 1, - sym_comment, - STATE(1656), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 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, - [29655] = 19, + [29241] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3888), 1, anon_sym_and2, - ACTIONS(3862), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1639), 1, + STATE(1642), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164597,7 +165496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 13, + ACTIONS(2750), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164610,41 +165509,125 @@ static 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, - [29743] = 14, + [29327] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1640), 1, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3844), 1, + anon_sym_bit_DASHor2, + ACTIONS(3846), 1, + anon_sym_and2, + ACTIONS(3848), 1, + anon_sym_xor2, + STATE(1643), 1, sym_comment, - STATE(1657), 1, + STATE(1661), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2746), 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, + [29417] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + ACTIONS(3884), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3886), 1, + anon_sym_bit_DASHor2, + ACTIONS(3888), 1, + anon_sym_and2, + ACTIONS(3890), 1, + anon_sym_xor2, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1644), 1, + sym_comment, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3880), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164653,7 +165636,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 21, + ACTIONS(2750), 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, + [29505] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1645), 1, + sym_comment, + STATE(1662), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2746), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164675,38 +165714,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29821] = 13, + [29583] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1641), 1, + STATE(1646), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164715,7 +165754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 22, + ACTIONS(2750), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164738,32 +165777,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29897] = 11, + [29659] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1642), 1, + STATE(1647), 1, sym_comment, - STATE(1658), 1, + STATE(1663), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2748), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2728), 35, + ACTIONS(2746), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -164799,30 +165838,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29969] = 10, + [29731] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1643), 1, + STATE(1648), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2752), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2732), 36, + ACTIONS(2750), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164859,45 +165898,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30039] = 15, + [29801] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1644), 1, + STATE(1649), 1, sym_comment, - STATE(1659), 1, + STATE(1664), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164906,7 +165945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 17, + ACTIONS(2746), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164924,43 +165963,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30119] = 14, + [29881] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1645), 1, + STATE(1650), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164969,7 +166008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 18, + ACTIONS(2750), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164988,47 +166027,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30197] = 16, + [29959] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - STATE(1646), 1, + STATE(1651), 1, sym_comment, - STATE(1660), 1, + STATE(1665), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165037,7 +166076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 16, + ACTIONS(2746), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165054,45 +166093,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30279] = 15, + [30041] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1647), 1, + STATE(1652), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165101,7 +166140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 17, + ACTIONS(2750), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165119,49 +166158,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30359] = 17, + [30121] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - STATE(1648), 1, + STATE(1653), 1, sym_comment, - STATE(1661), 1, + STATE(1666), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165170,7 +166209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 15, + ACTIONS(2746), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165186,47 +166225,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [30443] = 16, + [30205] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1649), 1, + STATE(1654), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165235,7 +166274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 16, + ACTIONS(2750), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165252,38 +166291,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [30525] = 12, + [30287] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1650), 1, + STATE(1655), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2740), 30, + ACTIONS(2762), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165314,33 +166353,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30599] = 11, + [30361] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1651), 1, + STATE(1656), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2764), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 34, + ACTIONS(2762), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165375,27 +166414,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30671] = 8, + [30433] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1652), 1, + STATE(1657), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2742), 3, + ACTIONS(2764), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2740), 37, + ACTIONS(2762), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165433,23 +166472,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30737] = 6, + [30499] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1653), 1, + STATE(1658), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2742), 5, + ACTIONS(2764), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2740), 39, + ACTIONS(2762), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165489,49 +166528,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30799] = 17, + [30561] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1654), 1, + STATE(1659), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165540,7 +166579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 15, + ACTIONS(2762), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165556,51 +166595,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [30883] = 18, + [30645] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3888), 1, anon_sym_and2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1655), 1, + STATE(1660), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165609,7 +166648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 14, + ACTIONS(2762), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165624,53 +166663,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [30969] = 19, + [30731] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3888), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(3890), 1, anon_sym_xor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1656), 1, + STATE(1661), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165679,7 +166718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 13, + ACTIONS(2762), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165693,38 +166732,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [31057] = 13, + [30819] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1657), 1, + STATE(1662), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165733,7 +166772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 22, + ACTIONS(2762), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165756,30 +166795,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31133] = 10, + [30895] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1658), 1, + STATE(1663), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2764), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2740), 36, + ACTIONS(2762), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165816,43 +166855,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31203] = 14, + [30965] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1659), 1, + STATE(1664), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165861,7 +166900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 18, + ACTIONS(2762), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165880,45 +166919,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31281] = 15, + [31043] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1660), 1, + STATE(1665), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165927,7 +166966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 17, + ACTIONS(2762), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165945,47 +166984,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31361] = 16, + [31123] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1661), 1, + STATE(1666), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165994,7 +167033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 16, + ACTIONS(2762), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166011,231 +167050,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [31443] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1662), 1, - sym_comment, - STATE(4545), 1, - sym_block, - STATE(4699), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31523] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1663), 1, - sym_comment, - STATE(4553), 1, - sym_block, - STATE(4722), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31603] = 15, - ACTIONS(3), 1, + [31205] = 20, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1664), 1, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3900), 1, + anon_sym_DASH_DASH, + STATE(1667), 1, sym_comment, - STATE(4567), 1, - sym_block, - STATE(4734), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31683] = 11, + STATE(1723), 1, + aux_sym_decl_def_repeat1, + STATE(2133), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(3831), 1, + sym__command_name, + ACTIONS(3902), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3904), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3647), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [31295] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1665), 1, + STATE(1668), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 31, + ACTIONS(2551), 31, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166267,31 +167181,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31755] = 10, + [31367] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1666), 1, + STATE(1669), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 35, + ACTIONS(2551), 35, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166327,25 +167241,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31825] = 7, + [31437] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1667), 1, + STATE(1670), 1, sym_comment, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, + ACTIONS(2553), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2533), 38, + ACTIONS(2551), 38, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166384,21 +167298,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31889] = 5, + [31501] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1668), 1, + STATE(1671), 1, sym_comment, - ACTIONS(3872), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + ACTIONS(2553), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2533), 40, + ACTIONS(2551), 40, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166439,47 +167353,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31949] = 16, + [31561] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, + ACTIONS(3930), 1, anon_sym_bit_DASHor2, - STATE(1669), 1, + STATE(1672), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166488,7 +167402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 16, + ACTIONS(2551), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166505,49 +167419,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [32031] = 17, + [31643] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, + ACTIONS(3930), 1, anon_sym_bit_DASHor2, - ACTIONS(3890), 1, + ACTIONS(3932), 1, anon_sym_and2, - STATE(1670), 1, + STATE(1673), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166556,7 +167470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 15, + ACTIONS(2551), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166572,51 +167486,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [32115] = 18, + [31727] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, + ACTIONS(3930), 1, anon_sym_bit_DASHor2, - ACTIONS(3890), 1, + ACTIONS(3932), 1, anon_sym_and2, - ACTIONS(3892), 1, + ACTIONS(3934), 1, anon_sym_xor2, - STATE(1671), 1, + STATE(1674), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166625,7 +167539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 14, + ACTIONS(2551), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166640,36 +167554,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_or2, - [32201] = 12, + [31813] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1672), 1, + STATE(1675), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166678,7 +167592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 23, + ACTIONS(2551), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166702,28 +167616,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32275] = 9, + [31887] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1673), 1, + STATE(1676), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 37, + ACTIONS(2551), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166761,41 +167675,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32343] = 13, + [31955] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1674), 1, + STATE(1677), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166804,7 +167718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 19, + ACTIONS(2551), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166824,43 +167738,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32419] = 14, + [32031] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - STATE(1675), 1, + STATE(1678), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166869,7 +167783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 18, + ACTIONS(2551), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166888,45 +167802,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32497] = 15, + [32109] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, - STATE(1676), 1, + STATE(1679), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166935,7 +167849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 17, + ACTIONS(2551), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166953,51 +167867,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [32577] = 18, + [32189] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1806), 1, sym_raw_string_begin, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_LBRACE, + STATE(1680), 1, + sym_comment, + STATE(2133), 1, + sym__val_number_decimal, + ACTIONS(3647), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2908), 2, + sym_cmd_identifier, + sym_val_string, + STATE(2912), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3649), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [32275] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1681), 1, + sym_comment, + STATE(4573), 1, + sym_block, + STATE(4836), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32355] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1682), 1, + sym_comment, + STATE(4575), 1, + sym_block, + STATE(4840), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32435] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3814), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3894), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3896), 1, + ACTIONS(3942), 1, anon_sym_DOLLAR, - ACTIONS(3898), 1, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(1677), 1, + STATE(1683), 1, sym_comment, - STATE(2107), 1, + STATE(2138), 1, sym__val_number_decimal, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, + ACTIONS(3810), 2, anon_sym_export, anon_sym_in, - STATE(4760), 2, + STATE(4804), 2, sym_cmd_identifier, sym_val_string, - STATE(4762), 3, + STATE(4805), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(3505), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3812), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -167021,52 +168133,503 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [32663] = 18, + [32521] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1678), 1, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3814), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3946), 1, + anon_sym_LBRACK, + ACTIONS(3948), 1, + anon_sym_DOLLAR, + ACTIONS(3950), 1, + anon_sym_LBRACE, + STATE(1684), 1, sym_comment, - ACTIONS(3834), 2, + STATE(2138), 1, + sym__val_number_decimal, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3810), 2, + anon_sym_export, + anon_sym_in, + STATE(4804), 2, + sym_cmd_identifier, + sym_val_string, + STATE(4805), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3812), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [32607] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3822), 1, + anon_sym_DOLLAR, + ACTIONS(3952), 1, + anon_sym_LBRACK, + ACTIONS(3954), 1, + anon_sym_LBRACE, + STATE(1685), 1, + sym_comment, + STATE(2133), 1, + sym__val_number_decimal, + ACTIONS(3647), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2908), 2, + sym_cmd_identifier, + sym_val_string, + STATE(2912), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3649), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [32693] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1686), 1, + sym_comment, + STATE(4624), 1, + sym_block, + STATE(4947), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32773] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1687), 1, + sym_comment, + STATE(4625), 1, + sym_block, + STATE(4872), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32853] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1688), 1, + sym_comment, + STATE(4628), 1, + sym_block, + STATE(4874), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32933] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1689), 1, + sym_comment, + STATE(4629), 1, + sym_block, + STATE(4877), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [33013] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1690), 1, + sym_comment, + STATE(4609), 1, + sym_block, + STATE(4858), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [33093] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern, + STATE(1691), 1, + sym_comment, + STATE(1949), 1, + sym__immediate_decimal, + ACTIONS(3956), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3958), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(730), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + anon_sym_PLUS2, + ACTIONS(1598), 30, anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -167074,51 +168637,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [32749] = 11, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33164] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - STATE(1679), 1, + STATE(1692), 1, sym_comment, - STATE(1925), 1, + STATE(1967), 1, sym__immediate_decimal, - ACTIONS(3900), 2, + ACTIONS(3956), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, + ACTIONS(3958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(748), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1653), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 30, + ACTIONS(1651), 30, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -167149,49 +168714,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32820] = 19, + [33235] = 19, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2829), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, + ACTIONS(3900), 1, anon_sym_DASH_DASH, - STATE(1680), 1, + STATE(1693), 1, sym_comment, - STATE(1713), 1, + STATE(1712), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2168), 1, sym_long_flag, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(3729), 1, + STATE(3820), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3902), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3904), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3647), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -167217,36 +168782,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [32907] = 11, + [33322] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - STATE(1681), 1, + STATE(1694), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 30, + ACTIONS(2551), 30, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167277,31 +168842,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32978] = 10, + [33393] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - STATE(1682), 1, + STATE(1695), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 34, + ACTIONS(2551), 34, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167336,25 +168901,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33047] = 7, + [33462] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1683), 1, + STATE(1696), 1, sym_comment, - ACTIONS(3908), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, + ACTIONS(2553), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2533), 37, + ACTIONS(2551), 37, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167392,21 +168957,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33110] = 5, + [33525] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1684), 1, + STATE(1697), 1, sym_comment, - ACTIONS(3912), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + ACTIONS(2553), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2533), 39, + ACTIONS(2551), 39, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167446,47 +169011,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33169] = 16, + [33584] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3980), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3982), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3984), 1, anon_sym_bit_DASHor2, - STATE(1685), 1, + STATE(1698), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3978), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167495,7 +169060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 15, + ACTIONS(2551), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167511,49 +169076,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [33250] = 17, + [33665] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3980), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3982), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3984), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, + ACTIONS(3986), 1, anon_sym_and2, - STATE(1686), 1, + STATE(1699), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3978), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167562,7 +169127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 14, + ACTIONS(2551), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167577,51 +169142,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [33333] = 18, + [33748] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3980), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3982), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3984), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, + ACTIONS(3986), 1, anon_sym_and2, - ACTIONS(3932), 1, + ACTIONS(3988), 1, anon_sym_xor2, - STATE(1687), 1, + STATE(1700), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3978), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167630,7 +169195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 13, + ACTIONS(2551), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167644,99 +169209,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_or2, - [33418] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3936), 1, - anon_sym_RBRACK, - STATE(1688), 1, - sym_comment, - STATE(1726), 1, - aux_sym__types_body_repeat1, - STATE(1797), 1, - aux_sym__types_body_repeat3, - STATE(4496), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - STATE(4842), 1, - sym__types_body, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [33495] = 12, + [33833] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - STATE(1689), 1, + STATE(1701), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3920), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167745,7 +169247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 22, + ACTIONS(2551), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167768,28 +169270,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33568] = 9, + [33906] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - STATE(1690), 1, + STATE(1702), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 36, + ACTIONS(2551), 36, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167826,41 +169328,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33635] = 13, + [33973] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - STATE(1691), 1, + STATE(1703), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3978), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167869,7 +169371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 18, + ACTIONS(2551), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167888,43 +169390,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33710] = 14, + [34048] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(3992), 1, + anon_sym_RBRACK, + STATE(1704), 1, + sym_comment, + STATE(1737), 1, + aux_sym__types_body_repeat1, + STATE(1821), 1, + aux_sym__types_body_repeat3, + STATE(4611), 1, + sym__one_type, + STATE(5080), 1, + sym__types_body, + STATE(5109), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [34125] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3980), 1, anon_sym_bit_DASHand2, - STATE(1692), 1, + STATE(1705), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3978), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167933,7 +169498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 17, + ACTIONS(2551), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167951,45 +169516,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33787] = 15, + [34202] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3980), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3982), 1, anon_sym_bit_DASHxor2, - STATE(1693), 1, + STATE(1706), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3978), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167998,7 +169563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 16, + ACTIONS(2551), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -168015,147 +169580,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [33866] = 19, - ACTIONS(103), 1, + [34281] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, - anon_sym_DASH_DASH, - STATE(1694), 1, + STATE(1707), 1, sym_comment, - STATE(1710), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3629), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [33953] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3938), 1, - anon_sym_DOT, - STATE(1695), 1, - sym_comment, - STATE(1855), 1, - sym__immediate_decimal, - ACTIONS(3940), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1963), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34026] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1696), 1, - sym_comment, - ACTIONS(2565), 5, + ACTIONS(2583), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3757), 12, + ACTIONS(3771), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -168168,7 +169604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2563), 29, + ACTIONS(2581), 29, anon_sym_in, anon_sym_DASH2, anon_sym_and2, @@ -168198,39 +169634,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34085] = 11, + [34340] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - STATE(1697), 1, + ACTIONS(3994), 1, + anon_sym_DOT, + STATE(1708), 1, sym_comment, - STATE(1919), 1, + STATE(1908), 1, sym__immediate_decimal, - ACTIONS(3900), 2, + ACTIONS(3996), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, + ACTIONS(3998), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(1972), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1602), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 30, + ACTIONS(1598), 29, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168258,50 +169695,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34156] = 19, - ACTIONS(3), 1, + [34413] = 19, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3900), 1, anon_sym_DASH_DASH, - STATE(1698), 1, + STATE(1709), 1, sym_comment, - STATE(2081), 1, + STATE(1723), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2168), 1, sym_long_flag, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(3691), 1, + STATE(3831), 1, sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3902), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3904), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3647), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168319,56 +169756,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34242] = 19, + [34500] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3814), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, - anon_sym_DASH_DASH, - STATE(1698), 1, - aux_sym_decl_def_repeat1, - STATE(1699), 1, + ACTIONS(3816), 1, + sym__newline, + STATE(1710), 1, sym_comment, - STATE(2099), 1, + STATE(1770), 1, + aux_sym__command_list_body_repeat1, + STATE(2138), 1, sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, + STATE(2159), 1, + aux_sym__types_body_repeat1, + STATE(4633), 1, + sym__command_name, + STATE(4851), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4852), 1, sym_val_string, - STATE(3658), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + ACTIONS(3810), 2, + anon_sym_export, + anon_sym_in, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3812), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168392,50 +169830,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34328] = 19, + [34586] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4000), 1, anon_sym_DASH_DASH, - STATE(1700), 1, + STATE(1711), 1, sym_comment, - STATE(1702), 1, + STATE(2126), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2168), 1, sym_long_flag, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(3654), 1, + STATE(3789), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168459,50 +169897,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34414] = 19, + [34672] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4000), 1, anon_sym_DASH_DASH, - STATE(1701), 1, + STATE(1712), 1, sym_comment, - STATE(1709), 1, + STATE(2126), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2168), 1, sym_long_flag, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(3627), 1, + STATE(3878), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168526,50 +169964,158 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34500] = 19, + [34758] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_DOT, + ACTIONS(4004), 1, + aux_sym__immediate_decimal_token5, + STATE(1713), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [34818] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4006), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4008), 1, + aux_sym__immediate_decimal_token5, + STATE(1714), 1, + sym_comment, + ACTIONS(739), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [34878] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4000), 1, anon_sym_DASH_DASH, - STATE(1702), 1, + STATE(1715), 1, sym_comment, - STATE(2081), 1, + STATE(1716), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2168), 1, sym_long_flag, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(3657), 1, + STATE(3884), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168593,50 +170139,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34586] = 19, + [34964] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3784), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, - STATE(1703), 1, + ACTIONS(4000), 1, + anon_sym_DASH_DASH, + STATE(1716), 1, sym_comment, - STATE(1763), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, + STATE(2126), 1, + aux_sym_decl_def_repeat1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2121), 1, - aux_sym__types_body_repeat1, - STATE(4615), 1, - sym__command_name, - STATE(4710), 1, + STATE(2168), 1, + sym_long_flag, + STATE(3713), 1, sym_cmd_identifier, - STATE(4711), 1, + STATE(3719), 1, sym_val_string, - ACTIONS(3649), 2, + STATE(3795), 1, + sym__command_name, + ACTIONS(3647), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168660,90 +170206,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34672] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3946), 1, - anon_sym_DOT, - ACTIONS(3948), 1, - aux_sym__immediate_decimal_token5, - STATE(1704), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [34732] = 11, + [35050] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1600), 1, + ACTIONS(1606), 1, anon_sym_DOT, - STATE(1705), 1, + STATE(1717), 1, sym_comment, - STATE(1957), 1, + STATE(1959), 1, sym__immediate_decimal, - ACTIONS(3940), 2, + ACTIONS(3996), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, + ACTIONS(3998), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1963), 2, + STATE(1972), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1602), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + ACTIONS(1598), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168773,29 +170265,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34802] = 6, + [35120] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3950), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3952), 1, - aux_sym__immediate_decimal_token5, - STATE(1706), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern, + STATE(1718), 1, sym_comment, - ACTIONS(747), 8, + STATE(1999), 1, + sym__immediate_decimal, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(730), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, + ACTIONS(1598), 29, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168814,7 +170315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -168824,39 +170324,36 @@ 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, - [34862] = 11, + [35190] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - STATE(1707), 1, + STATE(1719), 1, sym_comment, - STATE(1978), 1, + STATE(2001), 1, sym__immediate_decimal, - ACTIONS(3954), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(4012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(748), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1653), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + ACTIONS(1651), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168886,36 +170383,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34932] = 11, + [35260] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(1708), 1, + ACTIONS(1643), 1, + anon_sym_DOT, + STATE(1720), 1, sym_comment, - STATE(2092), 1, + STATE(1996), 1, sym__immediate_decimal, - ACTIONS(3954), 2, + ACTIONS(3996), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3998), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(1970), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1641), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + ACTIONS(1639), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168945,50 +170442,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35002] = 19, + [35330] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4000), 1, anon_sym_DASH_DASH, - STATE(1709), 1, + STATE(1721), 1, sym_comment, - STATE(2081), 1, + STATE(2126), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2168), 1, sym_long_flag, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(3633), 1, + STATE(3855), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169012,50 +170509,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35088] = 19, + [35416] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4000), 1, anon_sym_DASH_DASH, - STATE(1710), 1, + STATE(1722), 1, sym_comment, - STATE(2081), 1, + STATE(1724), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2168), 1, sym_long_flag, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(3666), 1, + STATE(3858), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169079,109 +170576,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35174] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - STATE(1711), 1, - sym_comment, - STATE(1962), 1, - sym__immediate_decimal, - ACTIONS(3940), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1961), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1582), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [35244] = 19, + [35502] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4000), 1, anon_sym_DASH_DASH, - STATE(1712), 1, + STATE(1723), 1, sym_comment, - STATE(1714), 1, + STATE(2126), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2168), 1, sym_long_flag, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(3716), 1, + STATE(3863), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169205,50 +170643,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35330] = 19, + [35588] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4000), 1, anon_sym_DASH_DASH, - STATE(1713), 1, + STATE(1724), 1, sym_comment, - STATE(2081), 1, + STATE(2126), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2168), 1, sym_long_flag, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(3628), 1, + STATE(3875), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169272,50 +170710,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35416] = 19, + [35674] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4000), 1, anon_sym_DASH_DASH, - STATE(1714), 1, - sym_comment, - STATE(2081), 1, + STATE(1711), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1725), 1, + sym_comment, + STATE(2133), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2168), 1, sym_long_flag, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(3648), 1, + STATE(3803), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169339,103 +170777,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35502] = 10, + [35760] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(722), 1, - sym__immediate_decimal, - STATE(1715), 1, - sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(721), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1582), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [35569] = 17, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - STATE(1716), 1, + ACTIONS(4000), 1, + anon_sym_DASH_DASH, + STATE(1721), 1, + aux_sym_decl_def_repeat1, + STATE(1726), 1, sym_comment, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(2168), 1, + sym_long_flag, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(3845), 1, + STATE(3833), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3647), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169453,97 +170838,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35650] = 10, + [35846] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(896), 1, - sym__immediate_decimal, - STATE(1717), 1, + ACTIONS(4014), 1, + aux_sym__immediate_decimal_token5, + STATE(1727), 1, sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(771), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [35717] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(3958), 1, anon_sym_DOT_DOT2, - ACTIONS(3962), 1, sym_filesize_unit, - ACTIONS(3964), 1, - sym_duration_unit, - STATE(1718), 1, - sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3960), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 31, + sym__unquoted_pattern, + ACTIONS(773), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -169566,6 +170883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -169575,34 +170893,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35786] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [35903] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(3970), 1, + ACTIONS(4020), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(4022), 1, anon_sym_oneof, - STATE(1719), 1, + STATE(1728), 1, sym_comment, - STATE(1746), 1, + STATE(1750), 1, aux_sym__types_body_repeat1, - STATE(1831), 1, + STATE(1857), 1, aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, + STATE(4533), 1, sym__all_type, - STATE(4925), 1, + STATE(5115), 1, sym__composite_argument_body, - ACTIONS(3968), 2, + ACTIONS(4018), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4673), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(4016), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -169634,27 +170955,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [35857] = 6, + [35974] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3976), 1, - aux_sym__immediate_decimal_token5, - STATE(1720), 1, + ACTIONS(4024), 1, + anon_sym_DOT2, + STATE(1729), 1, sym_comment, - ACTIONS(747), 8, + STATE(1777), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1866), 1, + sym_path, + STATE(1899), 1, + sym_cell_path, + ACTIONS(1659), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1657), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [36037] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(904), 1, + sym__immediate_decimal, + STATE(1730), 1, + sym_comment, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(730), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 34, + ACTIONS(1598), 29, anon_sym_in, - anon_sym_DASH2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -169674,7 +171058,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -169684,48 +171067,45 @@ 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, - [35916] = 17, + [36104] = 17, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(2664), 1, + ACTIONS(2682), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2684), 1, anon_sym_COLON2, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - STATE(1721), 1, + STATE(1731), 1, sym_comment, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(4836), 1, + STATE(5011), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3902), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3904), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3647), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -169751,86 +171131,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35997] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - aux_sym__immediate_decimal_token5, - STATE(1722), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [36054] = 10, + [36185] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(925), 1, + STATE(930), 1, sym__immediate_decimal, - STATE(1723), 1, + STATE(1732), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(4012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(748), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1653), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + ACTIONS(1651), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -169860,46 +171188,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36121] = 17, - ACTIONS(103), 1, + [36252] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1724), 1, + ACTIONS(4024), 1, + anon_sym_DOT2, + STATE(1733), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4171), 1, - sym__command_name, - ACTIONS(3768), 2, + STATE(1777), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1866), 1, + sym_path, + STATE(1880), 1, + sym_cell_path, + ACTIONS(1647), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1645), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [36315] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4024), 1, + anon_sym_DOT2, + STATE(1734), 1, + sym_comment, + STATE(1777), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1866), 1, + sym_path, + STATE(1884), 1, + sym_cell_path, + ACTIONS(1442), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1444), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169917,21 +171279,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [36202] = 5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [36378] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3948), 1, - aux_sym__immediate_decimal_token5, - STATE(1725), 1, + ACTIONS(4026), 1, + anon_sym_QMARK2, + ACTIONS(4028), 1, + anon_sym_BANG, + STATE(1735), 1, sym_comment, - ACTIONS(739), 8, + STATE(1868), 1, + sym__path_suffix, + ACTIONS(1456), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1458), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [36439] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4004), 1, + aux_sym__immediate_decimal_token5, + STATE(1736), 1, + sym_comment, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -169940,7 +171368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 35, + ACTIONS(749), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -169976,34 +171404,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [36259] = 12, + [36496] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3934), 1, + ACTIONS(3990), 1, sym__newline, - STATE(1726), 1, + STATE(1737), 1, sym_comment, - STATE(1783), 1, + STATE(1813), 1, aux_sym__types_body_repeat3, - STATE(1934), 1, + STATE(1951), 1, aux_sym__types_body_repeat1, - STATE(4557), 1, + STATE(4548), 1, sym__one_type, - STATE(4821), 1, + STATE(5109), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170035,25 +171463,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36330] = 8, + [36567] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1727), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(1734), 1, + sym__unquoted_pattern, + ACTIONS(4030), 1, + anon_sym_DOT_DOT2, + ACTIONS(4034), 1, + sym_filesize_unit, + ACTIONS(4036), 1, + sym_duration_unit, + STATE(1738), 1, sym_comment, - STATE(1742), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1862), 1, - sym_cell_path, - ACTIONS(1681), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + STATE(4801), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4032), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(886), 31, anon_sym_in, - ACTIONS(1679), 37, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [36636] = 17, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, sym_raw_string_begin, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1739), 1, + sym_comment, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(4225), 1, + sym__command_name, + ACTIONS(3902), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3904), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3647), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170071,43 +171578,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + [36717] = 17, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1740), 1, + sym_comment, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(3964), 1, + sym__command_name, + ACTIONS(3902), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3904), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [36393] = 10, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3647), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [36798] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(737), 1, + STATE(729), 1, sym__immediate_decimal, - STATE(1728), 1, + STATE(1741), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(728), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1641), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1639), 29, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [36865] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4038), 1, + anon_sym_DOT, + ACTIONS(4040), 1, + aux_sym__immediate_decimal_token5, + STATE(1742), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36924] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4042), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4044), 1, + aux_sym__immediate_decimal_token5, + STATE(1743), 1, + sym_comment, + ACTIONS(739), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36983] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(743), 1, + sym__immediate_decimal, + STATE(1744), 1, + sym_comment, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(736), 2, + STATE(742), 2, sym__expr_parenthesized_immediate, sym_val_variable, ACTIONS(1669), 6, @@ -170147,34 +171869,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36460] = 10, + [37050] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(739), 1, + STATE(745), 1, sym__immediate_decimal, - STATE(1729), 1, + STATE(1745), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(4012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(738), 2, + STATE(744), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1673), 6, + ACTIONS(1683), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1671), 29, + ACTIONS(1681), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170204,34 +171926,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36527] = 10, + [37117] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(741), 1, + STATE(747), 1, sym__immediate_decimal, - STATE(1730), 1, + STATE(1746), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(4012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(740), 2, + STATE(746), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 6, + ACTIONS(1665), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1675), 29, + ACTIONS(1663), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170261,34 +171983,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36594] = 12, + [37184] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(3970), 1, + ACTIONS(4020), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(4022), 1, anon_sym_oneof, - STATE(1731), 1, + STATE(1747), 1, sym_comment, - STATE(1746), 1, + STATE(1750), 1, aux_sym__types_body_repeat1, - STATE(1831), 1, + STATE(1857), 1, aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, + STATE(4533), 1, sym__all_type, - STATE(4808), 1, + STATE(5097), 1, sym__composite_argument_body, - ACTIONS(3968), 2, + ACTIONS(4018), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4673), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(4016), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170320,34 +172042,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36665] = 12, + [37255] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(3970), 1, + ACTIONS(4020), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(4022), 1, anon_sym_oneof, - STATE(1732), 1, + STATE(1748), 1, sym_comment, - STATE(1746), 1, + STATE(1750), 1, aux_sym__types_body_repeat1, - STATE(1831), 1, + STATE(1857), 1, aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, + STATE(4533), 1, sym__all_type, - STATE(5027), 1, + STATE(4984), 1, sym__composite_argument_body, - ACTIONS(3968), 2, + ACTIONS(4018), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4673), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(4016), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170379,78 +172101,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36736] = 7, + [37326] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3982), 1, - anon_sym_QMARK2, - ACTIONS(3984), 1, - anon_sym_BANG, - STATE(1733), 1, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(4020), 1, + anon_sym_list, + ACTIONS(4022), 1, + anon_sym_oneof, + STATE(1749), 1, sym_comment, - STATE(1833), 1, - sym__path_suffix, - ACTIONS(1446), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + STATE(1750), 1, + aux_sym__types_body_repeat1, + STATE(1857), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4533), 1, + sym__all_type, + STATE(5349), 1, + sym__composite_argument_body, + ACTIONS(4018), 2, + anon_sym_table, + anon_sym_record, + STATE(4673), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4016), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [37397] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3990), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [36797] = 8, + ACTIONS(4020), 1, + anon_sym_list, + ACTIONS(4022), 1, + anon_sym_oneof, + STATE(1750), 1, + sym_comment, + STATE(1858), 1, + aux_sym__composite_argument_body_repeat1, + STATE(1951), 1, + aux_sym__types_body_repeat1, + STATE(4607), 1, + sym__all_type, + ACTIONS(4018), 2, + anon_sym_table, + anon_sym_record, + STATE(4673), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4016), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [37465] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1734), 1, + ACTIONS(4046), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4048), 1, + aux_sym__immediate_decimal_token5, + STATE(1751), 1, sym_comment, - STATE(1742), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1866), 1, - sym_cell_path, - ACTIONS(1643), 3, + ACTIONS(739), 7, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 37, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170475,38 +172259,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36860] = 8, - ACTIONS(3), 1, + [37523] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1735), 1, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1752), 1, sym_comment, - STATE(1742), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1858), 1, - sym_cell_path, - ACTIONS(1432), 3, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(4408), 1, + sym__command_name, + ACTIONS(3902), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3904), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3647), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1434), 37, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170524,104 +172324,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [36923] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3986), 1, - anon_sym_DOT, - ACTIONS(3988), 1, - aux_sym__immediate_decimal_token5, - STATE(1736), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [36982] = 11, + [37601] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3990), 1, + ACTIONS(4050), 1, anon_sym_GT2, - ACTIONS(3992), 1, + ACTIONS(4052), 1, anon_sym_AT2, - STATE(1737), 1, + STATE(1753), 1, sym_comment, - STATE(4431), 1, + STATE(4553), 1, sym__all_type, - STATE(4807), 1, + STATE(5093), 1, sym_param_completer, - ACTIONS(3749), 2, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4712), 4, + STATE(4869), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170653,26 +172388,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [37050] = 8, + [37669] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1738), 1, + STATE(1754), 1, sym_comment, - STATE(1812), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - STATE(1908), 1, - sym_cell_path, - ACTIONS(1681), 3, + ACTIONS(1519), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1679), 36, + anon_sym_DOT2, + ACTIONS(1521), 39, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170699,6 +172426,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, @@ -170707,101 +172436,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37112] = 11, + anon_sym_QMARK2, + anon_sym_BANG, + [37723] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(3996), 1, - anon_sym_DOT_DOT2, - ACTIONS(4000), 1, - sym_filesize_unit, - ACTIONS(4002), 1, - sym_duration_unit, - STATE(1739), 1, + STATE(1755), 1, sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3998), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 30, + ACTIONS(1523), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [37180] = 16, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(105), 1, + anon_sym_DOT2, + ACTIONS(1525), 39, sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - STATE(1740), 1, - sym_comment, - STATE(1976), 1, - sym__val_number_decimal, - STATE(3951), 1, - sym__command_name, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, - sym_val_string, - ACTIONS(3768), 2, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3665), 25, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [37777] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1756), 1, + sym_comment, + ACTIONS(1527), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1529), 39, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170819,33 +172517,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37258] = 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [37831] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1741), 1, + STATE(1757), 1, sym_comment, - STATE(1812), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - STATE(1898), 1, - sym_cell_path, - ACTIONS(1643), 3, + ACTIONS(1531), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 36, + anon_sym_DOT2, + ACTIONS(1533), 39, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170872,6 +172576,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -170880,22 +172586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37320] = 7, + anon_sym_QMARK2, + anon_sym_BANG, + [37885] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1742), 1, + STATE(1758), 1, sym_comment, - STATE(1743), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - ACTIONS(1458), 3, + ACTIONS(1535), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 37, + anon_sym_DOT2, + ACTIONS(1537), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170933,21 +172636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37380] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [37939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4004), 1, - anon_sym_DOT2, - STATE(1825), 1, - sym_path, - STATE(1743), 2, + STATE(1759), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(1539), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1526), 37, + anon_sym_DOT2, + ACTIONS(1541), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170985,24 +172686,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37438] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [37993] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4007), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - aux_sym__immediate_decimal_token5, - STATE(1744), 1, + ACTIONS(4060), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4069), 1, + anon_sym_DQUOTE, + ACTIONS(4072), 1, + anon_sym_SQUOTE, + ACTIONS(4075), 1, + anon_sym_BQUOTE, + ACTIONS(4078), 1, + sym_raw_string_begin, + STATE(2138), 1, + sym__val_number_decimal, + STATE(4851), 1, + sym_cmd_identifier, + STATE(4852), 1, + sym_val_string, + STATE(4912), 1, + sym__command_name, + ACTIONS(4054), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4063), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4066), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1760), 2, sym_comment, - ACTIONS(739), 6, + aux_sym__command_list_body_repeat1, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4057), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38071] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4081), 1, + anon_sym_DOT2, + STATE(1761), 1, + sym_comment, + STATE(1800), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1889), 1, + sym_path, + STATE(1921), 1, + sym_cell_path, + ACTIONS(1659), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, + ACTIONS(1657), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171026,100 +172793,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37496] = 11, - ACTIONS(3), 1, + [38133] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(4011), 1, - anon_sym_GT2, - STATE(1745), 1, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1762), 1, sym_comment, - STATE(4402), 1, - sym__all_type, - STATE(5025), 1, - sym_param_completer, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4712), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [37564] = 11, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(4225), 1, + sym__command_name, + ACTIONS(3902), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3904), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3647), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38211] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3970), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(3784), 1, anon_sym_oneof, - STATE(1746), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(4083), 1, + anon_sym_GT2, + STATE(1763), 1, sym_comment, - STATE(1828), 1, - aux_sym__composite_argument_body_repeat1, - STATE(1934), 1, - aux_sym__types_body_repeat1, - STATE(4482), 1, + STATE(4690), 1, sym__all_type, - ACTIONS(3968), 2, + STATE(4983), 1, + sym_param_completer, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4869), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -171151,77 +172923,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [37632] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4013), 1, - anon_sym_DOT, - ACTIONS(4015), 1, - aux_sym__immediate_decimal_token5, - STATE(1747), 1, - sym_comment, - ACTIONS(1738), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [37690] = 6, + [38279] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4019), 1, - aux_sym__immediate_decimal_token5, - STATE(1748), 1, + ACTIONS(4081), 1, + anon_sym_DOT2, + STATE(1764), 1, sym_comment, - ACTIONS(747), 7, + STATE(1800), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1889), 1, + sym_path, + STATE(1935), 1, + sym_cell_path, + ACTIONS(1647), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 34, + ACTIONS(1645), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171245,28 +172966,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37748] = 4, - ACTIONS(3), 1, + [38341] = 16, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1749), 1, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1765), 1, sym_comment, - ACTIONS(1478), 4, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5011), 1, + sym__command_name, + ACTIONS(3902), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3904), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3647), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1480), 39, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171284,39 +173032,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37802] = 4, + [38419] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1750), 1, + ACTIONS(4085), 1, + anon_sym_QMARK2, + ACTIONS(4087), 1, + anon_sym_BANG, + STATE(1766), 1, sym_comment, - ACTIONS(1543), 4, + STATE(1896), 1, + sym__path_suffix, + ACTIONS(1456), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1545), 39, + ACTIONS(1458), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171343,8 +173084,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, @@ -171353,20 +173092,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37856] = 4, - ACTIONS(3), 1, + [38479] = 16, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1751), 1, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3699), 1, + aux_sym_cmd_identifier_token1, + STATE(1767), 1, sym_comment, - ACTIONS(1466), 4, + STATE(2013), 1, + sym__val_number_decimal, + STATE(4189), 1, + sym__command_name, + STATE(4301), 1, + sym_cmd_identifier, + STATE(4302), 1, + sym_val_string, + ACTIONS(3902), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3904), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(502), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3695), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1468), 39, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171384,39 +173147,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + [38557] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4040), 1, + aux_sym__immediate_decimal_token5, + STATE(1768), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [38613] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1800), 1, anon_sym_DQUOTE, + ACTIONS(1802), 1, anon_sym_SQUOTE, + ACTIONS(1804), 1, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37910] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1752), 1, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1769), 1, sym_comment, - ACTIONS(1470), 4, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5130), 1, + sym__command_name, + ACTIONS(3902), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3904), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3647), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 39, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171434,65 +173260,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37964] = 16, - ACTIONS(103), 1, + [38691] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3814), 1, aux_sym_cmd_identifier_token1, - STATE(1753), 1, + STATE(1760), 1, + aux_sym__command_list_body_repeat1, + STATE(1770), 1, sym_comment, - STATE(2099), 1, + STATE(2138), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(4627), 1, + sym__command_name, + STATE(4851), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4852), 1, sym_val_string, - STATE(4950), 1, - sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + ACTIONS(3810), 2, + anon_sym_export, + anon_sym_in, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, + ACTIONS(3812), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171510,25 +173324,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38042] = 4, + [38771] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1754), 1, + ACTIONS(4081), 1, + anon_sym_DOT2, + STATE(1771), 1, sym_comment, - ACTIONS(1514), 4, + STATE(1800), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1889), 1, + sym_path, + STATE(1929), 1, + sym_cell_path, + ACTIONS(1442), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1516), 39, + ACTIONS(1444), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171555,8 +173376,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, @@ -171565,45 +173384,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [38096] = 16, + [38833] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(2916), 1, + ACTIONS(2829), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - STATE(1755), 1, + STATE(1772), 1, sym_comment, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(5195), 1, + STATE(5317), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3902), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3904), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3647), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171629,43 +173446,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38174] = 16, + [38911] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - STATE(1756), 1, + STATE(1773), 1, sym_comment, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(5197), 1, + STATE(3964), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3902), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3904), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3647), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171691,25 +173508,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38252] = 4, + [38989] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1757), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(1734), 1, + sym__unquoted_pattern, + ACTIONS(4089), 1, + anon_sym_DOT_DOT2, + ACTIONS(4093), 1, + sym_filesize_unit, + ACTIONS(4095), 1, + sym_duration_unit, + STATE(1774), 1, sym_comment, - ACTIONS(747), 8, + STATE(4801), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4091), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, + ACTIONS(886), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -171728,7 +173556,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -171738,35 +173565,32 @@ 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, - [38306] = 11, + [39057] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3992), 1, + ACTIONS(4052), 1, anon_sym_AT2, - ACTIONS(4021), 1, + ACTIONS(4097), 1, anon_sym_GT2, - STATE(1758), 1, + STATE(1775), 1, sym_comment, - STATE(4541), 1, + STATE(4688), 1, sym__all_type, - STATE(4897), 1, + STATE(4948), 1, sym_param_completer, - ACTIONS(3749), 2, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4712), 4, + STATE(4869), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -171798,71 +173622,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [38374] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1759), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38428] = 4, + [39125] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1760), 1, + ACTIONS(4099), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4101), 1, + aux_sym__immediate_decimal_token5, + STATE(1776), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(1772), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(851), 35, + ACTIONS(1770), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -171897,149 +173674,23 @@ 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, - [38482] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3988), 1, - aux_sym__immediate_decimal_token5, - STATE(1761), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38538] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4023), 1, - aux_sym__immediate_decimal_token5, - STATE(1762), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38594] = 17, + [39183] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - STATE(1763), 1, + ACTIONS(4024), 1, + anon_sym_DOT2, + STATE(1777), 1, sym_comment, - STATE(1764), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4568), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, + STATE(1780), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1866), 1, + sym_path, + ACTIONS(1504), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(1506), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172063,45 +173714,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38674] = 16, - ACTIONS(3), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [39243] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4031), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4040), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(4043), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(4046), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(4049), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - STATE(2107), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1778), 1, + sym_comment, + STATE(2133), 1, sym__val_number_decimal, - STATE(4710), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(4711), 1, + STATE(3719), 1, sym_val_string, - STATE(4744), 1, + STATE(5172), 1, sym__command_name, - ACTIONS(4025), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(4034), 2, + ACTIONS(3902), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4037), 2, + ACTIONS(3904), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1764), 2, - sym_comment, - aux_sym__command_list_body_repeat1, - STATE(3505), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4028), 23, + ACTIONS(3647), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172119,102 +173782,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38752] = 6, + [39321] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4052), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4054), 1, - aux_sym__immediate_decimal_token5, - STATE(1765), 1, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + STATE(1779), 1, sym_comment, - ACTIONS(1728), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [38810] = 16, - ACTIONS(103), 1, + STATE(5066), 1, + sym__type_annotation, + STATE(5073), 1, + sym__one_type, + STATE(5074), 1, + sym__multiple_types, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [39389] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1766), 1, + ACTIONS(4103), 1, + anon_sym_DOT2, + STATE(1866), 1, + sym_path, + STATE(1780), 2, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4836), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1508), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1510), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172232,50 +173879,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38888] = 16, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [39447] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - STATE(1767), 1, + STATE(1781), 1, sym_comment, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(4171), 1, + STATE(5222), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3902), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3904), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3647), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -172301,44 +173960,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38966] = 16, - ACTIONS(103), 1, + [39525] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1768), 1, + ACTIONS(4106), 1, + anon_sym_DOT, + ACTIONS(4108), 1, + aux_sym__immediate_decimal_token5, + STATE(1782), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3845), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(747), 6, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172356,39 +173995,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39044] = 11, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [39583] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3784), 1, anon_sym_oneof, - STATE(1769), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(4110), 1, + anon_sym_GT2, + STATE(1783), 1, sym_comment, - STATE(4849), 1, - sym__type_annotation, - STATE(5087), 1, - sym__one_type, - STATE(5102), 1, - sym__multiple_types, - ACTIONS(3749), 2, + STATE(4662), 1, + sym__all_type, + STATE(5107), 1, + sym_param_completer, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4869), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -172420,46 +174069,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39112] = 17, + [39651] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + STATE(1784), 1, + sym_comment, + ACTIONS(739), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [39705] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3784), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - STATE(1764), 1, - aux_sym__command_list_body_repeat1, - STATE(1770), 1, + STATE(1785), 1, sym_comment, - STATE(2107), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(4374), 1, - sym__command_name, - STATE(4710), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(4711), 1, + STATE(3719), 1, sym_val_string, - ACTIONS(3649), 2, + STATE(5100), 1, + sym__command_name, + ACTIONS(3902), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3904), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3647), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172477,317 +174174,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39192] = 16, - ACTIONS(103), 1, + [39783] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1771), 1, + ACTIONS(4112), 1, + anon_sym_DOT, + ACTIONS(4114), 1, + aux_sym__immediate_decimal_token5, + STATE(1786), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4092), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(1746), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 34, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39270] = 7, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [39841] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4056), 1, - anon_sym_QMARK2, - ACTIONS(4058), 1, - anon_sym_BANG, - STATE(1772), 1, + STATE(1787), 1, sym_comment, - STATE(1867), 1, - sym__path_suffix, - ACTIONS(1446), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(771), 8, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [39330] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1773), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5023), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 35, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39408] = 8, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [39895] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1774), 1, + STATE(1788), 1, sym_comment, - STATE(1812), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - STATE(1896), 1, - sym_cell_path, - ACTIONS(1432), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(860), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(862), 35, anon_sym_in, - ACTIONS(1434), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [39470] = 16, - ACTIONS(103), 1, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [39949] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3814), 1, aux_sym_cmd_identifier_token1, - STATE(1775), 1, + STATE(1760), 1, + aux_sym__command_list_body_repeat1, + STATE(1789), 1, sym_comment, - STATE(2099), 1, + STATE(2138), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(4635), 1, + sym__command_name, + STATE(4851), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4852), 1, sym_val_string, - STATE(5033), 1, - sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + ACTIONS(3810), 2, + anon_sym_export, + anon_sym_in, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39548] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1776), 1, - sym_comment, - ACTIONS(1474), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1476), 39, - sym_raw_string_begin, + ACTIONS(3812), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172811,27 +174396,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [39602] = 4, + [40029] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1777), 1, + ACTIONS(4116), 1, + aux_sym__immediate_decimal_token5, + STATE(1790), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -172840,7 +174412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 34, + ACTIONS(773), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -172875,44 +174447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [39655] = 16, + [40085] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1778), 1, + STATE(1791), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4084), 1, - sym__command_name, - ACTIONS(3637), 2, + ACTIONS(1531), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, + anon_sym_DOT2, + ACTIONS(1533), 38, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172936,44 +174483,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39732] = 16, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [40138] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - STATE(1779), 1, + STATE(1792), 1, sym_comment, - STATE(2099), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(3719), 1, sym_val_string, - STATE(4959), 1, + STATE(4415), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172997,19 +174557,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39809] = 4, + [40215] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1780), 1, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(3699), 1, + aux_sym_cmd_identifier_token1, + STATE(1793), 1, sym_comment, - ACTIONS(1478), 4, + STATE(2013), 1, + sym__val_number_decimal, + STATE(4199), 1, + sym__command_name, + STATE(4301), 1, + sym_cmd_identifier, + STATE(4302), 1, + sym_val_string, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3695), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1480), 38, - sym_raw_string_begin, - ts_builtin_sym_end, + STATE(502), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3697), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173033,30 +174618,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [39862] = 3, + [40292] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1781), 1, - sym_comment, - ACTIONS(4060), 42, + ACTIONS(4118), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(4124), 1, + anon_sym_list, + ACTIONS(4126), 1, + anon_sym_oneof, + STATE(1794), 1, + sym_comment, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(2909), 1, + sym__type_annotation, + ACTIONS(4122), 2, + anon_sym_table, + anon_sym_record, + STATE(3162), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4120), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173086,25 +174671,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [39913] = 3, + [40357] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1782), 1, - sym_comment, - ACTIONS(4062), 42, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1795), 1, + sym_comment, + STATE(1831), 1, + aux_sym__repeat_newline, + STATE(4707), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173134,38 +174726,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [39964] = 10, + [40422] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4132), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4134), 1, anon_sym_oneof, - STATE(1783), 1, + STATE(1796), 1, sym_comment, - STATE(1784), 1, - aux_sym__types_body_repeat3, - STATE(4531), 1, - sym__one_type, - STATE(4821), 1, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(3047), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(4130), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(3327), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4128), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173197,29 +174783,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40029] = 9, + [40487] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + aux_sym__immediate_decimal_token5, + STATE(1797), 1, + sym_comment, + ACTIONS(1746), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [40544] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4070), 1, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4132), 1, anon_sym_list, - ACTIONS(4073), 1, + ACTIONS(4134), 1, anon_sym_oneof, - STATE(4701), 1, - sym__one_type, - STATE(4821), 1, + STATE(1796), 1, + aux_sym__repeat_newline, + STATE(1798), 1, + sym_comment, + STATE(3060), 1, sym__type_annotation, - ACTIONS(4067), 2, + ACTIONS(4130), 2, anon_sym_table, anon_sym_record, - STATE(1784), 2, - sym_comment, - aux_sym__types_body_repeat3, - STATE(4281), 4, + STATE(3327), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4064), 31, + ACTIONS(4128), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173251,127 +174889,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40092] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1785), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4138), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [40169] = 4, + [40609] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(1799), 1, sym_comment, - ACTIONS(1543), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1545), 38, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + ACTIONS(4140), 42, sym__newline, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40222] = 4, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [40660] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1787), 1, + ACTIONS(4081), 1, + anon_sym_DOT2, + STATE(1800), 1, sym_comment, - ACTIONS(1466), 4, + STATE(1803), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1889), 1, + sym_path, + ACTIONS(1504), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1468), 38, + ACTIONS(1506), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -173408,32 +174989,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40275] = 10, + [40719] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4124), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4126), 1, anon_sym_oneof, - ACTIONS(4076), 1, - sym__newline, - STATE(1788), 1, + STATE(1801), 1, sym_comment, - STATE(1970), 1, + STATE(1828), 1, aux_sym__repeat_newline, - STATE(4401), 1, + STATE(2964), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(4122), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(3162), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4120), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173465,30 +175044,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40340] = 10, + [40784] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(4076), 1, - sym__newline, - STATE(1789), 1, + STATE(1802), 1, sym_comment, - STATE(1791), 1, - aux_sym__repeat_newline, - STATE(4408), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4142), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173518,46 +175084,31 @@ 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, - [40405] = 16, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [40835] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - STATE(1790), 1, + ACTIONS(4144), 1, + anon_sym_DOT2, + STATE(1889), 1, + sym_path, + STATE(1803), 2, sym_comment, - STATE(1976), 1, - sym__val_number_decimal, - STATE(3942), 1, - sym__command_name, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, - sym_val_string, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1508), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3667), 23, + ACTIONS(1510), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173581,30 +175132,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40482] = 10, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [40892] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4132), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4134), 1, anon_sym_oneof, - ACTIONS(4076), 1, - sym__newline, - STATE(1791), 1, + STATE(1804), 1, sym_comment, - STATE(1970), 1, + STATE(1820), 1, aux_sym__repeat_newline, - STATE(4552), 1, + STATE(3087), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(4130), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(3327), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4128), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173636,12 +175198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40547] = 3, + [40957] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1792), 1, + STATE(1805), 1, sym_comment, - ACTIONS(4078), 42, + ACTIONS(4147), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -173684,123 +175246,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [40598] = 3, + [41008] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1793), 1, + STATE(1806), 1, sym_comment, - ACTIONS(4080), 42, + ACTIONS(1519), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1521), 38, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [40649] = 10, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [41061] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, - anon_sym_list, - ACTIONS(4088), 1, - anon_sym_oneof, - STATE(1794), 1, + STATE(1807), 1, sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(3026), 1, - sym__type_annotation, - ACTIONS(4084), 2, - anon_sym_table, - anon_sym_record, - STATE(3131), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4082), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40714] = 5, + ACTIONS(1523), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1525), 38, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [41114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4090), 1, - anon_sym_QMARK2, - STATE(1795), 1, + STATE(1808), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1527), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1440), 37, + ACTIONS(1529), 38, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173827,8 +175383,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, @@ -173837,233 +175391,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [40769] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [41167] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1796), 1, + ACTIONS(4149), 1, + anon_sym_QMARK2, + STATE(1809), 1, sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [40822] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1784), 1, - aux_sym__types_body_repeat3, - STATE(1797), 1, - sym_comment, - STATE(4559), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40887] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1798), 1, - sym_comment, - ACTIONS(849), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(851), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [40940] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1799), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5063), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [41017] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1800), 1, - sym_comment, - ACTIONS(1470), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1448), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1472), 38, + ACTIONS(1450), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174090,6 +175433,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, @@ -174098,69 +175443,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41070] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4015), 1, - aux_sym__immediate_decimal_token5, - STATE(1801), 1, - sym_comment, - ACTIONS(1738), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [41125] = 4, + [41222] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1802), 1, + STATE(1810), 1, sym_comment, - ACTIONS(1474), 4, + ACTIONS(1535), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1476), 38, + ACTIONS(1537), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -174199,169 +175492,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [41178] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4092), 1, - aux_sym__immediate_decimal_token5, - STATE(1803), 1, - sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [41233] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4094), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4096), 1, - aux_sym__immediate_decimal_token5, - STATE(1804), 1, - sym_comment, - ACTIONS(1728), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 33, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [41290] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4098), 1, - anon_sym_DOT, - ACTIONS(4100), 1, - aux_sym__immediate_decimal_token5, - STATE(1805), 1, - sym_comment, - ACTIONS(1738), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 33, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [41347] = 4, + [41275] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1806), 1, + STATE(1811), 1, sym_comment, - ACTIONS(1514), 4, + ACTIONS(1539), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1516), 38, + ACTIONS(1541), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -174400,12 +175541,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [41400] = 3, + [41328] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1807), 1, + STATE(1812), 1, sym_comment, - ACTIONS(4102), 42, + ACTIONS(4151), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -174448,17 +175589,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [41451] = 3, + [41379] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1808), 1, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + STATE(1813), 1, sym_comment, - ACTIONS(4104), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1815), 1, + aux_sym__types_body_repeat3, + STATE(4592), 1, + sym__one_type, + STATE(5109), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174488,52 +175642,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [41502] = 16, + [41444] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1809), 1, + ACTIONS(4108), 1, + aux_sym__immediate_decimal_token5, + STATE(1814), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3871), 1, - sym__command_name, - ACTIONS(3637), 2, + ACTIONS(747), 6, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174557,85 +175683,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41579] = 10, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [41499] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, + ACTIONS(4159), 1, anon_sym_list, - ACTIONS(4088), 1, + ACTIONS(4162), 1, anon_sym_oneof, - STATE(1810), 1, - sym_comment, - STATE(1814), 1, - aux_sym__repeat_newline, - STATE(3053), 1, + STATE(4846), 1, + sym__one_type, + STATE(5109), 1, sym__type_annotation, - ACTIONS(4084), 2, + ACTIONS(4156), 2, anon_sym_table, anon_sym_record, - STATE(3131), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4082), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [41644] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(4076), 1, - sym__newline, - STATE(1788), 1, - aux_sym__repeat_newline, - STATE(1811), 1, + STATE(1815), 2, sym_comment, - STATE(4603), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, + aux_sym__types_body_repeat3, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4153), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174667,24 +175748,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41709] = 7, + [41562] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1812), 1, + ACTIONS(4149), 1, + anon_sym_BANG, + STATE(1816), 1, sym_comment, - STATE(1813), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - ACTIONS(1458), 3, + ACTIONS(1448), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 36, + anon_sym_DOT2, + ACTIONS(1450), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174711,6 +175788,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, @@ -174719,23 +175798,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41768] = 6, + [41617] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4106), 1, - anon_sym_DOT2, - STATE(1857), 1, - sym_path, - STATE(1813), 2, + ACTIONS(4165), 1, + aux_sym__immediate_decimal_token5, + STATE(1817), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(771), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1526), 36, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(773), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174759,41 +175837,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41825] = 10, + [41672] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1818), 1, + sym_comment, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(3986), 1, + sym__command_name, + ACTIONS(3647), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3649), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [41749] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(4088), 1, + ACTIONS(3784), 1, anon_sym_oneof, - STATE(1814), 1, + ACTIONS(4118), 1, + sym__newline, + STATE(1819), 1, sym_comment, - STATE(1970), 1, + STATE(1844), 1, aux_sym__repeat_newline, - STATE(3054), 1, + STATE(2899), 1, sym__type_annotation, - ACTIONS(4084), 2, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(3131), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174825,30 +175964,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41890] = 10, + [41814] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, + ACTIONS(4118), 1, sym__newline, - ACTIONS(4086), 1, + ACTIONS(4132), 1, anon_sym_list, - ACTIONS(4088), 1, + ACTIONS(4134), 1, anon_sym_oneof, - STATE(1794), 1, - aux_sym__repeat_newline, - STATE(1815), 1, + STATE(1820), 1, sym_comment, - STATE(2916), 1, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(3103), 1, sym__type_annotation, - ACTIONS(4084), 2, + ACTIONS(4130), 2, anon_sym_table, anon_sym_record, - STATE(3131), 4, + STATE(3327), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(4128), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174880,595 +176019,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41955] = 5, + [41879] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4090), 1, - anon_sym_BANG, - STATE(1816), 1, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + STATE(1815), 1, + aux_sym__types_body_repeat3, + STATE(1821), 1, sym_comment, - ACTIONS(1438), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [42010] = 16, + STATE(4551), 1, + sym__one_type, + STATE(5109), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41944] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1817), 1, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, + sym__newline, + STATE(1822), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4967), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [42087] = 16, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(4686), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [42009] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1818), 1, + STATE(1823), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4279), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, + ACTIONS(739), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 34, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [42164] = 16, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [42062] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1819), 1, + STATE(1824), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4273), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, + ACTIONS(771), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 34, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [42241] = 16, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [42115] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1820), 1, + STATE(1825), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5036), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, + ACTIONS(860), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(862), 34, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [42318] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1821), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5083), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [42395] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1822), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5194), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [42472] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4009), 1, - aux_sym__immediate_decimal_token5, - STATE(1823), 1, - sym_comment, - ACTIONS(739), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [42527] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4109), 1, - aux_sym__immediate_decimal_token5, - STATE(1824), 1, - sym_comment, - ACTIONS(771), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [42582] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1825), 1, - sym_comment, - ACTIONS(1462), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [42634] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(4111), 1, - anon_sym_DOT_DOT2, - STATE(1826), 1, - sym_comment, - ACTIONS(4113), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1974), 31, - anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -175487,6 +176263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -175496,27 +176273,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [42694] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [42168] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(4115), 1, - anon_sym_DOT_DOT2, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4124), 1, + anon_sym_list, + ACTIONS(4126), 1, + anon_sym_oneof, + STATE(1826), 1, + sym_comment, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(3153), 1, + sym__type_annotation, + ACTIONS(4122), 2, + anon_sym_table, + anon_sym_record, + STATE(3162), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4120), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [42233] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4114), 1, + aux_sym__immediate_decimal_token5, STATE(1827), 1, sym_comment, - ACTIONS(4117), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(1746), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175539,6 +176369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -175548,28 +176379,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [42754] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [42288] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4124), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(4126), 1, anon_sym_oneof, STATE(1828), 1, sym_comment, - STATE(1838), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4448), 1, - sym__all_type, - ACTIONS(3968), 2, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(2923), 1, + sym__type_annotation, + ACTIONS(4122), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(3162), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(4120), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -175601,12 +176436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42816] = 4, + [42353] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4167), 1, + aux_sym__immediate_decimal_token5, STATE(1829), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1854), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -175614,7 +176451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 34, + ACTIONS(1852), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175649,80 +176486,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42868] = 8, + [42408] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(876), 1, - anon_sym_DOT_DOT2, - ACTIONS(4119), 1, - sym_filesize_unit, - ACTIONS(4121), 1, - sym_duration_unit, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4124), 1, + anon_sym_list, + ACTIONS(4126), 1, + anon_sym_oneof, + STATE(1794), 1, + aux_sym__repeat_newline, STATE(1830), 1, sym_comment, - ACTIONS(878), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [42928] = 9, + STATE(2940), 1, + sym__type_annotation, + ACTIONS(4122), 2, + anon_sym_table, + anon_sym_record, + STATE(3162), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4120), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [42473] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(3784), 1, anon_sym_oneof, + ACTIONS(4118), 1, + sym__newline, STATE(1831), 1, sym_comment, - STATE(1838), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4484), 1, - sym__all_type, - ACTIONS(3968), 2, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(4606), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -175754,21 +176596,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42990] = 5, + [42538] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_QMARK2, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, + sym__newline, + STATE(1822), 1, + aux_sym__repeat_newline, STATE(1832), 1, sym_comment, - ACTIONS(1438), 4, - anon_sym_export, + STATE(4622), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [42603] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1833), 1, + sym_comment, + ACTIONS(4169), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [42654] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, + STATE(1834), 1, + sym_comment, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5186), 1, + sym__command_name, + ACTIONS(3647), 2, + anon_sym_export, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 36, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175792,29 +176760,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_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, + [42731] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, anon_sym_DQUOTE, + ACTIONS(1802), 1, anon_sym_SQUOTE, + ACTIONS(1804), 1, anon_sym_BQUOTE, - [43044] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1833), 1, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1835), 1, sym_comment, - ACTIONS(1520), 4, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(4393), 1, + sym__command_name, + ACTIONS(3647), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 37, - sym_raw_string_begin, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175838,179 +176821,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43096] = 4, + [42808] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1834), 1, + STATE(1836), 1, sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 34, - anon_sym_in, + ACTIONS(4171), 42, sym__newline, - anon_sym_DASH2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43148] = 4, + anon_sym_RBRACE, + [42859] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1835), 1, - sym_comment, - ACTIONS(1872), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 34, - anon_sym_in, + ACTIONS(4118), 1, sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43200] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4100), 1, - aux_sym__immediate_decimal_token5, - STATE(1836), 1, + ACTIONS(4124), 1, + anon_sym_list, + ACTIONS(4126), 1, + anon_sym_oneof, + STATE(1837), 1, sym_comment, - ACTIONS(1738), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 33, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43254] = 5, + STATE(1839), 1, + aux_sym__repeat_newline, + STATE(3028), 1, + sym__type_annotation, + ACTIONS(4122), 2, + anon_sym_table, + anon_sym_record, + STATE(3162), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4120), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [42924] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_BANG, - STATE(1837), 1, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1838), 1, sym_comment, - ACTIONS(1438), 4, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(4319), 1, + sym__command_name, + ACTIONS(3647), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 36, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176034,38 +176985,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43308] = 8, + [43001] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4131), 1, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4124), 1, anon_sym_list, - ACTIONS(4134), 1, + ACTIONS(4126), 1, anon_sym_oneof, - STATE(4736), 1, - sym__all_type, - ACTIONS(4128), 2, + STATE(1839), 1, + sym_comment, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(3035), 1, + sym__type_annotation, + ACTIONS(4122), 2, anon_sym_table, anon_sym_record, - STATE(1838), 2, + STATE(3162), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4120), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43066] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, + sym__newline, + STATE(1840), 1, sym_comment, - aux_sym__composite_argument_body_repeat1, - STATE(4464), 4, + STATE(1848), 1, + aux_sym__repeat_newline, + STATE(2989), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4125), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176097,14 +177095,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43368] = 5, + [43131] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1841), 1, + sym_comment, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5232), 1, + sym__command_name, + ACTIONS(3647), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3649), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [43208] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4137), 1, + ACTIONS(4173), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4175), 1, aux_sym__immediate_decimal_token5, - STATE(1839), 1, + STATE(1842), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1772), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176112,7 +177173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 33, + ACTIONS(1770), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176146,76 +177207,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43422] = 4, + [43265] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1840), 1, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1843), 1, sym_comment, - ACTIONS(747), 6, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5251), 1, + sym__command_name, + ACTIONS(3647), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43474] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(4143), 1, - sym_filesize_unit, - ACTIONS(4145), 1, - sym_duration_unit, - ACTIONS(4147), 1, - sym__unquoted_pattern, - STATE(1841), 1, - sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(968), 32, - sym_raw_string_begin, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176239,28 +177268,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + [43342] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, + sym__newline, + STATE(1844), 1, + sym_comment, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(2900), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43407] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, anon_sym_DQUOTE, + ACTIONS(1802), 1, anon_sym_SQUOTE, + ACTIONS(1804), 1, anon_sym_BQUOTE, - [43536] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1842), 1, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1845), 1, sym_comment, - ACTIONS(771), 6, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5136), 1, + sym__command_name, + ACTIONS(3647), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, - sym_raw_string_begin, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176284,31 +177384,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, + [43484] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, anon_sym_DQUOTE, + ACTIONS(1802), 1, anon_sym_SQUOTE, + ACTIONS(1804), 1, anon_sym_BQUOTE, - [43588] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1843), 1, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1846), 1, sym_comment, - ACTIONS(849), 6, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5111), 1, + sym__command_name, + ACTIONS(3647), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(851), 35, - sym_raw_string_begin, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176332,29 +177445,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, + [43561] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, anon_sym_DQUOTE, + ACTIONS(1802), 1, anon_sym_SQUOTE, + ACTIONS(1804), 1, anon_sym_BQUOTE, - [43640] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1844), 1, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1847), 1, sym_comment, - ACTIONS(1535), 4, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(4387), 1, + sym__command_name, + ACTIONS(3647), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 37, - sym_raw_string_begin, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176378,30 +177506,264 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + [43638] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(1848), 1, + sym_comment, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(2991), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43703] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, + sym__newline, + STATE(1849), 1, + sym_comment, + STATE(1850), 1, + aux_sym__repeat_newline, + STATE(2992), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43768] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, + sym__newline, + STATE(1850), 1, + sym_comment, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(2993), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43833] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, + sym__newline, + STATE(1851), 1, + sym_comment, + STATE(1853), 1, + aux_sym__repeat_newline, + STATE(2896), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43898] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, anon_sym_DQUOTE, + ACTIONS(1802), 1, anon_sym_SQUOTE, + ACTIONS(1804), 1, anon_sym_BQUOTE, - [43692] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1845), 1, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1852), 1, sym_comment, - ACTIONS(1474), 3, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(4953), 1, + sym__command_name, + ACTIONS(3647), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 37, - sym_raw_string_begin, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176425,39 +177787,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + [43975] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43743] = 8, + STATE(1853), 1, + sym_comment, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(2897), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44040] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4124), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(4126), 1, anon_sym_oneof, - STATE(1846), 1, + STATE(1826), 1, + aux_sym__repeat_newline, + STATE(1854), 1, sym_comment, - STATE(4128), 1, - sym__all_type, - ACTIONS(3968), 2, + STATE(3099), 1, + sym__type_annotation, + ACTIONS(4122), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(3162), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(4120), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176489,12 +177897,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43802] = 4, + [44105] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1847), 1, + ACTIONS(4177), 1, + aux_sym__immediate_decimal_token5, + STATE(1855), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1854), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176502,7 +177912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 33, + ACTIONS(1852), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176536,23 +177946,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43853] = 4, + [44159] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1848), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(4179), 1, + anon_sym_DOT_DOT2, + STATE(1856), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(4181), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 33, + ACTIONS(1956), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176571,7 +177989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -176581,25 +177998,189 @@ 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, - [43904] = 4, + [44219] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1849), 1, + ACTIONS(4020), 1, + anon_sym_list, + ACTIONS(4022), 1, + anon_sym_oneof, + STATE(1857), 1, sym_comment, - ACTIONS(1872), 7, + STATE(1859), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4615), 1, + sym__all_type, + ACTIONS(4018), 2, + anon_sym_table, + anon_sym_record, + STATE(4673), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4016), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44281] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4020), 1, + anon_sym_list, + ACTIONS(4022), 1, + anon_sym_oneof, + STATE(1858), 1, + sym_comment, + STATE(1859), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4681), 1, + sym__all_type, + ACTIONS(4018), 2, + anon_sym_table, + anon_sym_record, + STATE(4673), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4016), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44343] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4189), 1, + anon_sym_list, + ACTIONS(4192), 1, + anon_sym_oneof, + STATE(4879), 1, + sym__all_type, + ACTIONS(4186), 2, + anon_sym_table, + anon_sym_record, + STATE(1859), 2, + sym_comment, + aux_sym__composite_argument_body_repeat1, + STATE(4673), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4183), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44403] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(4195), 1, + anon_sym_DOT_DOT2, + STATE(1860), 1, + sym_comment, + ACTIONS(4197), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1975), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 33, + ACTIONS(1973), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176618,7 +178199,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -176628,32 +178208,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, - [43955] = 8, + [44463] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(4149), 1, + ACTIONS(874), 1, anon_sym_DOT_DOT2, - STATE(1850), 1, + ACTIONS(4199), 1, + sym_filesize_unit, + ACTIONS(4201), 1, + sym_duration_unit, + STATE(1861), 1, sym_comment, - ACTIONS(4151), 2, + ACTIONS(876), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 30, + ACTIONS(886), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176681,185 +178260,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44014] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1851), 1, - sym_comment, - STATE(4770), 1, - sym__type_annotation, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4731), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [44073] = 4, + [44523] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1852), 1, + STATE(1862), 1, sym_comment, - ACTIONS(2094), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1772), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 34, anon_sym_in, - ACTIONS(2092), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44124] = 28, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - STATE(1853), 1, - sym_comment, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, - STATE(3750), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5032), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4155), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1445), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [44223] = 4, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [44575] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1854), 1, + ACTIONS(4203), 1, + anon_sym_DOT_DOT2, + ACTIONS(4207), 1, + sym_filesize_unit, + ACTIONS(4209), 1, + sym_duration_unit, + ACTIONS(4211), 1, + sym__unquoted_pattern, + STATE(1863), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(4205), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 37, + ACTIONS(886), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176884,12 +178353,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -176897,30 +178361,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44274] = 8, + [44637] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(4181), 1, - anon_sym_DOT_DOT2, - STATE(1855), 1, + STATE(1864), 1, sym_comment, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(1854), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 30, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 34, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176939,6 +178397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -176948,16 +178407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44333] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [44689] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1856), 1, + STATE(1865), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1496), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 37, + anon_sym_DOT2, + ACTIONS(1498), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176995,19 +178457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44384] = 4, + [44741] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1857), 1, + STATE(1866), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(1547), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1464), 36, + ACTIONS(1549), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177034,6 +178495,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, @@ -177042,17 +178505,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44435] = 4, + [44793] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1858), 1, + ACTIONS(4213), 1, + anon_sym_QMARK2, + STATE(1867), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(1448), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 37, + anon_sym_DOT2, + ACTIONS(1450), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177079,8 +178546,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, @@ -177089,65 +178554,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44486] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4185), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4187), 1, - aux_sym__immediate_decimal_token5, - STATE(1859), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [44541] = 4, + [44847] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1860), 1, + STATE(1868), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(1562), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 37, + anon_sym_DOT2, + ACTIONS(1564), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177185,172 +178602,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44592] = 4, + [44899] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1861), 1, + STATE(1869), 1, sym_comment, - ACTIONS(2264), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1872), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1870), 34, anon_sym_in, - ACTIONS(2262), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44643] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1862), 1, - sym_comment, - ACTIONS(1643), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1641), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44694] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1863), 1, - sym_comment, - STATE(4972), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [44753] = 6, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [44951] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4189), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4191), 1, + ACTIONS(4138), 1, aux_sym__immediate_decimal_token5, - STATE(1864), 1, + STATE(1870), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1746), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 32, + ACTIONS(1744), 33, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -177379,16 +178697,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44808] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [45005] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1865), 1, + STATE(1871), 1, sym_comment, - ACTIONS(2274), 3, + ACTIONS(739), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177413,29 +178736,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44859] = 4, + [45057] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1866), 1, + STATE(1872), 1, sym_comment, - ACTIONS(1824), 3, + ACTIONS(771), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1822), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(773), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177460,32 +178784,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44910] = 4, + [45109] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1867), 1, + STATE(1873), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(860), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 36, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(862), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177509,28 +178832,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44961] = 4, + [45161] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1868), 1, + ACTIONS(4213), 1, + anon_sym_BANG, + STATE(1874), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1448), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1537), 36, + ACTIONS(1450), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -177567,16 +178892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45012] = 4, + [45215] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1869), 1, + STATE(1875), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(1527), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 37, + ACTIONS(1529), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177614,63 +178939,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45063] = 4, + [45266] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1870), 1, + ACTIONS(4020), 1, + anon_sym_list, + ACTIONS(4022), 1, + anon_sym_oneof, + STATE(1876), 1, sym_comment, - ACTIONS(1543), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1545), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [45114] = 4, + STATE(4495), 1, + sym__all_type, + ACTIONS(4018), 2, + anon_sym_table, + anon_sym_record, + STATE(4673), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4016), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45325] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1871), 1, + STATE(1877), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(2296), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 37, + ACTIONS(2294), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177708,63 +179037,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45165] = 4, + [45376] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1872), 1, + STATE(1878), 1, sym_comment, - ACTIONS(2086), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2084), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1872), 7, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [45216] = 4, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1870), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [45427] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1873), 1, + STATE(1879), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(2288), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 37, + ACTIONS(2286), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177802,16 +179131,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45267] = 4, + [45478] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1874), 1, + STATE(1880), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1860), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 37, + ACTIONS(1858), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177849,66 +179178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45318] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4119), 1, - sym_filesize_unit, - ACTIONS(4121), 1, - sym_duration_unit, - ACTIONS(4193), 1, - anon_sym_DOT_DOT2, - STATE(1875), 1, - sym_comment, - ACTIONS(4195), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [45377] = 4, + [45529] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4197), 1, + ACTIONS(4215), 1, sym__entry_separator, - STATE(1876), 2, + STATE(1881), 2, sym_comment, aux_sym__types_body_repeat2, - ACTIONS(3710), 38, + ACTIONS(3715), 38, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_any, @@ -177947,127 +179225,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_GT2, anon_sym_oneof, - [45428] = 8, + [45580] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1877), 1, - sym_comment, - STATE(4566), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [45487] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4200), 1, - anon_sym_DOT, - ACTIONS(4202), 1, - aux_sym__immediate_decimal_token5, - STATE(1878), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, + ACTIONS(4199), 1, sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4201), 1, sym_duration_unit, - [45542] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4206), 1, - aux_sym__immediate_decimal_token5, - STATE(1879), 1, + ACTIONS(4218), 1, + anon_sym_DOT_DOT2, + STATE(1882), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(4220), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 32, + ACTIONS(886), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -178086,7 +179267,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -178096,16 +179276,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45597] = 4, + [45639] = 28, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(4222), 1, + anon_sym_null, + ACTIONS(4226), 1, + anon_sym_LPAREN, + ACTIONS(4228), 1, + anon_sym_DOLLAR, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4234), 1, + sym_val_date, + ACTIONS(4236), 1, + anon_sym_DQUOTE, + ACTIONS(4238), 1, + anon_sym_SQUOTE, + ACTIONS(4240), 1, + anon_sym_BQUOTE, + ACTIONS(4242), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4244), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4246), 1, + aux_sym_unquoted_token1, + ACTIONS(4248), 1, + sym_raw_string_begin, + STATE(1883), 1, + sym_comment, + STATE(1895), 1, + sym__inter_single_quotes, + STATE(1897), 1, + sym__inter_double_quotes, + STATE(3902), 1, + sym__val_number_decimal, + STATE(5101), 1, + sym_val_bool, + ACTIONS(3048), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3058), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3060), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5177), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4224), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1903), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1452), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [45738] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1880), 1, + STATE(1884), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(1580), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 37, + ACTIONS(1582), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178143,18 +179394,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45648] = 4, + [45789] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1881), 1, + ACTIONS(4250), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4252), 1, + aux_sym__immediate_decimal_token5, + STATE(1885), 1, + sym_comment, + ACTIONS(1772), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1770), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [45844] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1886), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1531), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 36, + ACTIONS(1533), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178181,6 +179480,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, @@ -178189,23 +179490,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45698] = 7, + [45895] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4208), 1, - anon_sym_QMARK2, - ACTIONS(4210), 1, - anon_sym_BANG, - STATE(1882), 1, + ACTIONS(4020), 1, + anon_sym_list, + ACTIONS(4022), 1, + anon_sym_oneof, + STATE(1887), 1, sym_comment, - STATE(2111), 1, - sym__path_suffix, - ACTIONS(1446), 4, + STATE(4828), 1, + sym__type_annotation, + ACTIONS(4018), 2, + anon_sym_table, + anon_sym_record, + STATE(4882), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4016), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45954] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1888), 1, + sym_comment, + ACTIONS(1535), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 32, + ACTIONS(1537), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178230,7 +179575,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178238,25 +179588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45754] = 8, + [46005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1883), 1, + STATE(1889), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2152), 1, - sym_cell_path, - ACTIONS(1884), 3, + ACTIONS(1547), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1882), 32, + anon_sym_DOT2, + ACTIONS(1549), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178280,7 +179624,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178288,18 +179635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45812] = 4, + [46056] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1884), 1, + STATE(1890), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(1539), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 36, + ACTIONS(1541), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178326,6 +179672,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, @@ -178334,18 +179682,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45862] = 4, + [46107] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1885), 1, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + STATE(1891), 1, + sym_comment, + STATE(5143), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [46166] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1892), 1, + sym_comment, + ACTIONS(1772), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [46217] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1893), 1, sym_comment, - ACTIONS(2264), 3, + ACTIONS(2284), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 36, + ACTIONS(2282), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178372,6 +179817,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, @@ -178380,18 +179827,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45912] = 4, + [46268] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(1894), 1, + sym_comment, + ACTIONS(1854), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [46319] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1895), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(2278), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 36, + ACTIONS(2276), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178418,6 +179911,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, @@ -178426,16 +179921,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45962] = 4, + [46370] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1887), 1, + STATE(1896), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(1562), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 36, + anon_sym_DOT2, + ACTIONS(1564), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178472,24 +179968,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46012] = 8, + [46421] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1888), 1, + STATE(1897), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2205), 1, - sym_cell_path, - ACTIONS(1864), 3, + ACTIONS(2278), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1862), 32, + ACTIONS(2276), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178514,7 +180002,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178522,16 +180015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46070] = 4, + [46472] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1889), 1, + STATE(1898), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(1496), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 36, + anon_sym_DOT2, + ACTIONS(1498), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178568,18 +180062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46120] = 4, + [46523] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1890), 1, + STATE(1899), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1647), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 36, + ACTIONS(1645), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178606,6 +180099,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, @@ -178614,18 +180109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46170] = 4, + [46574] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1891), 1, + STATE(1900), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1523), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 36, + ACTIONS(1525), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178652,6 +180146,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, @@ -178660,26 +180156,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46220] = 6, + [46625] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4214), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4216), 1, + ACTIONS(4254), 1, + anon_sym_DOT, + ACTIONS(4256), 1, aux_sym__immediate_decimal_token5, - STATE(1892), 1, + STATE(1901), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1746), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 31, + ACTIONS(1744), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -178708,72 +180205,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46274] = 6, - ACTIONS(103), 1, + [46680] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4218), 1, - anon_sym_DOT, - ACTIONS(4220), 1, - aux_sym__immediate_decimal_token5, - STATE(1893), 1, + ACTIONS(4020), 1, + anon_sym_list, + ACTIONS(4022), 1, + anon_sym_oneof, + STATE(1902), 1, sym_comment, - ACTIONS(739), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [46328] = 8, + STATE(4646), 1, + sym__all_type, + ACTIONS(4018), 2, + anon_sym_table, + anon_sym_record, + STATE(4673), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4016), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [46739] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1894), 1, + STATE(1903), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2150), 1, - sym_cell_path, - ACTIONS(1868), 3, + ACTIONS(1519), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1866), 32, + ACTIONS(1521), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178798,7 +180290,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178806,66 +180303,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46386] = 6, + [46790] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4222), 1, - anon_sym_DOT, - ACTIONS(4224), 1, - aux_sym__immediate_decimal_token5, - STATE(1895), 1, - sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [46440] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1896), 1, + STATE(1904), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(2292), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 36, + ACTIONS(2290), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178892,6 +180340,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, @@ -178900,87 +180350,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46490] = 27, + [46841] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, - STATE(1897), 1, + ACTIONS(4258), 1, + anon_sym_DOT, + ACTIONS(4260), 1, + aux_sym__immediate_decimal_token5, + STATE(1905), 1, sym_comment, - STATE(3750), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5032), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4155), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1445), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46586] = 4, + ACTIONS(747), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [46896] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1898), 1, + STATE(1906), 1, sym_comment, - ACTIONS(1824), 3, + ACTIONS(2176), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1822), 36, + ACTIONS(2174), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179007,6 +180436,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, @@ -179015,25 +180446,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46636] = 5, + [46947] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4226), 1, - aux_sym__immediate_decimal_token5, - STATE(1899), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(4262), 1, + anon_sym_DOT_DOT2, + STATE(1907), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(4264), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 32, + ACTIONS(1956), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -179052,7 +180488,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -179062,238 +180497,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46688] = 27, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4230), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_DOLLAR, - ACTIONS(4234), 1, - anon_sym_DOT_DOT, - ACTIONS(4238), 1, - anon_sym_DQUOTE, - ACTIONS(4240), 1, - anon_sym_SQUOTE, - ACTIONS(4242), 1, - anon_sym_BQUOTE, - ACTIONS(4244), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4246), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4248), 1, - aux_sym_unquoted_token1, - ACTIONS(4250), 1, - sym_raw_string_begin, - STATE(1881), 1, - sym__inter_double_quotes, - STATE(1900), 1, - sym_comment, - STATE(1915), 1, - sym__inter_single_quotes, - STATE(3811), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4236), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4918), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4228), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1886), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1455), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46784] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1901), 1, - sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2209), 1, - sym_cell_path, - ACTIONS(1853), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1850), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [46842] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4252), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4254), 1, - aux_sym__immediate_decimal_token5, - STATE(1902), 1, - sym_comment, - ACTIONS(747), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [46896] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3734), 1, - sym__entry_separator, - STATE(1903), 1, - sym_comment, - ACTIONS(3732), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_GT2, - anon_sym_oneof, - [46946] = 5, + [47006] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4206), 1, - aux_sym__immediate_decimal_token5, - STATE(1904), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(4266), 1, + anon_sym_DOT_DOT2, + STATE(1908), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1975), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 32, + ACTIONS(1973), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -179312,7 +180539,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -179322,14 +180548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46998] = 5, + [47065] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4256), 1, + ACTIONS(4270), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4272), 1, aux_sym__immediate_decimal_token5, - STATE(1905), 1, + STATE(1909), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(739), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -179338,7 +180566,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(773), 30, + ACTIONS(741), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -179369,18 +180597,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [47050] = 4, + [47120] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1906), 1, + STATE(1910), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(2144), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 36, + ACTIONS(2142), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179407,6 +180634,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, @@ -179415,16 +180644,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47100] = 4, + [47171] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1907), 1, + STATE(1911), 1, sym_comment, - ACTIONS(2274), 3, + ACTIONS(2278), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 36, + ACTIONS(2276), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179461,16 +180690,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47150] = 4, + [47221] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1908), 1, + STATE(1912), 1, sym_comment, - ACTIONS(1643), 3, + ACTIONS(2144), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 36, + ACTIONS(2142), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179507,24 +180736,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47200] = 8, + [47271] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + ACTIONS(4274), 1, anon_sym_DOT2, - STATE(1909), 1, + STATE(1913), 1, sym_comment, - STATE(1947), 1, + STATE(1990), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2158), 1, sym_path, - STATE(2203), 1, + STATE(2233), 1, sym_cell_path, - ACTIONS(1880), 3, + ACTIONS(1864), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1878), 32, + ACTIONS(1862), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179557,18 +180786,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47258] = 4, + [47329] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1910), 1, + ACTIONS(4276), 1, + anon_sym_QMARK2, + ACTIONS(4278), 1, + anon_sym_BANG, + STATE(1914), 1, sym_comment, - ACTIONS(1514), 3, + STATE(2165), 1, + sym__path_suffix, + ACTIONS(1456), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 36, + anon_sym_DOT2, + ACTIONS(1458), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179592,10 +180827,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47385] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3756), 1, + sym__entry_separator, + STATE(1915), 1, + sym_comment, + ACTIONS(3754), 38, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_GT2, + anon_sym_oneof, + [47435] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4274), 1, + anon_sym_DOT2, + STATE(1916), 1, + sym_comment, + STATE(1990), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2158), 1, + sym_path, + STATE(2243), 1, + sym_cell_path, + ACTIONS(1890), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1888), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179603,24 +180931,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47308] = 8, + [47493] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + ACTIONS(4274), 1, anon_sym_DOT2, - STATE(1911), 1, + STATE(1917), 1, sym_comment, - STATE(1947), 1, + STATE(1990), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2158), 1, sym_path, - STATE(2182), 1, + STATE(2166), 1, sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(1914), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 32, + ACTIONS(1912), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179653,14 +180981,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47366] = 5, + [47551] = 27, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4222), 1, + anon_sym_null, + ACTIONS(4226), 1, + anon_sym_LPAREN, + ACTIONS(4228), 1, + anon_sym_DOLLAR, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4234), 1, + sym_val_date, + ACTIONS(4236), 1, + anon_sym_DQUOTE, + ACTIONS(4238), 1, + anon_sym_SQUOTE, + ACTIONS(4240), 1, + anon_sym_BQUOTE, + ACTIONS(4242), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4244), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4246), 1, + aux_sym_unquoted_token1, + ACTIONS(4248), 1, + sym_raw_string_begin, + STATE(1895), 1, + sym__inter_single_quotes, + STATE(1897), 1, + sym__inter_double_quotes, + STATE(1918), 1, + sym_comment, + STATE(3902), 1, + sym__val_number_decimal, + STATE(5101), 1, + sym_val_bool, + ACTIONS(3048), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3058), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3060), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5177), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4224), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1903), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1452), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [47647] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4280), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4282), 1, aux_sym__immediate_decimal_token5, - STATE(1912), 1, + STATE(1919), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(739), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -179668,7 +181067,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - anon_sym_COLON2, ACTIONS(741), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -179700,16 +181098,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [47418] = 4, + [47701] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4260), 1, + aux_sym__immediate_decimal_token5, + STATE(1920), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [47753] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1913), 1, + STATE(1921), 1, sym_comment, - ACTIONS(2094), 3, + ACTIONS(1647), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2092), 36, + ACTIONS(1645), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179746,16 +181191,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47468] = 4, + [47803] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1914), 1, + ACTIONS(4284), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4286), 1, + aux_sym__immediate_decimal_token5, + STATE(1922), 1, + sym_comment, + ACTIONS(1772), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1770), 31, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [47857] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4288), 1, + aux_sym__immediate_decimal_token5, + STATE(1923), 1, + sym_comment, + ACTIONS(771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(773), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [47909] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4274), 1, + anon_sym_DOT2, + STATE(1924), 1, + sym_comment, + STATE(1990), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2158), 1, + sym_path, + STATE(2207), 1, + sym_cell_path, + ACTIONS(1898), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1896), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47967] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4292), 1, + aux_sym__immediate_decimal_token5, + STATE(1925), 1, + sym_comment, + ACTIONS(1746), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1744), 31, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [48021] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1926), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1531), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1545), 36, + ACTIONS(1533), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179792,16 +181430,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47518] = 4, + [48071] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1915), 1, + STATE(1927), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1519), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 36, + ACTIONS(1521), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179838,25 +181476,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47568] = 8, + [48121] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1916), 1, + STATE(1928), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2207), 1, - sym_cell_path, - ACTIONS(1860), 3, + ACTIONS(2284), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1858), 32, + ACTIONS(2282), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179880,7 +181511,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179888,115 +181522,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47626] = 5, + [48171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4258), 1, - aux_sym__immediate_decimal_token5, - STATE(1917), 1, + STATE(1929), 1, sym_comment, - ACTIONS(1804), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 31, + ACTIONS(1580), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [47677] = 6, + ACTIONS(1582), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1918), 1, + STATE(1930), 1, sym_comment, - ACTIONS(2577), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2575), 31, + ACTIONS(2176), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(2174), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [47730] = 6, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48271] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1919), 1, + ACTIONS(4256), 1, + aux_sym__immediate_decimal_token5, + STATE(1931), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(1746), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 31, + sym__unquoted_pattern, + ACTIONS(1744), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180019,6 +181651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -180028,23 +181661,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47783] = 4, - ACTIONS(3), 1, + [48323] = 27, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1920), 1, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4222), 1, + anon_sym_null, + ACTIONS(4234), 1, + sym_val_date, + ACTIONS(4296), 1, + anon_sym_LPAREN, + ACTIONS(4298), 1, + anon_sym_DOLLAR, + ACTIONS(4300), 1, + anon_sym_DOT_DOT, + ACTIONS(4304), 1, + anon_sym_DQUOTE, + ACTIONS(4306), 1, + anon_sym_SQUOTE, + ACTIONS(4308), 1, + anon_sym_BQUOTE, + ACTIONS(4310), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4312), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4314), 1, + aux_sym_unquoted_token1, + ACTIONS(4316), 1, + sym_raw_string_begin, + STATE(1911), 1, + sym__inter_double_quotes, + STATE(1932), 1, sym_comment, - ACTIONS(2503), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, + STATE(1944), 1, + sym__inter_single_quotes, + STATE(3923), 1, + sym__val_number_decimal, + STATE(5101), 1, + sym_val_bool, + ACTIONS(3048), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3058), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3060), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4302), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4991), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4294), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1927), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1467), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [48419] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1933), 1, + sym_comment, + ACTIONS(1523), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1525), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48469] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4318), 1, + anon_sym_DOT, + ACTIONS(4320), 1, + aux_sym__immediate_decimal_token5, + STATE(1934), 1, + sym_comment, + ACTIONS(747), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [48523] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1935), 1, + sym_comment, + ACTIONS(1860), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1858), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48573] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1936), 1, + sym_comment, + ACTIONS(2288), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2286), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48623] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4274), 1, + anon_sym_DOT2, + STATE(1937), 1, + sym_comment, + STATE(1990), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2158), 1, + sym_path, + STATE(2236), 1, + sym_cell_path, + ACTIONS(1885), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1882), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48681] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4322), 1, + aux_sym__immediate_decimal_token5, + STATE(1938), 1, + sym_comment, + ACTIONS(1854), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1852), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -180073,112 +182013,394 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47832] = 6, - ACTIONS(103), 1, + [48733] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4262), 1, - anon_sym_GT2, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1921), 1, + STATE(1939), 1, sym_comment, - ACTIONS(4260), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [47885] = 6, - ACTIONS(103), 1, + ACTIONS(2292), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2290), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48783] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4266), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1922), 1, + ACTIONS(4274), 1, + anon_sym_DOT2, + STATE(1940), 1, sym_comment, - ACTIONS(4268), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [47938] = 6, + STATE(1990), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2158), 1, + sym_path, + STATE(2220), 1, + sym_cell_path, + ACTIONS(1902), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1900), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48841] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1941), 1, + sym_comment, + ACTIONS(2296), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2294), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48891] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1942), 1, + sym_comment, + ACTIONS(1535), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1537), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48941] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4274), 1, + anon_sym_DOT2, + STATE(1943), 1, + sym_comment, + STATE(1990), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2158), 1, + sym_path, + STATE(2209), 1, + sym_cell_path, + ACTIONS(1442), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1444), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48999] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1944), 1, + sym_comment, + ACTIONS(2278), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2276), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [49049] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1945), 1, + sym_comment, + ACTIONS(1539), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1541), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [49099] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1946), 1, + sym_comment, + ACTIONS(1527), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1529), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [49149] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4326), 1, + anon_sym_GT2, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(4270), 1, - anon_sym_RBRACK, - STATE(1876), 1, + STATE(1881), 1, aux_sym__types_body_repeat2, - STATE(1923), 1, + STATE(1947), 1, sym_comment, - ACTIONS(4268), 35, + ACTIONS(4324), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180214,26 +182436,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [47991] = 6, + [49202] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(1924), 1, + ACTIONS(4330), 1, + aux_sym__immediate_decimal_token5, + STATE(1948), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(1854), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 31, + sym__unquoted_pattern, + ACTIONS(1852), 31, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -180252,6 +182472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -180261,22 +182482,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48044] = 6, + [49253] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(1983), 1, sym__unquoted_pattern, - STATE(1925), 1, + STATE(1949), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(1975), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 31, + ACTIONS(1973), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180308,18 +182529,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48097] = 6, + [49306] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4332), 1, + anon_sym_DOT_DOT2, + STATE(1950), 1, + sym_comment, + ACTIONS(4334), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1614), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1713), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [49359] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4336), 1, + sym__newline, + STATE(1951), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3760), 36, + anon_sym_LBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [49408] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1952), 1, + sym_comment, + ACTIONS(739), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [49457] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1953), 1, + sym_comment, + ACTIONS(1519), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1521), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [49506] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4339), 1, + aux_sym__immediate_decimal_token5, + STATE(1954), 1, + sym_comment, + ACTIONS(771), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(773), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [49557] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1955), 1, + sym_comment, + ACTIONS(1523), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1525), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [49606] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(4272), 1, + ACTIONS(4341), 1, anon_sym_RBRACK, - STATE(1876), 1, + STATE(1881), 1, aux_sym__types_body_repeat2, - STATE(1926), 1, + STATE(1956), 1, sym_comment, - ACTIONS(4268), 35, + ACTIONS(4343), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180355,26 +182849,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [48150] = 6, + [49659] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(1927), 1, + ACTIONS(2166), 1, + anon_sym_EQ_GT, + ACTIONS(4332), 1, + anon_sym_DOT_DOT2, + STATE(1957), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(4334), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2164), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 31, + ACTIONS(2162), 29, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -180402,26 +182897,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48203] = 6, + [49714] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(1928), 1, + ACTIONS(4345), 1, + anon_sym_DOT_DOT2, + STATE(1958), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(4347), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 31, + ACTIONS(1956), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -180449,21 +182944,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48256] = 5, + [49767] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4224), 1, - aux_sym__immediate_decimal_token5, - STATE(1929), 1, + ACTIONS(4349), 1, + anon_sym_DOT_DOT2, + STATE(1959), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(4351), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1975), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 31, + ACTIONS(1973), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -180485,7 +182982,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -180495,163 +182991,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48307] = 6, + [49820] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4274), 1, - anon_sym_GT2, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1930), 1, - sym_comment, - ACTIONS(4260), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48360] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4276), 1, - anon_sym_GT2, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1931), 1, + ACTIONS(4320), 1, + aux_sym__immediate_decimal_token5, + STATE(1960), 1, sym_comment, - ACTIONS(4260), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48413] = 6, + ACTIONS(747), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [49871] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - STATE(1932), 1, - sym_comment, - ACTIONS(996), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [48466] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2642), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1933), 1, + STATE(1961), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(2543), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 31, + ACTIONS(2541), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180683,320 +183084,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48519] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4278), 1, - sym__newline, - STATE(1934), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3738), 36, - anon_sym_LBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48568] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4281), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1935), 1, - sym_comment, - ACTIONS(4268), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48621] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3036), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - ACTIONS(4285), 1, - anon_sym_null, - ACTIONS(4289), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4293), 1, - sym_val_date, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, - STATE(1936), 1, - sym_comment, - STATE(3750), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4283), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4291), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5032), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4287), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1447), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [48716] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_COLON2, - ACTIONS(874), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4295), 1, - sym_filesize_unit, - ACTIONS(4297), 1, - sym_duration_unit, - STATE(1937), 1, - sym_comment, - ACTIONS(872), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(870), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48773] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4299), 1, - anon_sym_GT2, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1938), 1, - sym_comment, - ACTIONS(4260), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48826] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4220), 1, - aux_sym__immediate_decimal_token5, - STATE(1939), 1, - sym_comment, - ACTIONS(739), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [48877] = 7, + [49924] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4305), 1, + ACTIONS(4357), 1, sym_long_flag_identifier, - ACTIONS(4307), 1, + ACTIONS(4359), 1, anon_sym_EQ2, - STATE(1940), 1, + STATE(1962), 1, sym_comment, - STATE(2191), 1, + STATE(2203), 1, sym__flag_equals_value, - ACTIONS(4303), 9, + ACTIONS(4355), 9, sym_raw_string_begin, aux_sym_cmd_identifier_token4, anon_sym_DASH_DASH, @@ -181006,7 +183105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - ACTIONS(4301), 26, + ACTIONS(4353), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -181033,17 +183132,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token5, aux_sym__val_number_decimal_token1, - [48932] = 4, + [49979] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1941), 1, + STATE(1963), 1, sym_comment, - ACTIONS(1514), 4, + ACTIONS(1527), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1516), 34, + ACTIONS(1529), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181078,271 +183177,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [48981] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4309), 1, - aux_sym__immediate_decimal_token5, - STATE(1942), 1, - sym_comment, - ACTIONS(771), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49032] = 27, + [50028] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3036), 1, + ACTIONS(3058), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4230), 1, + ACTIONS(4226), 1, anon_sym_LPAREN, - ACTIONS(4232), 1, + ACTIONS(4228), 1, anon_sym_DOLLAR, - ACTIONS(4234), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4238), 1, + ACTIONS(4236), 1, anon_sym_DQUOTE, - ACTIONS(4240), 1, + ACTIONS(4238), 1, anon_sym_SQUOTE, - ACTIONS(4242), 1, + ACTIONS(4240), 1, anon_sym_BQUOTE, - ACTIONS(4244), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4246), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(4246), 1, aux_sym_unquoted_token1, - ACTIONS(4250), 1, + ACTIONS(4248), 1, sym_raw_string_begin, - ACTIONS(4285), 1, + ACTIONS(4363), 1, anon_sym_null, - ACTIONS(4289), 1, + ACTIONS(4367), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4293), 1, + ACTIONS(4371), 1, sym_val_date, - STATE(1881), 1, - sym__inter_double_quotes, - STATE(1915), 1, + STATE(1895), 1, sym__inter_single_quotes, - STATE(1943), 1, + STATE(1897), 1, + sym__inter_double_quotes, + STATE(1964), 1, sym_comment, - STATE(3811), 1, + STATE(3902), 1, sym__val_number_decimal, - STATE(5068), 1, + STATE(5101), 1, sym_val_bool, - ACTIONS(4236), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4283), 2, + ACTIONS(4361), 2, anon_sym_true, anon_sym_false, - ACTIONS(4291), 2, + ACTIONS(4369), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4918), 2, + STATE(5177), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4311), 3, + ACTIONS(4365), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(1886), 4, + STATE(1903), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(1458), 5, + STATE(1454), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - [49127] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1944), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49176] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1945), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49225] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1946), 1, - sym_comment, - ACTIONS(849), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(851), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49274] = 7, + [50123] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1947), 1, + STATE(1965), 1, sym_comment, - STATE(1948), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - ACTIONS(1458), 3, + ACTIONS(1531), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 32, + anon_sym_DOT2, + ACTIONS(1533), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181375,21 +183288,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49329] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [50172] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4313), 1, - anon_sym_DOT2, - STATE(2133), 1, - sym_path, - STATE(1948), 2, + STATE(1966), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(1535), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1526), 32, + anon_sym_DOT2, + ACTIONS(1537), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181422,157 +183333,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49382] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1949), 1, - sym_comment, - ACTIONS(1728), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49431] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1950), 1, - sym_comment, - ACTIONS(1804), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49480] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [50221] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1951), 1, - sym_comment, - ACTIONS(1872), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(2644), 1, anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49529] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(2646), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1952), 1, + STATE(1967), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(2591), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 31, + ACTIONS(2589), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181604,62 +183382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49582] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1953), 1, - sym_comment, - ACTIONS(1478), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1480), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49631] = 4, + [50274] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1954), 1, + STATE(1968), 1, sym_comment, - ACTIONS(1543), 4, + ACTIONS(1539), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1545), 34, + ACTIONS(1541), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181694,27 +183427,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [49680] = 7, + [50323] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, - anon_sym_EQ_GT, - ACTIONS(4316), 1, + ACTIONS(4373), 1, anon_sym_DOT_DOT2, - STATE(1955), 1, + STATE(1969), 1, sym_comment, - ACTIONS(4318), 2, + ACTIONS(4375), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 5, + ACTIONS(2156), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2134), 29, + ACTIONS(2154), 30, anon_sym_in, anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181742,23 +183474,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49735] = 6, + [50376] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4320), 1, + ACTIONS(4377), 1, anon_sym_DOT_DOT2, - STATE(1956), 1, + STATE(1970), 1, sym_comment, - ACTIONS(4322), 2, + ACTIONS(4379), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(2104), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 30, + ACTIONS(2102), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181789,23 +183521,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49788] = 6, + [50429] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(4381), 1, + anon_sym_GT2, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(1971), 1, + sym_comment, + ACTIONS(4324), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [50482] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4324), 1, + ACTIONS(4383), 1, anon_sym_DOT_DOT2, - STATE(1957), 1, + STATE(1972), 1, sym_comment, - ACTIONS(4326), 2, + ACTIONS(4385), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(2120), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 30, + ACTIONS(2118), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181836,71 +183615,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49841] = 4, - ACTIONS(3), 1, + [50535] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1958), 1, + STATE(1973), 1, sym_comment, - ACTIONS(1466), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1468), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49890] = 6, + ACTIONS(771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(773), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [50584] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4316), 1, - anon_sym_DOT_DOT2, - STATE(1959), 1, + STATE(1974), 1, sym_comment, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 5, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 30, + sym__unquoted_pattern, + ACTIONS(1770), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181919,6 +183695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -181928,26 +183705,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49943] = 6, + [50633] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4328), 1, - anon_sym_DOT_DOT2, - STATE(1960), 1, + ACTIONS(3058), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4296), 1, + anon_sym_LPAREN, + ACTIONS(4298), 1, + anon_sym_DOLLAR, + ACTIONS(4300), 1, + anon_sym_DOT_DOT, + ACTIONS(4304), 1, + anon_sym_DQUOTE, + ACTIONS(4306), 1, + anon_sym_SQUOTE, + ACTIONS(4308), 1, + anon_sym_BQUOTE, + ACTIONS(4310), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4312), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4314), 1, + aux_sym_unquoted_token1, + ACTIONS(4316), 1, + sym_raw_string_begin, + ACTIONS(4363), 1, + anon_sym_null, + ACTIONS(4367), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4371), 1, + sym_val_date, + STATE(1911), 1, + sym__inter_double_quotes, + STATE(1944), 1, + sym__inter_single_quotes, + STATE(1975), 1, sym_comment, - ACTIONS(4330), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 5, + STATE(3923), 1, + sym__val_number_decimal, + STATE(5101), 1, + sym_val_bool, + ACTIONS(4302), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4369), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4991), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4387), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1927), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1463), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [50728] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(4389), 1, + anon_sym_GT2, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(1976), 1, + sym_comment, + ACTIONS(4324), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [50781] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(4391), 1, + anon_sym_RBRACK, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(1977), 1, + sym_comment, + ACTIONS(4343), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [50834] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(1978), 1, + sym_comment, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2152), 30, + ACTIONS(1956), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181975,26 +183914,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49996] = 6, + [50887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4332), 1, - anon_sym_DOT_DOT2, - STATE(1961), 1, + STATE(1979), 1, sym_comment, - ACTIONS(4334), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 5, + ACTIONS(2527), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2100), 30, + sym__unquoted_pattern, + ACTIONS(2525), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182013,6 +183949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -182022,26 +183959,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50049] = 6, + [50936] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4336), 1, - anon_sym_DOT_DOT2, - STATE(1962), 1, + STATE(1980), 1, sym_comment, - ACTIONS(4338), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 5, + ACTIONS(1854), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2076), 30, + sym__unquoted_pattern, + ACTIONS(1852), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182060,6 +183994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -182069,26 +184004,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50102] = 6, + [50985] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(4393), 1, + anon_sym_RBRACK, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(1981), 1, + sym_comment, + ACTIONS(4343), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [51038] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4340), 1, - anon_sym_DOT_DOT2, - STATE(1963), 1, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(1982), 1, sym_comment, - ACTIONS(4342), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 5, + ACTIONS(2650), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2120), 30, + ACTIONS(2648), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182116,113 +184098,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50155] = 4, + [51091] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1964), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(1983), 1, sym_comment, - ACTIONS(1470), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1614), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1713), 31, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [50204] = 4, - ACTIONS(3), 1, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [51144] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1965), 1, + ACTIONS(866), 1, + anon_sym_COLON2, + ACTIONS(872), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4395), 1, + sym_filesize_unit, + ACTIONS(4397), 1, + sym_duration_unit, + STATE(1984), 1, sym_comment, - ACTIONS(1474), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1476), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [50253] = 6, + ACTIONS(870), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(868), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51201] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(4399), 1, + anon_sym_GT2, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(1985), 1, + sym_comment, + ACTIONS(4324), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [51254] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1986), 1, + sym_comment, + ACTIONS(860), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(862), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [51303] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(4401), 1, + anon_sym_RBRACK, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(1987), 1, + sym_comment, + ACTIONS(4343), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [51356] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4316), 1, + ACTIONS(4332), 1, anon_sym_DOT_DOT2, - STATE(1966), 1, + STATE(1988), 1, sym_comment, - ACTIONS(4318), 2, + ACTIONS(4334), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 5, + ACTIONS(2164), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2134), 30, + ACTIONS(2162), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182253,25 +184380,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50306] = 6, + [51409] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1967), 1, + STATE(1989), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(1872), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 30, + sym__unquoted_pattern, + ACTIONS(1870), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182290,6 +184415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -182299,26 +184425,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50358] = 7, - ACTIONS(103), 1, + [51458] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4346), 1, - anon_sym_RBRACK, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - STATE(1968), 1, + ACTIONS(4274), 1, + anon_sym_DOT2, + STATE(1990), 1, sym_comment, - STATE(2091), 1, - aux_sym__types_body_repeat2, - ACTIONS(4344), 33, + STATE(1993), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2158), 1, + sym_path, + ACTIONS(1504), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1506), 32, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -182332,13 +184459,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -182346,25 +184473,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [50412] = 6, + [51513] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(2656), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(1969), 1, + STATE(1991), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(994), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 30, + ACTIONS(1030), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182392,63 +184520,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50464] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4352), 1, - sym__newline, - STATE(1970), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1955), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [50512] = 4, + [51566] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1971), 1, + ACTIONS(4292), 1, + aux_sym__immediate_decimal_token5, + STATE(1992), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1746), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 31, + ACTIONS(1744), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182480,22 +184566,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50560] = 4, + [51617] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1972), 1, + ACTIONS(4403), 1, + anon_sym_DOT2, + STATE(2158), 1, + sym_path, + STATE(1993), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1508), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1510), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [51670] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(1994), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1020), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 31, + ACTIONS(1022), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182514,7 +184651,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -182524,22 +184660,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50608] = 4, + [51723] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1973), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(1995), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(2599), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 31, + ACTIONS(2597), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182558,7 +184698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -182568,22 +184707,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50656] = 6, + [51776] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1974), 1, + ACTIONS(4406), 1, + anon_sym_DOT_DOT2, + STATE(1996), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(4408), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2112), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 30, + ACTIONS(2110), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182614,128 +184754,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50708] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1975), 1, - sym_comment, - ACTIONS(4268), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [50758] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4359), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4361), 1, - sym_filesize_unit, - ACTIONS(4363), 1, - sym_duration_unit, - STATE(1976), 1, - sym_comment, - ACTIONS(4357), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4355), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [50812] = 8, + [51829] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_DOT2, - STATE(453), 1, - sym_cell_path, - STATE(518), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, - sym_path, - STATE(1977), 1, + ACTIONS(2804), 1, + sym__newline, + STATE(1997), 1, sym_comment, - ACTIONS(1432), 2, + STATE(2072), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2722), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(1434), 31, - ts_builtin_sym_end, + anon_sym_PLUS2, + ACTIONS(2720), 26, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182754,22 +184798,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [50868] = 6, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [51887] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1983), 1, sym__unquoted_pattern, - STATE(1978), 1, + STATE(1998), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(2599), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 30, + ACTIONS(2597), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182800,181 +184849,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50920] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1979), 1, - sym_comment, - ACTIONS(4260), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [50970] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4307), 1, - anon_sym_EQ2, - STATE(1980), 1, - sym_comment, - STATE(2173), 1, - sym__flag_equals_value, - ACTIONS(4365), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4367), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [51022] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4369), 1, - sym__newline, - ACTIONS(4373), 1, - anon_sym_LBRACK, - ACTIONS(4378), 1, - anon_sym_DOT_DOT, - STATE(1981), 1, - sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 6, - anon_sym_DOLLAR, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [51078] = 13, + [51939] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(1982), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(1999), 1, sym_comment, - STATE(1997), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(1975), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2744), 19, + anon_sym_PLUS2, + ACTIONS(1973), 30, anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182985,44 +184878,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51144] = 12, + [51991] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(1983), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(2000), 1, sym_comment, - STATE(1999), 1, - aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(2543), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2744), 23, + anon_sym_PLUS2, + ACTIONS(2541), 30, anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183041,35 +184932,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51208] = 9, + [52043] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - STATE(1984), 1, - sym_comment, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, STATE(2001), 1, - aux_sym__repeat_newline, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2746), 3, + sym_comment, + ACTIONS(2591), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2744), 26, + ACTIONS(2589), 30, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183088,33 +184978,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51266] = 7, + [52095] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - STATE(1985), 1, + STATE(2002), 1, sym_comment, - STATE(2003), 1, - aux_sym__repeat_newline, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2746), 5, + ACTIONS(2527), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2744), 28, + sym__unquoted_pattern, + ACTIONS(2525), 31, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183133,6 +185021,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -183140,116 +185031,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51320] = 18, + [52143] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + STATE(2003), 1, + sym_comment, + ACTIONS(2650), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2648), 32, + anon_sym_in, sym__newline, - ACTIONS(4383), 1, anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - STATE(1986), 1, - sym_comment, - STATE(2005), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2744), 4, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51396] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, + anon_sym_STAR_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(4403), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - STATE(1987), 1, + [52191] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(2004), 1, sym_comment, - STATE(2007), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(2650), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2744), 3, - anon_sym_LBRACE, + anon_sym_PLUS2, + ACTIONS(2648), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [52243] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2005), 1, + sym_comment, + ACTIONS(1020), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1022), 30, anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183257,101 +185150,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51474] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - ACTIONS(4409), 1, - anon_sym_xor2, - STATE(1988), 1, - sym_comment, - STATE(2009), 1, - aux_sym__repeat_newline, - ACTIONS(2744), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51554] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(1989), 1, - sym_comment, - STATE(2011), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4397), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [52295] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2006), 1, + sym_comment, + ACTIONS(994), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1030), 30, anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183359,32 +185196,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51622] = 7, + [52347] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(4418), 1, + anon_sym_RBRACK, + ACTIONS(4420), 1, sym__entry_separator, - ACTIONS(4350), 1, + ACTIONS(4422), 1, sym_raw_string_begin, - ACTIONS(4411), 1, - anon_sym_RBRACK, - STATE(1990), 1, + STATE(2007), 1, sym_comment, - STATE(2091), 1, + STATE(2123), 1, aux_sym__types_body_repeat2, - ACTIONS(4344), 33, + ACTIONS(4416), 33, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -183418,34 +185260,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [51676] = 11, + [52401] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(4424), 1, sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(1991), 1, + ACTIONS(4428), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_DOT_DOT, + STATE(2008), 1, sym_comment, - STATE(2013), 1, - aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(4431), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2958), 6, + anon_sym_DOLLAR, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2960), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [52457] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2009), 1, + sym_comment, + ACTIONS(1772), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2744), 25, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1770), 31, anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183464,59 +185342,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51738] = 15, + [52505] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(1992), 1, + STATE(2010), 1, sym_comment, - STATE(2015), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(1854), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2744), 7, - anon_sym_LBRACE, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1852), 31, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183524,55 +185378,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51808] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - STATE(1993), 1, - sym_comment, - STATE(2017), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2744), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + [52553] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2011), 1, + sym_comment, + ACTIONS(1872), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1870), 31, anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183580,56 +185422,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51880] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - STATE(1994), 1, - sym_comment, - STATE(2019), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2744), 5, - anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [52601] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4436), 1, + sym__newline, + STATE(2012), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1966), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [52649] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4443), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4445), 1, + sym_filesize_unit, + ACTIONS(4447), 1, + sym_duration_unit, + STATE(2013), 1, + sym_comment, + ACTIONS(4441), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4439), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52703] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2280), 1, + anon_sym_DOT2, + STATE(428), 1, + sym_cell_path, + STATE(622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(720), 1, + sym_path, + STATE(2014), 1, + sym_comment, + ACTIONS(1442), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1444), 31, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183637,20 +185571,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51954] = 7, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [52759] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + sym__entry_separator, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(2015), 1, + sym_comment, + ACTIONS(4343), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [52809] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3720), 1, + sym_raw_string_begin, + ACTIONS(4449), 1, + sym__entry_separator, + STATE(2016), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3715), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [52859] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4415), 1, + ACTIONS(4454), 1, anon_sym_RBRACK, - ACTIONS(4417), 1, + ACTIONS(4456), 1, sym__entry_separator, - ACTIONS(4419), 1, + ACTIONS(4458), 1, sym_raw_string_begin, - STATE(1995), 1, + STATE(2016), 1, + aux_sym__types_body_repeat2, + STATE(2017), 1, sym_comment, - STATE(2102), 1, + ACTIONS(4452), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [52913] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4456), 1, + sym__entry_separator, + ACTIONS(4458), 1, + sym_raw_string_begin, + ACTIONS(4460), 1, + anon_sym_RBRACK, + STATE(2016), 1, aux_sym__types_body_repeat2, - ACTIONS(4413), 33, + STATE(2018), 1, + sym_comment, + ACTIONS(4452), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -183684,93 +185763,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [52008] = 13, + [52967] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2860), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(1996), 1, + STATE(2019), 1, sym_comment, - STATE(2032), 1, + STATE(2035), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2702), 19, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [52074] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1997), 1, - sym_comment, - ACTIONS(4421), 2, + ACTIONS(4462), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2706), 20, + ACTIONS(2754), 19, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183789,87 +185816,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52138] = 12, + [53033] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2860), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(1998), 1, + STATE(2020), 1, sym_comment, - STATE(2033), 1, - aux_sym__repeat_newline, - ACTIONS(2704), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2702), 23, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [52202] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, + STATE(2037), 1, aux_sym__repeat_newline, - STATE(1999), 1, - sym_comment, - ACTIONS(2708), 2, + ACTIONS(2756), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 24, + ACTIONS(2754), 23, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183892,29 +185868,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52264] = 9, + [53097] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2860), 1, sym__newline, - STATE(2000), 1, + STATE(2021), 1, sym_comment, - STATE(2034), 1, + STATE(2038), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, + ACTIONS(2756), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2702), 26, + ACTIONS(2754), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -183941,29 +185917,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52322] = 8, + [53155] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2001), 1, + ACTIONS(2860), 1, + sym__newline, + STATE(2022), 1, sym_comment, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, + STATE(2040), 1, + aux_sym__repeat_newline, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2708), 3, + ACTIONS(2756), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2706), 27, + ACTIONS(2754), 28, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -183984,82 +185957,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52378] = 7, + [53209] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4420), 1, + sym__entry_separator, + ACTIONS(4422), 1, + sym_raw_string_begin, + ACTIONS(4472), 1, + anon_sym_RBRACK, + STATE(2023), 1, + sym_comment, + STATE(2123), 1, + aux_sym__types_body_repeat2, + ACTIONS(4416), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [53263] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2860), 1, sym__newline, - STATE(2002), 1, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + ACTIONS(4480), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4482), 1, + anon_sym_bit_DASHor2, + STATE(2024), 1, sym_comment, - STATE(2035), 1, + STATE(2042), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4462), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2702), 28, - anon_sym_in, - anon_sym_DASH2, + ACTIONS(4470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2754), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [52432] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2003), 1, - sym_comment, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2708), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2706), 29, + ACTIONS(4474), 8, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -184067,71 +186069,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [52484] = 18, + [53339] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + sym__entry_separator, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(2025), 1, + sym_comment, + ACTIONS(4324), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [53389] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2860), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4482), 1, anon_sym_bit_DASHor2, - STATE(2004), 1, + ACTIONS(4484), 1, + anon_sym_and2, + STATE(2026), 1, sym_comment, - STATE(2036), 1, + STATE(2044), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 4, + ACTIONS(2754), 3, anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184140,55 +186173,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52560] = 17, + [53467] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4482), 1, anon_sym_bit_DASHor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2005), 1, + ACTIONS(4484), 1, + anon_sym_and2, + ACTIONS(4486), 1, + anon_sym_xor2, + STATE(2027), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + STATE(2046), 1, + aux_sym__repeat_newline, + ACTIONS(2754), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184197,57 +186233,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52634] = 19, + [53547] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2860), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - STATE(2006), 1, + STATE(2028), 1, sym_comment, - STATE(2037), 1, + STATE(2048), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184256,57 +186275,474 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52712] = 18, + ACTIONS(2754), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53615] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + STATE(2029), 1, + sym_comment, + STATE(2050), 1, + aux_sym__repeat_newline, + ACTIONS(2756), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2754), 25, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + [53677] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2030), 1, + sym_comment, + STATE(2052), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4466), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4476), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2754), 7, + anon_sym_LBRACE, anon_sym_and2, - STATE(540), 1, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4474), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [53747] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + STATE(2031), 1, + sym_comment, + STATE(2054), 1, aux_sym__repeat_newline, - STATE(2007), 1, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4466), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4476), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2754), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4474), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [53819] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + ACTIONS(4480), 1, + anon_sym_bit_DASHxor2, + STATE(2032), 1, sym_comment, - ACTIONS(4421), 2, + STATE(2056), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4462), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4466), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4476), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2754), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4474), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [53893] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4420), 1, + sym__entry_separator, + ACTIONS(4422), 1, + sym_raw_string_begin, + ACTIONS(4488), 1, + anon_sym_RBRACK, + STATE(2033), 1, + sym_comment, + STATE(2123), 1, + aux_sym__types_body_repeat2, + ACTIONS(4416), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [53947] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2034), 1, + sym_comment, + STATE(2070), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4466), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2720), 19, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [54013] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2035), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 4, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2724), 20, + anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [54077] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2036), 1, + sym_comment, + STATE(2071), 1, + aux_sym__repeat_newline, + ACTIONS(2722), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2720), 23, + anon_sym_in, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [54141] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2037), 1, + sym_comment, + ACTIONS(2726), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2724), 24, anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -184314,58 +186750,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52788] = 20, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [54203] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2038), 1, + sym_comment, + ACTIONS(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2726), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2724), 27, + anon_sym_in, sym__newline, - ACTIONS(4383), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [54259] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + STATE(2039), 1, + sym_comment, + STATE(2073), 1, + aux_sym__repeat_newline, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2722), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(2720), 28, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + [54313] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2040), 1, + sym_comment, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2726), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2724), 29, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, - ACTIONS(4409), 1, anon_sym_xor2, - STATE(2008), 1, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [54365] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + ACTIONS(4480), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4482), 1, + anon_sym_bit_DASHor2, + STATE(2041), 1, sym_comment, - STATE(2038), 1, + STATE(2074), 1, aux_sym__repeat_newline, - ACTIONS(2702), 2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2720), 4, anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - ACTIONS(4381), 2, + ACTIONS(4466), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4476), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4474), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [54441] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + ACTIONS(4510), 1, + anon_sym_bit_DASHand2, + ACTIONS(4512), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4514), 1, + anon_sym_bit_DASHor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2042), 1, + sym_comment, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(2724), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184374,57 +187017,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52868] = 19, + [54515] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4482), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4484), 1, anon_sym_and2, - ACTIONS(4449), 1, + STATE(2043), 1, + sym_comment, + STATE(2075), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2720), 3, + anon_sym_LBRACE, anon_sym_xor2, - STATE(540), 1, + anon_sym_or2, + ACTIONS(4466), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4476), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4474), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [54593] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + ACTIONS(4510), 1, + anon_sym_bit_DASHand2, + ACTIONS(4512), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4514), 1, + anon_sym_bit_DASHor2, + ACTIONS(4516), 1, + anon_sym_and2, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2009), 1, + STATE(2044), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 3, + ACTIONS(2724), 4, sym__newline, anon_sym_LBRACE, + anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184433,40 +187134,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52946] = 14, + [54669] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(2010), 1, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + ACTIONS(4480), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4482), 1, + anon_sym_bit_DASHor2, + ACTIONS(4484), 1, + anon_sym_and2, + ACTIONS(4486), 1, + anon_sym_xor2, + STATE(2045), 1, sym_comment, - STATE(2039), 1, + STATE(2076), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(2720), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4462), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4466), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4476), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4474), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [54749] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + ACTIONS(4510), 1, + anon_sym_bit_DASHand2, + ACTIONS(4512), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4514), 1, + anon_sym_bit_DASHor2, + ACTIONS(4516), 1, + anon_sym_and2, + ACTIONS(4518), 1, + anon_sym_xor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2046), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2724), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4506), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [54827] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2047), 1, + sym_comment, + STATE(2077), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184475,7 +187295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 11, + ACTIONS(2720), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184487,38 +187307,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53014] = 13, + [54895] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2011), 1, + STATE(2048), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184527,7 +187347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 12, + ACTIONS(2724), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184540,32 +187360,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53080] = 11, + [54961] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(2012), 1, + STATE(2049), 1, sym_comment, - STATE(2040), 1, + STATE(2078), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2722), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 25, + ACTIONS(2720), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -184591,30 +187411,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53142] = 10, + [55023] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2013), 1, + STATE(2050), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2726), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2706), 26, + ACTIONS(2724), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -184641,45 +187461,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53202] = 15, + [55083] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(2014), 1, + STATE(2051), 1, sym_comment, - STATE(2041), 1, + STATE(2079), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 7, + ACTIONS(2720), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184687,7 +187507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184696,43 +187516,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53272] = 14, + [55153] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2015), 1, + STATE(2052), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 8, + ACTIONS(2724), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184741,7 +187561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184750,54 +187570,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53340] = 16, + [55221] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - STATE(2016), 1, + STATE(2053), 1, sym_comment, - STATE(2042), 1, + STATE(2080), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 6, + ACTIONS(2720), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184806,45 +187626,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53412] = 15, + [55293] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2017), 1, + STATE(2054), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 7, + ACTIONS(2724), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184852,7 +187672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184861,55 +187681,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53482] = 17, + [55363] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2804), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - STATE(2018), 1, + STATE(2055), 1, sym_comment, - STATE(2043), 1, + STATE(2081), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 5, + ACTIONS(2720), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184918,54 +187738,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53556] = 16, + [55437] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2019), 1, + STATE(2056), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 6, + ACTIONS(2724), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184974,40 +187794,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53628] = 13, + [55509] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(2020), 1, + STATE(2057), 1, sym_comment, - STATE(2045), 1, + STATE(2083), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2712), 19, + ACTIONS(2730), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185027,35 +187847,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53694] = 12, + [55575] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(2021), 1, + STATE(2058), 1, sym_comment, - STATE(2047), 1, + STATE(2141), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2732), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 23, + ACTIONS(2730), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185079,29 +187899,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53758] = 9, + [55639] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - STATE(2022), 1, + STATE(2059), 1, sym_comment, - STATE(2049), 1, + STATE(2087), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2714), 3, + ACTIONS(2732), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2712), 26, + ACTIONS(2730), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -185128,25 +187948,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53816] = 7, + [55697] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - STATE(2023), 1, + STATE(2060), 1, sym_comment, - STATE(2051), 1, + STATE(2089), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2714), 5, + ACTIONS(2732), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2712), 28, + ACTIONS(2730), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -185175,56 +187995,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53870] = 18, + [55751] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4482), 1, anon_sym_bit_DASHor2, - STATE(2024), 1, + STATE(2061), 1, sym_comment, - STATE(2053), 1, + STATE(2091), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 4, + ACTIONS(2730), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185233,57 +188053,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53946] = 19, + [55827] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4482), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4484), 1, anon_sym_and2, - STATE(2025), 1, + STATE(2062), 1, sym_comment, - STATE(2055), 1, + STATE(2093), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 3, + ACTIONS(2730), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185292,58 +188112,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54024] = 20, + [55905] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4482), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4484), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4486), 1, anon_sym_xor2, - STATE(2026), 1, + STATE(2063), 1, sym_comment, - STATE(2057), 1, + STATE(2095), 1, aux_sym__repeat_newline, - ACTIONS(2712), 2, + ACTIONS(2730), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185352,40 +188172,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54104] = 14, + [55985] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(2027), 1, + STATE(2064), 1, sym_comment, - STATE(2059), 1, + STATE(2097), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185394,7 +188214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 11, + ACTIONS(2730), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185406,32 +188226,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54172] = 11, + [56053] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(2028), 1, + STATE(2065), 1, sym_comment, - STATE(2061), 1, + STATE(2099), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2732), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2712), 25, + ACTIONS(2730), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185457,45 +188277,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54234] = 15, + [56115] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(2029), 1, + STATE(2066), 1, sym_comment, - STATE(2063), 1, + STATE(2101), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 7, + ACTIONS(2730), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185503,7 +188323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185512,54 +188332,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54304] = 16, + [56185] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - STATE(2030), 1, + STATE(2067), 1, sym_comment, - STATE(2065), 1, + STATE(2103), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 6, + ACTIONS(2730), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185568,55 +188388,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54376] = 17, + [56257] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2831), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - STATE(2031), 1, + STATE(2068), 1, sym_comment, - STATE(2067), 1, + STATE(2105), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 5, + ACTIONS(2730), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185625,38 +188445,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54450] = 12, + [56331] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4420), 1, + sym__entry_separator, + ACTIONS(4422), 1, + sym_raw_string_begin, + ACTIONS(4520), 1, + anon_sym_RBRACK, + STATE(2069), 1, + sym_comment, + STATE(2123), 1, + aux_sym__types_body_repeat2, + ACTIONS(4416), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [56385] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2032), 1, + STATE(2070), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 20, + ACTIONS(2738), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -185677,33 +188544,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54514] = 11, + [56449] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2033), 1, + STATE(2071), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2740), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 24, + ACTIONS(2738), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -185728,27 +188595,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54576] = 8, + [56511] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2034), 1, + STATE(2072), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, + ACTIONS(2740), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2720), 27, + ACTIONS(2738), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185776,23 +188643,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54632] = 6, + [56567] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2035), 1, + STATE(2073), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(2740), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 29, + ACTIONS(2738), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185822,55 +188689,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54684] = 17, + [56619] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2036), 1, + STATE(2074), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 5, + ACTIONS(2738), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185879,56 +188746,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54758] = 18, + [56693] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4516), 1, anon_sym_and2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2037), 1, + STATE(2075), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 4, + ACTIONS(2738), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185937,57 +188804,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54834] = 19, + [56769] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4516), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4518), 1, anon_sym_xor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2038), 1, + STATE(2076), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 3, + ACTIONS(2738), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185996,38 +188863,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54912] = 13, + [56847] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2039), 1, + STATE(2077), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186036,7 +188903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 12, + ACTIONS(2738), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186049,30 +188916,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54978] = 10, + [56913] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2040), 1, + STATE(2078), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2740), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 26, + ACTIONS(2738), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186099,43 +188966,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55038] = 14, + [56973] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2041), 1, + STATE(2079), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 8, + ACTIONS(2738), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186144,7 +189011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186153,45 +189020,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55106] = 15, + [57041] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2042), 1, + STATE(2080), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 7, + ACTIONS(2738), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186199,7 +189066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186208,54 +189075,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55176] = 16, + [57111] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2043), 1, + STATE(2081), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 6, + ACTIONS(2738), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186264,40 +189131,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55248] = 13, + [57183] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(2044), 1, + STATE(2082), 1, sym_comment, - STATE(2068), 1, + STATE(2107), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2728), 19, + ACTIONS(2746), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -186317,38 +189184,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55314] = 12, + [57249] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2045), 1, + STATE(2083), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2732), 20, + ACTIONS(2750), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186369,35 +189236,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55378] = 12, + [57313] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(2046), 1, + STATE(2084), 1, sym_comment, - STATE(2069), 1, + STATE(2108), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2748), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 23, + ACTIONS(2746), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -186421,36 +189288,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55442] = 11, + [57377] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2047), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(2085), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(1958), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2732), 24, + anon_sym_PLUS2, + ACTIONS(1956), 30, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -186469,32 +189325,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55504] = 9, + [57429] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - STATE(2048), 1, + STATE(2086), 1, sym_comment, - STATE(2070), 1, + STATE(2109), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2730), 3, + ACTIONS(2748), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2728), 26, + ACTIONS(2746), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -186521,27 +189383,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55562] = 8, + [57487] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2049), 1, + STATE(2087), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2734), 3, + ACTIONS(2752), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2732), 27, + ACTIONS(2750), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186569,25 +189431,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55618] = 7, + [57543] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - STATE(2050), 1, + STATE(2088), 1, sym_comment, - STATE(2071), 1, + STATE(2110), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, + ACTIONS(2748), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2728), 28, + ACTIONS(2746), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -186616,23 +189478,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55672] = 6, + [57597] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2051), 1, + STATE(2089), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2734), 5, + ACTIONS(2752), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2732), 29, + ACTIONS(2750), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186662,56 +189524,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55724] = 18, + [57649] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4482), 1, anon_sym_bit_DASHor2, - STATE(2052), 1, + STATE(2090), 1, sym_comment, - STATE(2072), 1, + STATE(2111), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 4, + ACTIONS(2746), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186720,55 +189582,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55800] = 17, + [57725] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2053), 1, + STATE(2091), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 5, + ACTIONS(2750), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186777,57 +189639,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55874] = 19, + [57799] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4482), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4484), 1, anon_sym_and2, - STATE(2054), 1, + STATE(2092), 1, sym_comment, - STATE(2073), 1, + STATE(2112), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 3, + ACTIONS(2746), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186836,56 +189698,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55952] = 18, + [57877] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4516), 1, anon_sym_and2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2055), 1, + STATE(2093), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 4, + ACTIONS(2750), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186894,58 +189756,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56028] = 20, + [57953] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4482), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4484), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4486), 1, anon_sym_xor2, - STATE(2056), 1, + STATE(2094), 1, sym_comment, - STATE(2074), 1, + STATE(2113), 1, aux_sym__repeat_newline, - ACTIONS(2728), 2, + ACTIONS(2746), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186954,57 +189816,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56108] = 19, + [58033] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4516), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4518), 1, anon_sym_xor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2057), 1, + STATE(2095), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 3, + ACTIONS(2750), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187013,40 +189875,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56186] = 14, + [58111] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(2058), 1, + STATE(2096), 1, sym_comment, - STATE(2075), 1, + STATE(2114), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187055,7 +189917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 11, + ACTIONS(2746), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187067,38 +189929,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56254] = 13, + [58179] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2059), 1, + STATE(2097), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187107,7 +189969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 12, + ACTIONS(2750), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187120,32 +189982,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56320] = 11, + [58245] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(2060), 1, + STATE(2098), 1, sym_comment, - STATE(2076), 1, + STATE(2115), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2748), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2728), 25, + ACTIONS(2746), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -187171,30 +190033,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56382] = 10, + [58307] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2061), 1, + STATE(2099), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2752), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2732), 26, + ACTIONS(2750), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -187221,45 +190083,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56442] = 15, + [58367] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - STATE(2062), 1, + STATE(2100), 1, sym_comment, - STATE(2077), 1, + STATE(2116), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 7, + ACTIONS(2746), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187267,7 +190129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187276,43 +190138,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56512] = 14, + [58437] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2063), 1, + STATE(2101), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 8, + ACTIONS(2750), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187321,7 +190183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187330,54 +190192,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56580] = 16, + [58505] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - STATE(2064), 1, + STATE(2102), 1, sym_comment, - STATE(2078), 1, + STATE(2117), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 6, + ACTIONS(2746), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187386,45 +190248,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56652] = 15, + [58577] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2065), 1, + STATE(2103), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 7, + ACTIONS(2750), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187432,7 +190294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187441,55 +190303,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56722] = 17, + [58647] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - STATE(2066), 1, + STATE(2104), 1, sym_comment, - STATE(2079), 1, + STATE(2118), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 5, + ACTIONS(2746), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187498,54 +190360,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56796] = 16, + [58721] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2067), 1, + STATE(2105), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 6, + ACTIONS(2750), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187554,38 +190416,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56868] = 12, + [58793] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4424), 1, + sym__newline, + ACTIONS(4428), 1, + anon_sym_LBRACK, + STATE(2106), 1, + sym_comment, + ACTIONS(4431), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2958), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2960), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [58847] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2068), 1, + STATE(2107), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2740), 20, + ACTIONS(2762), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -187606,33 +190515,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56932] = 11, + [58911] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2069), 1, + STATE(2108), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2764), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 24, + ACTIONS(2762), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -187657,27 +190566,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56994] = 8, + [58973] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2070), 1, + STATE(2109), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2742), 3, + ACTIONS(2764), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2740), 27, + ACTIONS(2762), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -187705,23 +190614,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57050] = 6, + [59029] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2071), 1, + STATE(2110), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2742), 5, + ACTIONS(2764), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2740), 29, + ACTIONS(2762), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -187751,55 +190660,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57102] = 17, + [59081] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2072), 1, + STATE(2111), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 5, + ACTIONS(2762), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187808,56 +190717,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57176] = 18, + [59155] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4516), 1, anon_sym_and2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2073), 1, + STATE(2112), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 4, + ACTIONS(2762), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187866,57 +190775,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57252] = 19, + [59231] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4516), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4518), 1, anon_sym_xor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2074), 1, + STATE(2113), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 3, + ACTIONS(2762), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187925,38 +190834,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57330] = 13, + [59309] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2075), 1, + STATE(2114), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187965,7 +190874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 12, + ACTIONS(2762), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187978,30 +190887,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57396] = 10, + [59375] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2076), 1, + STATE(2115), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2764), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2740), 26, + ACTIONS(2762), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -188028,43 +190937,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57456] = 14, + [59435] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2077), 1, + STATE(2116), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 8, + ACTIONS(2762), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -188073,7 +190982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188082,45 +190991,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57524] = 15, + [59503] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2078), 1, + STATE(2117), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 7, + ACTIONS(2762), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -188128,7 +191037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188137,54 +191046,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57594] = 16, + [59573] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2079), 1, + STATE(2118), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 6, + ACTIONS(2762), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188193,12 +191102,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57666] = 4, + [59645] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2080), 1, + ACTIONS(4456), 1, + sym__entry_separator, + ACTIONS(4458), 1, + sym_raw_string_begin, + ACTIONS(4522), 1, + anon_sym_RBRACK, + STATE(2016), 1, + aux_sym__types_body_repeat2, + STATE(2119), 1, sym_comment, - ACTIONS(747), 7, + ACTIONS(4452), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [59699] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2120), 1, + sym_comment, + ACTIONS(739), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -188206,7 +191162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(749), 30, + ACTIONS(741), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -188237,204 +191193,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [57714] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4455), 1, - anon_sym_DASH_DASH, - STATE(2148), 1, - sym_long_flag, - STATE(2081), 2, - sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(4451), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4453), 31, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [57766] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2082), 1, - sym_comment, - ACTIONS(996), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57814] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2083), 1, - sym_comment, - ACTIONS(1016), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1018), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57862] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2084), 1, - sym_comment, - ACTIONS(2525), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2523), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57914] = 7, + [59747] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(974), 1, + ACTIONS(892), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4458), 1, + ACTIONS(4524), 1, sym_filesize_unit, - ACTIONS(4460), 1, + ACTIONS(4526), 1, sym_duration_unit, - STATE(2085), 1, + STATE(2121), 1, sym_comment, - ACTIONS(972), 5, + ACTIONS(890), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(970), 29, + ACTIONS(888), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -188464,192 +191240,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [57968] = 6, + [59801] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4462), 1, - sym__newline, - STATE(2086), 1, + ACTIONS(4359), 1, + anon_sym_EQ2, + STATE(2122), 1, sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 27, + STATE(2229), 1, + sym__flag_equals_value, + ACTIONS(4528), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4530), 32, sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [58020] = 7, + [59853] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, + ACTIONS(3720), 1, sym_raw_string_begin, - ACTIONS(4465), 1, - anon_sym_RBRACK, - STATE(2087), 1, + ACTIONS(4532), 1, + sym__entry_separator, + STATE(2123), 2, sym_comment, - STATE(2102), 1, aux_sym__types_body_repeat2, - ACTIONS(4413), 33, + ACTIONS(3715), 34, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58074] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2088), 1, - sym_comment, - ACTIONS(2940), 37, - sym__newline, - anon_sym_LBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [58120] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2089), 1, - sym_comment, - ACTIONS(2637), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2635), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58168] = 4, + [59903] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2090), 1, + STATE(2124), 1, sym_comment, - ACTIONS(771), 7, + ACTIONS(860), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -188657,7 +191344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(773), 30, + ACTIONS(862), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -188688,23 +191375,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [58216] = 5, - ACTIONS(103), 1, + [59951] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4467), 1, - sym__entry_separator, - STATE(2091), 2, + ACTIONS(4535), 1, + anon_sym_QMARK2, + STATE(2125), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 34, + ACTIONS(1448), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1450), 32, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -188718,14 +191406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -188733,109 +191420,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [58266] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2092), 1, - sym_comment, - ACTIONS(2569), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2567), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58318] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2093), 1, - sym_comment, - ACTIONS(2503), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58366] = 5, + [60001] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4470), 1, - anon_sym_QMARK2, - STATE(2094), 1, + ACTIONS(4541), 1, + anon_sym_DASH_DASH, + STATE(2168), 1, + sym_long_flag, + STATE(2126), 2, sym_comment, - ACTIONS(1438), 4, + aux_sym_decl_def_repeat1, + ACTIONS(4537), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 32, + ACTIONS(4539), 31, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -188860,7 +191459,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -188868,19 +191466,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [58416] = 5, + [60053] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2127), 1, + sym_comment, + ACTIONS(771), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(773), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [60101] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4470), 1, + ACTIONS(4535), 1, anon_sym_BANG, - STATE(2095), 1, + STATE(2128), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1448), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1440), 32, + ACTIONS(1450), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -188913,25 +191555,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [58466] = 6, + [60151] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(1734), 1, sym__unquoted_pattern, - STATE(2096), 1, + STATE(2129), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 30, + ACTIONS(886), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188959,24 +191600,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58518] = 6, + [60201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2097), 1, + STATE(2130), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(1020), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 30, + ACTIONS(1022), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -189005,24 +191644,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58570] = 5, + [60249] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(2098), 1, + STATE(2131), 1, sym_comment, - ACTIONS(868), 5, + ACTIONS(994), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 31, + ACTIONS(1030), 32, anon_sym_in, sym__newline, anon_sym_DASH2, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -189050,117 +191688,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58620] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4476), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4478), 1, - sym_filesize_unit, - ACTIONS(4480), 1, - sym_duration_unit, - STATE(2099), 1, - sym_comment, - ACTIONS(4474), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4472), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [58674] = 6, + [60297] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2100), 1, + ACTIONS(4544), 1, + sym__newline, + STATE(2132), 1, sym_comment, - ACTIONS(1016), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1018), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58726] = 7, + ACTIONS(4431), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2958), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2960), 27, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [60349] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(888), 1, + ACTIONS(4551), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4482), 1, + ACTIONS(4553), 1, sym_filesize_unit, - ACTIONS(4484), 1, + ACTIONS(4555), 1, sym_duration_unit, - STATE(2101), 1, + STATE(2133), 1, sym_comment, - ACTIONS(886), 5, + ACTIONS(4549), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(884), 29, + ACTIONS(4547), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189190,17 +191781,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [58780] = 5, + [60403] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4486), 1, + ACTIONS(4456), 1, sym__entry_separator, - STATE(2102), 2, - sym_comment, + ACTIONS(4458), 1, + sym_raw_string_begin, + ACTIONS(4557), 1, + anon_sym_RBRACK, + STATE(2016), 1, aux_sym__types_body_repeat2, - ACTIONS(3710), 34, + STATE(2134), 1, + sym_comment, + ACTIONS(4452), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -189208,7 +191802,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, @@ -189235,24 +191828,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [58830] = 7, + [60457] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2135), 1, + sym_comment, + ACTIONS(2960), 37, + sym__newline, + anon_sym_LBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [60503] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4493), 1, + ACTIONS(906), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4495), 1, + ACTIONS(4559), 1, sym_filesize_unit, - ACTIONS(4497), 1, + ACTIONS(4561), 1, sym_duration_unit, - STATE(2103), 1, + STATE(2136), 1, sym_comment, - ACTIONS(4491), 5, + ACTIONS(904), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 29, + ACTIONS(902), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189282,165 +191918,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [58884] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - ACTIONS(4499), 1, - anon_sym_RBRACK, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2104), 1, - sym_comment, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58938] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - ACTIONS(4501), 1, - anon_sym_RBRACK, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2105), 1, - sym_comment, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58992] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4369), 1, - sym__newline, - ACTIONS(4373), 1, - anon_sym_LBRACK, - STATE(2106), 1, - sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [59046] = 7, + [60557] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4507), 1, + ACTIONS(4567), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4509), 1, + ACTIONS(4569), 1, sym_filesize_unit, - ACTIONS(4511), 1, + ACTIONS(4571), 1, sym_duration_unit, - STATE(2107), 1, + STATE(2137), 1, sym_comment, - ACTIONS(4505), 5, + ACTIONS(4565), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4503), 29, + ACTIONS(4563), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189470,67 +191965,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [59100] = 7, + [60611] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - ACTIONS(4513), 1, - anon_sym_RBRACK, - STATE(2091), 1, - aux_sym__types_body_repeat2, - STATE(2108), 1, + ACTIONS(4577), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4579), 1, + sym_filesize_unit, + ACTIONS(4581), 1, + sym_duration_unit, + STATE(2138), 1, sym_comment, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59154] = 4, + ACTIONS(4575), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4573), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [60665] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2109), 1, + ACTIONS(4587), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4589), 1, + sym_filesize_unit, + ACTIONS(4591), 1, + sym_duration_unit, + STATE(2139), 1, sym_comment, - ACTIONS(849), 7, + ACTIONS(4585), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(851), 30, + ACTIONS(4583), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189560,27 +192059,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [59202] = 7, - ACTIONS(103), 1, + [60719] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - ACTIONS(4515), 1, - anon_sym_RBRACK, - STATE(2091), 1, - aux_sym__types_body_repeat2, - STATE(2110), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2140), 1, + sym_comment, + ACTIONS(1614), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1713), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [60771] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2141), 1, + sym_comment, + ACTIONS(2752), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2750), 24, + anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [60833] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(2142), 1, sym_comment, - ACTIONS(4344), 33, + ACTIONS(2650), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2648), 32, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -189594,13 +192186,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -189608,17 +192200,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59256] = 4, + [60882] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2111), 1, + ACTIONS(4211), 1, + sym__unquoted_pattern, + STATE(2143), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(866), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 32, + ACTIONS(886), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189651,64 +192244,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59303] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2112), 1, - sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [59350] = 4, - ACTIONS(103), 1, + [60931] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2113), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2144), 1, sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 34, + ACTIONS(1614), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1713), 32, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -189722,14 +192274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -189737,23 +192288,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59397] = 5, + [60980] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2114), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(2913), 1, + anon_sym_DASH2, + ACTIONS(2923), 1, + anon_sym_PLUS2, + ACTIONS(2931), 1, + anon_sym_bit_DASHand2, + ACTIONS(2933), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2935), 1, + anon_sym_bit_DASHor2, + ACTIONS(2937), 1, + anon_sym_and2, + ACTIONS(2939), 1, + anon_sym_xor2, + ACTIONS(4593), 1, + anon_sym_or2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2145), 1, sym_comment, - ACTIONS(2637), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2911), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2915), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2919), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2921), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2925), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2917), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2929), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2927), 8, anon_sym_in, - ACTIONS(2635), 32, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61059] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4420), 1, + sym__entry_separator, + ACTIONS(4422), 1, sym_raw_string_begin, + STATE(2123), 1, + aux_sym__types_body_repeat2, + STATE(2146), 1, + sym_comment, + ACTIONS(4416), 33, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -189767,13 +192378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -189781,67 +192392,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59446] = 5, - ACTIONS(3), 1, + [61110] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4147), 1, - sym__unquoted_pattern, - STATE(2115), 1, - sym_comment, - ACTIONS(868), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(968), 32, + ACTIONS(4456), 1, + sym__entry_separator, + ACTIONS(4458), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(2016), 1, + aux_sym__types_body_repeat2, + STATE(2147), 1, + sym_comment, + ACTIONS(4452), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59495] = 5, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [61161] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2116), 1, + STATE(2148), 1, sym_comment, - ACTIONS(1619), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1706), 32, + ACTIONS(3756), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 34, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -189855,13 +192465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -189869,24 +192480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59544] = 5, - ACTIONS(3), 1, + [61208] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4517), 1, - sym__newline, - STATE(2117), 2, + STATE(2149), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3738), 27, + ACTIONS(3756), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -189894,18 +192496,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -189913,63 +192522,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, - [59593] = 6, - ACTIONS(103), 1, + aux_sym__unquoted_in_list_token1, + [61255] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2118), 1, + ACTIONS(4595), 1, + anon_sym_LBRACK2, + STATE(2150), 1, sym_comment, - ACTIONS(4413), 33, + ACTIONS(2090), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2088), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [59644] = 5, + [61304] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2119), 1, + STATE(2151), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(1496), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(994), 32, + anon_sym_DOT2, + ACTIONS(1498), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190002,24 +192610,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59693] = 6, - ACTIONS(103), 1, + [61351] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, + STATE(2152), 1, + sym_comment, + ACTIONS(2146), 36, + sym__newline, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [61396] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4597), 1, + sym__newline, + STATE(2153), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3758), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3760), 27, sym_raw_string_begin, - STATE(2091), 1, - aux_sym__types_body_repeat2, - STATE(2120), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [61445] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2154), 1, sym_comment, - ACTIONS(4344), 33, + ACTIONS(1020), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1022), 32, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -190033,13 +192726,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190047,19 +192740,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59744] = 5, + [61494] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4520), 1, - sym__newline, - STATE(2121), 2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2155), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 3, + ACTIONS(994), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3738), 31, + ACTIONS(1030), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190084,6 +192776,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190091,18 +192784,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59793] = 5, + [61543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2122), 1, + STATE(2156), 1, sym_comment, - ACTIONS(1016), 3, + ACTIONS(2527), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1018), 32, + sym__unquoted_pattern, + ACTIONS(2525), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190135,144 +192827,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59842] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2837), 1, - anon_sym_DASH2, - ACTIONS(2847), 1, - anon_sym_PLUS2, - ACTIONS(2858), 1, - anon_sym_bit_DASHand2, - ACTIONS(2860), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2862), 1, - anon_sym_bit_DASHor2, - ACTIONS(2908), 1, - anon_sym_and2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(2914), 1, - anon_sym_xor2, - ACTIONS(4523), 1, - anon_sym_or2, - STATE(2123), 1, - sym_comment, - STATE(2124), 1, - aux_sym__repeat_newline, - ACTIONS(2835), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2839), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2843), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2845), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2849), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2841), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2856), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2851), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [59921] = 20, + [61590] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2792), 1, + ACTIONS(2809), 1, anon_sym_DASH2, - ACTIONS(2798), 1, + ACTIONS(2819), 1, anon_sym_PLUS2, - ACTIONS(2802), 1, + ACTIONS(2899), 1, anon_sym_bit_DASHand2, - ACTIONS(2804), 1, + ACTIONS(2901), 1, anon_sym_bit_DASHxor2, ACTIONS(2903), 1, anon_sym_bit_DASHor2, - ACTIONS(2910), 1, + ACTIONS(2905), 1, anon_sym_and2, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(2918), 1, + ACTIONS(2909), 1, anon_sym_xor2, - ACTIONS(4525), 1, + ACTIONS(4600), 1, anon_sym_or2, - STATE(540), 1, + STATE(2145), 1, aux_sym__repeat_newline, - STATE(2124), 1, + STATE(2157), 1, sym_comment, - ACTIONS(2782), 2, + ACTIONS(2807), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2784), 2, + ACTIONS(2815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2786), 2, + ACTIONS(2817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2800), 2, + ACTIONS(2821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2794), 4, + ACTIONS(2813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2796), 4, + ACTIONS(2897), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2788), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [60000] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(2125), 1, - sym_comment, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 30, + ACTIONS(2895), 8, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -190280,35 +192886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60049] = 5, + [61669] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4527), 1, - anon_sym_LBRACK2, - STATE(2126), 1, + STATE(2158), 1, sym_comment, - ACTIONS(2130), 3, + ACTIONS(1547), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2128), 32, + anon_sym_DOT2, + ACTIONS(1549), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190341,17 +192929,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60098] = 4, + [61716] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2127), 1, + ACTIONS(4602), 1, + sym__newline, + STATE(2159), 2, sym_comment, - ACTIONS(1535), 4, + aux_sym__types_body_repeat1, + ACTIONS(3758), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 32, + ACTIONS(3760), 31, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190376,7 +192966,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190384,57 +192973,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60145] = 20, + [61765] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4482), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4484), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4486), 1, anon_sym_xor2, - ACTIONS(4529), 1, + ACTIONS(4605), 1, anon_sym_or2, - STATE(2128), 1, + STATE(2160), 1, sym_comment, - STATE(2129), 1, + STATE(2161), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190443,58 +193032,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60224] = 20, + [61844] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(4423), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4516), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4518), 1, anon_sym_xor2, - ACTIONS(4531), 1, + ACTIONS(4607), 1, anon_sym_or2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2129), 1, + STATE(2161), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4506), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61923] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(2162), 1, + sym_comment, + ACTIONS(866), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(886), 30, anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -190502,57 +193118,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60303] = 20, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61972] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3846), 1, anon_sym_and2, - ACTIONS(3826), 1, + ACTIONS(3848), 1, anon_sym_xor2, - ACTIONS(4533), 1, + ACTIONS(4609), 1, anon_sym_or2, - STATE(2130), 1, + STATE(2163), 1, sym_comment, - STATE(2131), 1, + STATE(2164), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190561,57 +193194,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60382] = 20, + [62051] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3836), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3888), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(3890), 1, anon_sym_xor2, - ACTIONS(4535), 1, + ACTIONS(4611), 1, anon_sym_or2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2131), 1, + STATE(2164), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190620,17 +193253,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60461] = 4, + [62130] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2132), 1, + STATE(2165), 1, sym_comment, - ACTIONS(2503), 4, + ACTIONS(1562), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - sym__unquoted_pattern, - ACTIONS(2501), 32, + anon_sym_DOT2, + ACTIONS(1564), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190663,17 +193296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60508] = 4, + [62177] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2133), 1, + STATE(2166), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(2539), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 32, + ACTIONS(2537), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190706,58 +193338,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60555] = 3, + [62223] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2134), 1, + STATE(2167), 1, sym_comment, - ACTIONS(2096), 36, - sym__newline, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [60600] = 4, + ACTIONS(2610), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2608), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62269] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2168), 1, sym_comment, - ACTIONS(2573), 3, + ACTIONS(4613), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2571), 32, + ACTIONS(4615), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190790,16 +193422,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60646] = 4, + [62315] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2136), 1, + STATE(2169), 1, + sym_comment, + ACTIONS(2575), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2573), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62361] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2170), 1, + sym_comment, + ACTIONS(2242), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2240), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62407] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2171), 1, + sym_comment, + ACTIONS(2535), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2533), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62453] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2172), 1, + sym_comment, + ACTIONS(2278), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2276), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62499] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2173), 1, + sym_comment, + ACTIONS(2278), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2276), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62545] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2174), 1, + sym_comment, + ACTIONS(2292), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2290), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62591] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2175), 1, sym_comment, - ACTIONS(2938), 3, + ACTIONS(2296), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2940), 32, + ACTIONS(2294), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190824,7 +193708,156 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62637] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3092), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4619), 1, + anon_sym_null, + ACTIONS(4623), 1, sym__newline, + ACTIONS(4625), 1, + anon_sym_GT2, + ACTIONS(4627), 1, + anon_sym_DOT_DOT, + ACTIONS(4631), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4633), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4637), 1, + sym_val_date, + STATE(2176), 1, + sym_comment, + STATE(2254), 1, + aux_sym__types_body_repeat1, + STATE(2280), 1, + aux_sym__collection_body_repeat1, + STATE(3961), 1, + sym__val_number_decimal, + STATE(4752), 1, + sym__collection_entry, + STATE(5086), 1, + sym__collection_body, + STATE(5170), 1, + sym_val_bool, + ACTIONS(4617), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4629), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4635), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4292), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5033), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4621), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [62729] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2177), 1, + sym_comment, + ACTIONS(2284), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2282), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62775] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2178), 1, + sym_comment, + ACTIONS(1519), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1521), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190832,31 +193865,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60692] = 10, + [62821] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - STATE(2137), 1, + STATE(2179), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(4639), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4539), 2, + ACTIONS(4643), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4647), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4649), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4645), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2551), 19, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [62881] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4641), 1, + anon_sym_DASH2, + ACTIONS(4651), 1, + anon_sym_PLUS2, + STATE(2180), 1, + sym_comment, + ACTIONS(2553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 23, + ACTIONS(2551), 23, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -190880,25 +193962,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60750] = 7, + [62939] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2138), 1, + STATE(2181), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, + ACTIONS(2553), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2533), 26, + ACTIONS(2551), 26, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -190925,21 +194007,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60802] = 5, + [62991] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2139), 1, + STATE(2182), 1, sym_comment, - ACTIONS(4541), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + ACTIONS(2553), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2533), 28, + ACTIONS(2551), 28, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -190968,52 +194050,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60850] = 16, + [63039] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(4659), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(4661), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(4663), 1, anon_sym_bit_DASHor2, - STATE(2140), 1, + STATE(2183), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4639), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2533), 4, + ACTIONS(2551), 4, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4553), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191022,53 +194104,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60920] = 17, + [63109] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(4659), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(4661), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(4663), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, + ACTIONS(4665), 1, anon_sym_and2, - STATE(2141), 1, + STATE(2184), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4639), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2533), 3, + ACTIONS(2551), 3, anon_sym_EQ_GT, anon_sym_xor2, anon_sym_or2, - ACTIONS(4553), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191077,54 +194159,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60992] = 18, + [63181] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(4659), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(4661), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(4663), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, + ACTIONS(4665), 1, anon_sym_and2, - ACTIONS(4565), 1, + ACTIONS(4667), 1, anon_sym_xor2, - STATE(2142), 1, + STATE(2185), 1, sym_comment, - ACTIONS(2533), 2, + ACTIONS(2551), 2, anon_sym_EQ_GT, anon_sym_or2, - ACTIONS(4539), 2, + ACTIONS(4639), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191133,36 +194215,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61066] = 12, + [63255] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - STATE(2143), 1, + STATE(2186), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4639), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4549), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191171,7 +194253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 11, + ACTIONS(2551), 11, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -191183,28 +194265,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [61128] = 9, + [63317] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - STATE(2144), 1, + STATE(2187), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4539), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 25, + ACTIONS(2551), 25, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -191230,41 +194312,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [61184] = 13, + [63373] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - STATE(2145), 1, + STATE(2188), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4639), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 7, + ACTIONS(2551), 7, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -191272,7 +194354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4549), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191281,50 +194363,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61248] = 14, + [63437] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(4659), 1, anon_sym_bit_DASHand2, - STATE(2146), 1, + STATE(2189), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4639), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 6, + ACTIONS(2551), 6, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4549), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191333,51 +194415,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61314] = 15, + [63503] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(4659), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(4661), 1, anon_sym_bit_DASHxor2, - STATE(2147), 1, + STATE(2190), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4639), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 5, + ACTIONS(2551), 5, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4549), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191386,16 +194468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61382] = 4, + [63571] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2148), 1, + STATE(2191), 1, sym_comment, - ACTIONS(4567), 3, + ACTIONS(2288), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4569), 32, + ACTIONS(2286), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191428,59 +194510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61428] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4575), 1, - aux_sym_cmd_identifier_token6, - STATE(2149), 1, - sym_comment, - ACTIONS(4573), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4571), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [61476] = 4, + [63617] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2150), 1, + STATE(2192), 1, sym_comment, - ACTIONS(2521), 3, + ACTIONS(2958), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2519), 32, + ACTIONS(2960), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191505,7 +194544,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -191513,20 +194552,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61522] = 5, + [63663] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4669), 1, + sym__newline, + STATE(2193), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1971), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1966), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [63711] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1002), 1, + ACTIONS(1028), 1, aux_sym_cmd_identifier_token6, - STATE(2151), 1, + STATE(2194), 1, sym_comment, - ACTIONS(1000), 5, + ACTIONS(1026), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(998), 29, + ACTIONS(1024), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -191556,16 +194638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [61570] = 4, + [63759] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2152), 1, + STATE(2195), 1, sym_comment, - ACTIONS(1860), 3, + ACTIONS(1523), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1858), 32, + ACTIONS(1525), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191598,58 +194680,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61616] = 4, + [63805] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2153), 1, - sym_comment, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 28, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [61662] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2154), 1, + STATE(2196), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(1527), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 32, + ACTIONS(1529), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191682,16 +194722,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61708] = 4, + [63851] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2155), 1, + STATE(2197), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(1531), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 32, + ACTIONS(1533), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191724,16 +194764,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61754] = 4, + [63897] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4676), 1, + aux_sym_cmd_identifier_token6, + STATE(2198), 1, + sym_comment, + ACTIONS(4674), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4672), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [63945] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2156), 1, + STATE(2199), 1, sym_comment, - ACTIONS(2274), 3, + ACTIONS(1535), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 32, + ACTIONS(1537), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191766,81 +194849,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61800] = 27, + [63991] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + STATE(2200), 1, + sym_comment, + ACTIONS(2958), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2960), 28, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [64037] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3066), 1, + ACTIONS(3092), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(4619), 1, anon_sym_null, - ACTIONS(4583), 1, + ACTIONS(4623), 1, sym__newline, - ACTIONS(4585), 1, - anon_sym_GT2, - ACTIONS(4587), 1, + ACTIONS(4627), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4631), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(4633), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(4637), 1, sym_val_date, - STATE(2157), 1, + ACTIONS(4678), 1, + anon_sym_GT2, + STATE(2201), 1, sym_comment, - STATE(2224), 1, + STATE(2254), 1, aux_sym__types_body_repeat1, - STATE(2250), 1, + STATE(2280), 1, aux_sym__collection_body_repeat1, - STATE(3843), 1, + STATE(3961), 1, sym__val_number_decimal, - STATE(4539), 1, + STATE(4752), 1, sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - STATE(5104), 1, + STATE(4974), 1, sym__collection_body, - ACTIONS(4577), 2, + STATE(5170), 1, + sym_val_bool, + ACTIONS(4617), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(4629), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(4635), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, + STATE(4292), 2, sym_val_string, sym__unquoted_in_record, - STATE(4861), 2, + STATE(5033), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + ACTIONS(4621), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [61892] = 4, + [64129] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2158), 1, + STATE(2202), 1, sym_comment, - ACTIONS(1888), 3, + ACTIONS(1539), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1886), 32, + ACTIONS(1541), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191873,81 +194998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61938] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - ACTIONS(4599), 1, - anon_sym_GT2, - STATE(2159), 1, - sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4539), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - STATE(5019), 1, - sym__collection_body, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [62030] = 4, + [64175] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2160), 1, + STATE(2203), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(4680), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 32, + ACTIONS(4682), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191980,59 +195040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62076] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4605), 1, - aux_sym_cmd_identifier_token6, - STATE(2161), 1, - sym_comment, - ACTIONS(4603), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4601), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [62124] = 4, + [64221] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2162), 1, + STATE(2204), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(866), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1545), 32, + ACTIONS(886), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192065,16 +195082,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62170] = 4, + [64267] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2163), 1, + STATE(2205), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(2176), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 32, + ACTIONS(2174), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192107,16 +195124,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62216] = 4, + [64313] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2164), 1, + STATE(2206), 1, sym_comment, - ACTIONS(868), 3, + ACTIONS(1614), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 32, + ACTIONS(1713), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192149,16 +195166,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62262] = 4, + [64359] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2165), 1, + STATE(2207), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(2246), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 32, + ACTIONS(2244), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192191,16 +195208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62308] = 4, + [64405] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2166), 1, + STATE(2208), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(2172), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 32, + ACTIONS(2170), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192233,16 +195250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62354] = 4, + [64451] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2167), 1, + STATE(2209), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1580), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 32, + ACTIONS(1582), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192275,16 +195292,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62400] = 4, + [64497] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2168), 1, + STATE(2210), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(2531), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 32, + ACTIONS(2529), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192317,36 +195334,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62446] = 11, + [64543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + STATE(2211), 1, + sym_comment, + ACTIONS(2634), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2632), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64589] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - STATE(2169), 1, + STATE(2212), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 19, + ACTIONS(2551), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -192366,31 +195425,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [62506] = 10, + [64649] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - STATE(2170), 1, + STATE(2213), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 23, + ACTIONS(2551), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -192414,67 +195473,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [62564] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2171), 1, - sym_comment, - ACTIONS(1619), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1706), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62610] = 7, + [64707] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2172), 1, + STATE(2214), 1, sym_comment, - ACTIONS(4611), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, + ACTIONS(2553), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2533), 26, + ACTIONS(2551), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -192501,105 +195518,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [62662] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2173), 1, - sym_comment, - ACTIONS(4623), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4625), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62708] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2174), 1, - sym_comment, - ACTIONS(4627), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4629), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62754] = 5, + [64759] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2175), 1, + STATE(2215), 1, sym_comment, - ACTIONS(4615), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + ACTIONS(2553), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2533), 28, + ACTIONS(2551), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -192628,94 +195561,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [62802] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2176), 1, - sym_comment, - ACTIONS(4631), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4633), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62848] = 16, + [64807] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(4704), 1, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, + ACTIONS(4706), 1, anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, + ACTIONS(4708), 1, anon_sym_bit_DASHor2, - STATE(2177), 1, + STATE(2216), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 4, + ACTIONS(2551), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4613), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4702), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4635), 8, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192724,226 +195615,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [62918] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2178), 1, - sym_comment, - ACTIONS(2114), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2112), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62964] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2179), 1, - sym_comment, - ACTIONS(2256), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2254), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [63010] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2180), 1, - sym_comment, - ACTIONS(1876), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1874), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [63056] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2181), 1, - sym_comment, - ACTIONS(2507), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2505), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [63102] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2182), 1, - sym_comment, - ACTIONS(1556), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1558), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [63148] = 4, + [64877] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2183), 1, + STATE(2217), 1, sym_comment, - ACTIONS(2617), 3, + ACTIONS(2144), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2615), 32, + ACTIONS(2142), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192976,53 +195657,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63194] = 17, + [64923] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(4704), 1, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, + ACTIONS(4706), 1, anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, + ACTIONS(4708), 1, anon_sym_bit_DASHor2, - ACTIONS(4645), 1, + ACTIONS(4710), 1, anon_sym_and2, - STATE(2184), 1, + STATE(2218), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 3, + ACTIONS(2551), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4613), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4702), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4635), 8, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193031,54 +195712,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63266] = 18, + [64995] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(4704), 1, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, + ACTIONS(4706), 1, anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, + ACTIONS(4708), 1, anon_sym_bit_DASHor2, - ACTIONS(4645), 1, + ACTIONS(4710), 1, anon_sym_and2, - ACTIONS(4647), 1, + ACTIONS(4712), 1, anon_sym_xor2, - STATE(2185), 1, + STATE(2219), 1, sym_comment, - ACTIONS(2533), 2, + ACTIONS(2551), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4607), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4702), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4635), 8, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193087,36 +195768,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63340] = 12, + [65069] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + STATE(2220), 1, + sym_comment, + ACTIONS(1864), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1862), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [65115] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - STATE(2186), 1, + STATE(2221), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4635), 8, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193125,7 +195848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 11, + ACTIONS(2551), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -193137,28 +195860,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [63402] = 9, + [65177] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - STATE(2187), 1, + STATE(2222), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 25, + ACTIONS(2551), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -193184,41 +195907,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [63458] = 13, + [65233] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1000), 1, + aux_sym_cmd_identifier_token6, + STATE(2223), 1, + sym_comment, + ACTIONS(998), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(996), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [65281] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - STATE(2188), 1, + STATE(2224), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4702), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 7, + ACTIONS(2551), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -193226,7 +195992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4635), 8, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193235,50 +196001,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63522] = 14, + [65345] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3092), 1, + aux_sym__unquoted_in_record_token1, ACTIONS(4619), 1, + anon_sym_null, + ACTIONS(4623), 1, + sym__newline, + ACTIONS(4627), 1, + anon_sym_DOT_DOT, + ACTIONS(4631), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4633), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4637), 1, + sym_val_date, + ACTIONS(4714), 1, + anon_sym_GT2, + STATE(2225), 1, + sym_comment, + STATE(2254), 1, + aux_sym__types_body_repeat1, + STATE(2280), 1, + aux_sym__collection_body_repeat1, + STATE(3961), 1, + sym__val_number_decimal, + STATE(4752), 1, + sym__collection_entry, + STATE(5170), 1, + sym_val_bool, + STATE(5343), 1, + sym__collection_body, + ACTIONS(4617), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4629), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4635), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4292), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5033), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4621), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65437] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4686), 1, + anon_sym_DASH2, + ACTIONS(4696), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(4704), 1, anon_sym_bit_DASHand2, - STATE(2189), 1, + STATE(2226), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4702), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 6, + ACTIONS(2551), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4635), 8, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193287,51 +196118,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63588] = 15, + [65503] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(4704), 1, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, + ACTIONS(4706), 1, anon_sym_bit_DASHxor2, - STATE(2190), 1, + STATE(2227), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4702), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 5, + ACTIONS(2551), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4635), 8, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193340,62 +196171,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63656] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2191), 1, - sym_comment, - ACTIONS(4649), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4651), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [63702] = 5, + [65571] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1014), 1, + ACTIONS(1036), 1, aux_sym_cmd_identifier_token6, - STATE(2192), 1, + STATE(2228), 1, sym_comment, - ACTIONS(1012), 5, + ACTIONS(1034), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1010), 29, + ACTIONS(1032), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -193425,16 +196214,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [63750] = 4, + [65619] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2193), 1, + STATE(2229), 1, sym_comment, - ACTIONS(2565), 3, + ACTIONS(4716), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2563), 32, + ACTIONS(4718), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193467,16 +196256,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63796] = 4, + [65665] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2194), 1, + STATE(2230), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(4720), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 32, + ACTIONS(4722), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193509,20 +196298,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63842] = 5, + [65711] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(4728), 1, aux_sym_cmd_identifier_token6, - STATE(2195), 1, + STATE(2231), 1, sym_comment, - ACTIONS(1006), 5, + ACTIONS(4726), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1004), 29, + ACTIONS(4724), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -193552,58 +196341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [63890] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2196), 1, - sym_comment, - ACTIONS(2220), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2218), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [63936] = 4, + [65759] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2197), 1, + STATE(2232), 1, sym_comment, - ACTIONS(2264), 3, + ACTIONS(4730), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 32, + ACTIONS(4732), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193636,16 +196383,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63982] = 4, + [65805] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2198), 1, + STATE(2233), 1, sym_comment, - ACTIONS(2609), 3, + ACTIONS(2622), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2607), 32, + ACTIONS(2620), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193678,20 +196425,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64028] = 5, + [65851] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4657), 1, + ACTIONS(4738), 1, aux_sym_cmd_identifier_token6, - STATE(2199), 1, + STATE(2234), 1, sym_comment, - ACTIONS(4655), 5, + ACTIONS(4736), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4653), 29, + ACTIONS(4734), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -193721,20 +196468,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [64076] = 5, + [65899] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4663), 1, + ACTIONS(4744), 1, aux_sym_cmd_identifier_token6, - STATE(2200), 1, + STATE(2235), 1, sym_comment, - ACTIONS(4661), 5, + ACTIONS(4742), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4659), 29, + ACTIONS(4740), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -193764,124 +196511,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [64124] = 5, + [65947] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4665), 1, - sym__newline, - STATE(2201), 2, - aux_sym__repeat_newline, + STATE(2236), 1, sym_comment, - ACTIONS(1960), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1955), 25, + ACTIONS(1914), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1912), 32, sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [64172] = 27, + [65993] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3066), 1, + ACTIONS(3092), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(4619), 1, anon_sym_null, - ACTIONS(4583), 1, + ACTIONS(4623), 1, sym__newline, - ACTIONS(4587), 1, + ACTIONS(4627), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4631), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(4633), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(4637), 1, sym_val_date, - ACTIONS(4668), 1, + ACTIONS(4746), 1, anon_sym_GT2, - STATE(2202), 1, + STATE(2237), 1, sym_comment, - STATE(2224), 1, + STATE(2254), 1, aux_sym__types_body_repeat1, - STATE(2250), 1, + STATE(2280), 1, aux_sym__collection_body_repeat1, - STATE(3843), 1, + STATE(3961), 1, sym__val_number_decimal, - STATE(4539), 1, + STATE(4752), 1, sym__collection_entry, - STATE(4871), 1, + STATE(5067), 1, sym__collection_body, - STATE(4928), 1, + STATE(5170), 1, sym_val_bool, - ACTIONS(4577), 2, + ACTIONS(4617), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(4629), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(4635), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, + STATE(4292), 2, sym_val_string, sym__unquoted_in_record, - STATE(4861), 2, + STATE(5033), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + ACTIONS(4621), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [64264] = 4, + [66085] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2203), 1, + STATE(2238), 1, sym_comment, - ACTIONS(2224), 3, + ACTIONS(2583), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2222), 32, + ACTIONS(2581), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193914,16 +196660,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64310] = 4, + [66131] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2204), 1, + STATE(2239), 1, sym_comment, - ACTIONS(2539), 3, + ACTIONS(1880), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2537), 32, + ACTIONS(1878), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193956,16 +196702,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64356] = 4, + [66177] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2205), 1, + STATE(2240), 1, sym_comment, - ACTIONS(2204), 3, + ACTIONS(2595), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2202), 32, + ACTIONS(2593), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193998,16 +196744,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64402] = 4, + [66223] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2206), 1, + STATE(2241), 1, sym_comment, - ACTIONS(2513), 3, + ACTIONS(1894), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2511), 32, + ACTIONS(1892), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194040,16 +196786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64448] = 4, + [66269] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2207), 1, + STATE(2242), 1, sym_comment, - ACTIONS(2593), 3, + ACTIONS(2198), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2591), 32, + ACTIONS(2196), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194082,16 +196828,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64494] = 4, + [66315] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2208), 1, + STATE(2243), 1, sym_comment, - ACTIONS(2094), 3, + ACTIONS(2206), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2092), 32, + ACTIONS(2204), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194124,16 +196870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64540] = 4, + [66361] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2209), 1, + STATE(2244), 1, sym_comment, - ACTIONS(1868), 3, + ACTIONS(2666), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1866), 32, + ACTIONS(2664), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194166,125 +196912,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64586] = 4, - ACTIONS(3), 1, + [66407] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2210), 1, + ACTIONS(4752), 1, + aux_sym_cmd_identifier_token6, + STATE(2245), 1, sym_comment, - ACTIONS(2196), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2194), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [64632] = 4, + ACTIONS(4750), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4748), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [66455] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2211), 1, + STATE(2246), 1, sym_comment, - ACTIONS(2517), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2515), 32, + ACTIONS(2148), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2146), 26, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64678] = 11, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [66500] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(2840), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(2846), 1, anon_sym_PLUS2, - STATE(2212), 1, + ACTIONS(2850), 1, + anon_sym_bit_DASHand2, + ACTIONS(2852), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2854), 1, + anon_sym_bit_DASHor2, + ACTIONS(2856), 1, + anon_sym_and2, + ACTIONS(2858), 1, + anon_sym_xor2, + ACTIONS(4754), 1, + anon_sym_or2, + STATE(2247), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(2823), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(2825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(2827), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, + ACTIONS(2838), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(2848), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2842), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 19, + ACTIONS(2844), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2836), 8, anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -194292,60 +197051,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [66573] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2248), 1, + sym_comment, + ACTIONS(4760), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4762), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4764), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [64738] = 18, + ACTIONS(4756), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(4758), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [66624] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2810), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(2822), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(2826), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - ACTIONS(2828), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, - ACTIONS(2830), 1, + ACTIONS(3930), 1, anon_sym_bit_DASHor2, - ACTIONS(2864), 1, + ACTIONS(3932), 1, anon_sym_and2, - ACTIONS(2866), 1, + ACTIONS(3934), 1, anon_sym_xor2, - ACTIONS(4670), 1, + ACTIONS(4766), 1, anon_sym_or2, - STATE(2213), 1, + STATE(2249), 1, sym_comment, - ACTIONS(2808), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2812), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2818), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2820), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2824), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2814), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2816), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2806), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194354,53 +197150,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64811] = 18, + [66697] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(4659), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(4661), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, + ACTIONS(4663), 1, anon_sym_bit_DASHor2, - ACTIONS(3890), 1, + ACTIONS(4665), 1, anon_sym_and2, - ACTIONS(3892), 1, + ACTIONS(4667), 1, anon_sym_xor2, - ACTIONS(4672), 1, + ACTIONS(4768), 1, anon_sym_or2, - STATE(2214), 1, + STATE(2250), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(4639), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194409,53 +197205,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64884] = 18, + [66770] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(3980), 1, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, + ACTIONS(3982), 1, anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, + ACTIONS(3984), 1, anon_sym_bit_DASHor2, - ACTIONS(4645), 1, + ACTIONS(3986), 1, anon_sym_and2, - ACTIONS(4647), 1, + ACTIONS(3988), 1, anon_sym_xor2, - ACTIONS(4674), 1, + ACTIONS(4770), 1, anon_sym_or2, - STATE(2215), 1, + STATE(2251), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(3978), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4635), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194464,53 +197260,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64957] = 18, + [66843] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(3018), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(3030), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(3034), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(3036), 1, + anon_sym_and2, + ACTIONS(3038), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(3040), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, - anon_sym_and2, - ACTIONS(4565), 1, + ACTIONS(3046), 1, anon_sym_xor2, - ACTIONS(4676), 1, + ACTIONS(4772), 1, anon_sym_or2, - STATE(2216), 1, + STATE(2252), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(3016), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3020), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(3026), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(3028), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(3032), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(3022), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(3024), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(3014), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194519,97 +197315,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65030] = 7, + [66916] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(2217), 1, - sym_comment, - ACTIONS(4682), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4684), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4686), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4678), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(4680), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [65081] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - ACTIONS(2964), 1, + ACTIONS(4704), 1, anon_sym_bit_DASHand2, - ACTIONS(2966), 1, + ACTIONS(4706), 1, anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, + ACTIONS(4708), 1, anon_sym_bit_DASHor2, - ACTIONS(2974), 1, + ACTIONS(4710), 1, anon_sym_and2, - ACTIONS(3024), 1, + ACTIONS(4712), 1, anon_sym_xor2, - ACTIONS(4688), 1, + ACTIONS(4774), 1, anon_sym_or2, - STATE(2218), 1, + STATE(2253), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, + ACTIONS(4702), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2944), 8, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194618,121 +197370,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65154] = 4, + [66989] = 25, ACTIONS(3), 1, anon_sym_POUND, - STATE(2219), 1, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3092), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4619), 1, + anon_sym_null, + ACTIONS(4623), 1, + sym__newline, + ACTIONS(4627), 1, + anon_sym_DOT_DOT, + ACTIONS(4631), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4633), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4637), 1, + sym_val_date, + STATE(2254), 1, + sym_comment, + STATE(2282), 1, + aux_sym__collection_body_repeat1, + STATE(2438), 1, + aux_sym__types_body_repeat1, + STATE(3961), 1, + sym__val_number_decimal, + STATE(4544), 1, + sym__collection_entry, + STATE(5170), 1, + sym_val_bool, + ACTIONS(4617), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4629), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4635), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4292), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5033), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4621), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67075] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4778), 1, + anon_sym_RBRACE, + ACTIONS(4780), 1, + sym__entry_separator, + ACTIONS(4782), 1, + sym_raw_string_begin, + STATE(2255), 1, sym_comment, - ACTIONS(2098), 8, + STATE(2260), 1, + aux_sym__types_body_repeat2, + ACTIONS(4776), 29, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, aux_sym_unquoted_token1, - ACTIONS(2096), 26, + [67125] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4780), 1, + sym__entry_separator, + ACTIONS(4782), 1, sym_raw_string_begin, + ACTIONS(4784), 1, + anon_sym_RBRACE, + STATE(2256), 1, + sym_comment, + STATE(2260), 1, + aux_sym__types_body_repeat2, + ACTIONS(4776), 29, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - aux_sym_expr_unary_token1, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [65199] = 18, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [67175] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, - anon_sym_bit_DASHor2, - ACTIONS(3930), 1, - anon_sym_and2, - ACTIONS(3932), 1, - anon_sym_xor2, - ACTIONS(4690), 1, - anon_sym_or2, - STATE(2220), 1, + ACTIONS(4780), 1, + sym__entry_separator, + ACTIONS(4782), 1, + sym_raw_string_begin, + ACTIONS(4786), 1, + anon_sym_RBRACE, + STATE(2257), 1, sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3912), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3922), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3920), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [65272] = 7, + STATE(2260), 1, + aux_sym__types_body_repeat2, + ACTIONS(4776), 29, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym_unquoted_token1, + [67225] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2221), 1, + STATE(2258), 1, sym_comment, - ACTIONS(4694), 2, + ACTIONS(4790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4696), 4, + ACTIONS(4792), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4698), 4, + ACTIONS(4794), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4692), 8, + ACTIONS(4788), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194741,7 +197587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4680), 15, + ACTIONS(4758), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -194757,17 +197603,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [65322] = 5, + [67275] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4796), 1, + sym__newline, + STATE(2259), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1971), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_record_token1, + ACTIONS(1966), 24, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [67321] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3715), 1, + ACTIONS(3720), 1, sym_raw_string_begin, - ACTIONS(4700), 1, + ACTIONS(4799), 1, sym__entry_separator, - STATE(2222), 2, + STATE(2260), 2, sym_comment, aux_sym__types_body_repeat2, - ACTIONS(3710), 30, + ACTIONS(3715), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194798,20 +197685,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65368] = 7, + [67367] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4705), 1, - anon_sym_RBRACE, - ACTIONS(4707), 1, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(4808), 1, sym_raw_string_begin, - STATE(2222), 1, - aux_sym__types_body_repeat2, - STATE(2223), 1, + STATE(2261), 1, sym_comment, - ACTIONS(4703), 29, + STATE(2276), 1, + aux_sym__types_body_repeat2, + ACTIONS(4804), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4802), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194822,8 +197710,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -194840,82 +197726,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [65418] = 25, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - STATE(2224), 1, - sym_comment, - STATE(2246), 1, - aux_sym__collection_body_repeat1, - STATE(2386), 1, - aux_sym__types_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4439), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [65504] = 7, + aux_sym__unquoted_in_list_token1, + [67416] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(4808), 1, sym_raw_string_begin, - ACTIONS(4711), 1, - anon_sym_RBRACE, - STATE(2222), 1, - aux_sym__types_body_repeat2, - STATE(2225), 1, + STATE(2262), 1, sym_comment, - ACTIONS(4703), 29, + STATE(2276), 1, + aux_sym__types_body_repeat2, + ACTIONS(4810), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4802), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194926,8 +197752,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -194944,25 +197768,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [65554] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [67465] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4713), 1, - sym__newline, - STATE(2226), 2, - aux_sym__repeat_newline, + ACTIONS(4806), 1, + sym__entry_separator, + ACTIONS(4808), 1, + sym_raw_string_begin, + STATE(2263), 1, sym_comment, - ACTIONS(1960), 7, - anon_sym_DOLLAR, + STATE(2276), 1, + aux_sym__types_body_repeat2, + ACTIONS(4812), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(1955), 24, - sym_raw_string_begin, + ACTIONS(4802), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194971,35 +197792,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [65600] = 7, + aux_sym__unquoted_in_list_token1, + [67514] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(4780), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(4782), 1, sym_raw_string_begin, - ACTIONS(4716), 1, - anon_sym_RBRACE, - STATE(2222), 1, + STATE(2260), 1, aux_sym__types_body_repeat2, - STATE(2227), 1, + STATE(2264), 1, sym_comment, - ACTIONS(4703), 29, + ACTIONS(4776), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195029,94 +197852,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65650] = 4, + [67561] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2228), 1, - sym_comment, - ACTIONS(1478), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1480), 29, - anon_sym_if, - anon_sym_in, + ACTIONS(4424), 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(4428), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [65693] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2229), 1, + ACTIONS(4433), 1, + anon_sym_DOT_DOT, + STATE(2265), 1, sym_comment, - ACTIONS(1470), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1472), 29, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, + ACTIONS(4431), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2958), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2960), 22, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [65736] = 4, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [67612] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2230), 1, + STATE(2266), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(1519), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1476), 29, + ACTIONS(1521), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195146,63 +197934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [65779] = 7, + [67655] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2231), 1, + STATE(2267), 1, sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4720), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4718), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [65828] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(3756), 2, sym_raw_string_begin, - STATE(2232), 1, - sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4726), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4718), 27, + sym__entry_separator, + ACTIONS(3754), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195213,6 +197953,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -195229,17 +197972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [65877] = 4, + aux_sym_unquoted_token1, + [67698] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2233), 1, + STATE(2268), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1523), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1516), 29, + ACTIONS(1525), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195269,21 +198012,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [65920] = 7, + [67741] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4808), 1, sym_raw_string_begin, - STATE(2234), 1, + STATE(2269), 1, sym_comment, - STATE(2245), 1, + STATE(2276), 1, aux_sym__types_body_repeat2, - ACTIONS(4728), 2, + ACTIONS(4814), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(4802), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195311,21 +198054,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [65969] = 7, - ACTIONS(103), 1, + [67790] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2235), 1, + ACTIONS(4816), 1, + sym__newline, + STATE(2270), 2, sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4730), 2, - anon_sym_RBRACK, + aux_sym__types_body_repeat1, + ACTIONS(3758), 7, + anon_sym__, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3760), 23, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195338,36 +198084,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66018] = 7, + [67835] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4808), 1, sym_raw_string_begin, - STATE(2236), 1, + STATE(2271), 1, sym_comment, - STATE(2245), 1, + STATE(2276), 1, aux_sym__types_body_repeat2, - ACTIONS(4730), 2, + ACTIONS(4804), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(4802), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195395,64 +198136,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66067] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4369), 1, - sym__newline, - ACTIONS(4373), 1, - anon_sym_LBRACK, - ACTIONS(4378), 1, - anon_sym_DOT_DOT, - STATE(2237), 1, - sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 5, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 22, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [66118] = 7, + [67884] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4808), 1, sym_raw_string_begin, - STATE(2238), 1, + STATE(2272), 1, sym_comment, - STATE(2245), 1, + STATE(2276), 1, aux_sym__types_body_repeat2, - ACTIONS(4720), 2, + ACTIONS(4814), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(4802), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195480,104 +198178,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66167] = 4, - ACTIONS(103), 1, + [67933] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2239), 1, + STATE(2273), 1, sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 30, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(2148), 7, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [66210] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4709), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2146), 25, sym_raw_string_begin, - STATE(2222), 1, - aux_sym__types_body_repeat2, - STATE(2240), 1, - sym_comment, - ACTIONS(4703), 29, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [66257] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [67976] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4732), 1, + STATE(2274), 1, + sym_comment, + ACTIONS(1531), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1533), 29, + anon_sym_if, + anon_sym_in, sym__newline, - STATE(2241), 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_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [68019] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2275), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3738), 23, + ACTIONS(1535), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1537), 29, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [68062] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3720), 1, sym_raw_string_begin, + ACTIONS(4819), 1, + sym__entry_separator, + STATE(2276), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3715), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195585,31 +198313,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66302] = 4, + aux_sym__unquoted_in_list_token1, + [68107] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2242), 1, + STATE(2277), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1539), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1545), 29, + ACTIONS(1541), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195639,16 +198374,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [66345] = 4, + [68150] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2243), 1, + STATE(2278), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1527), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1468), 29, + ACTIONS(1529), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195678,20 +198413,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [66388] = 4, + [68193] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2244), 1, + STATE(2279), 1, sym_comment, - ACTIONS(2098), 7, - anon_sym_DOLLAR, + ACTIONS(2958), 7, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(2096), 25, + aux_sym_unquoted_token1, + ACTIONS(2960), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -195702,166 +198437,94 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [66431] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4735), 1, - sym__entry_separator, - STATE(2245), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 29, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66476] = 23, + [68235] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3066), 1, + ACTIONS(3092), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(4619), 1, anon_sym_null, - ACTIONS(4587), 1, + ACTIONS(4627), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4631), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(4633), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(4637), 1, sym_val_date, - STATE(2246), 1, + STATE(2280), 1, sym_comment, - STATE(2249), 1, + STATE(2285), 1, aux_sym__collection_body_repeat1, - STATE(3843), 1, + STATE(3961), 1, sym__val_number_decimal, - STATE(4445), 1, + STATE(4545), 1, sym__collection_entry, - STATE(4928), 1, + STATE(5170), 1, sym_val_bool, - ACTIONS(4577), 2, + ACTIONS(4617), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(4629), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(4635), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, + STATE(4292), 2, sym_val_string, sym__unquoted_in_record, - STATE(4861), 2, + STATE(5033), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + ACTIONS(4621), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [66556] = 5, + [68315] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4738), 1, + ACTIONS(4822), 1, sym__newline, - STATE(2247), 2, + STATE(2281), 2, sym_comment, aux_sym__types_body_repeat1, - ACTIONS(3736), 6, + ACTIONS(3758), 6, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3738), 23, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [66600] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2248), 1, - sym_comment, - ACTIONS(3734), 2, + ACTIONS(3760), 23, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195869,191 +198532,127 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66642] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_null, - ACTIONS(4750), 1, - anon_sym_DOT_DOT, - ACTIONS(4756), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4759), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4765), 1, sym_val_date, - ACTIONS(4768), 1, anon_sym_DQUOTE, - ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(4774), 1, anon_sym_BQUOTE, - ACTIONS(4777), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4780), 1, - sym_raw_string_begin, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4729), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4741), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4753), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4762), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2249), 2, - sym_comment, - aux_sym__collection_body_repeat1, - STATE(4618), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4747), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66720] = 23, + [68359] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3066), 1, + ACTIONS(3092), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(4619), 1, anon_sym_null, - ACTIONS(4587), 1, + ACTIONS(4627), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4631), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(4633), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(4637), 1, sym_val_date, - STATE(2249), 1, - aux_sym__collection_body_repeat1, - STATE(2250), 1, + STATE(2282), 1, sym_comment, - STATE(3843), 1, + STATE(2285), 1, + aux_sym__collection_body_repeat1, + STATE(3961), 1, sym__val_number_decimal, - STATE(4441), 1, + STATE(4756), 1, sym__collection_entry, - STATE(4928), 1, + STATE(5170), 1, sym_val_bool, - ACTIONS(4577), 2, + ACTIONS(4617), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(4629), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(4635), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, + STATE(4292), 2, sym_val_string, sym__unquoted_in_record, - STATE(4861), 2, + STATE(5033), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + ACTIONS(4621), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [66800] = 4, - ACTIONS(3), 1, + [68439] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2251), 1, - sym_comment, - ACTIONS(2938), 7, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2940), 24, + ACTIONS(4806), 1, + sym__entry_separator, + ACTIONS(4808), 1, sym_raw_string_begin, + STATE(2276), 1, + aux_sym__types_body_repeat2, + STATE(2283), 1, + sym_comment, + ACTIONS(4802), 28, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66842] = 6, + aux_sym__unquoted_in_list_token1, + [68485] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2245), 1, - aux_sym__types_body_repeat2, - STATE(2252), 1, + STATE(2284), 1, sym_comment, - ACTIONS(4718), 28, + ACTIONS(3756), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -196061,6 +198660,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, @@ -196082,19 +198682,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66888] = 4, + [68527] = 22, ACTIONS(3), 1, anon_sym_POUND, - STATE(2253), 1, + ACTIONS(4828), 1, + anon_sym_null, + ACTIONS(4834), 1, + anon_sym_DOT_DOT, + ACTIONS(4840), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4843), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4849), 1, + sym_val_date, + ACTIONS(4852), 1, + anon_sym_DQUOTE, + ACTIONS(4855), 1, + anon_sym_SQUOTE, + ACTIONS(4858), 1, + anon_sym_BQUOTE, + ACTIONS(4861), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4864), 1, + sym_raw_string_begin, + STATE(3961), 1, + sym__val_number_decimal, + STATE(4859), 1, + sym__collection_entry, + STATE(5170), 1, + sym_val_bool, + ACTIONS(4825), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4837), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4846), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2285), 2, + sym_comment, + aux_sym__collection_body_repeat1, + STATE(4773), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5033), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4831), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68605] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2286), 1, + sym_comment, + STATE(3278), 1, + sym_redirection, + ACTIONS(4869), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4871), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(4867), 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, + [68650] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2287), 1, sym_comment, - ACTIONS(2938), 6, + ACTIONS(2958), 6, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 24, + ACTIONS(2960), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -196119,14 +198814,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66929] = 6, + [68691] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2254), 1, + STATE(2288), 1, sym_comment, - STATE(3109), 1, + STATE(3255), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4869), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196135,7 +198830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4871), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196144,7 +198839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4783), 13, + ACTIONS(4873), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196158,84 +198853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [66974] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2255), 1, - sym_comment, - STATE(3079), 1, - sym_redirection, - ACTIONS(4785), 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(4787), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(4789), 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, - [67019] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2256), 1, - sym_comment, - STATE(3295), 1, - sym_redirection, - ACTIONS(4785), 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(4787), 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(4791), 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, - [67063] = 25, + [68736] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196246,63 +198864,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4799), 1, + ACTIONS(4881), 1, anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2257), 1, + STATE(2289), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2776), 1, + STATE(2808), 1, sym__binary_predicate_parenthesized, - STATE(2777), 1, + STATE(2811), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3036), 1, aux_sym__repeat_newline, - STATE(3134), 1, + STATE(3238), 1, sym_val_closure, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67145] = 4, + [68818] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2258), 1, + STATE(2290), 1, sym_comment, - ACTIONS(1556), 2, - anon_sym_EQ, - anon_sym_DOT_DOT2, - ACTIONS(1558), 27, - anon_sym_if, - anon_sym_in, + STATE(3477), 1, + sym_redirection, + ACTIONS(4869), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4871), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(4885), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196314,85 +198947,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [67185] = 25, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4799), 1, - anon_sym_LBRACE, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2257), 1, - aux_sym__repeat_newline, - STATE(2259), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2763), 1, - sym__binary_predicate_parenthesized, - STATE(2770), 1, - sym_where_predicate, - STATE(3096), 1, - sym_val_closure, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67267] = 6, + [68862] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2260), 1, + STATE(2291), 1, sym_comment, - STATE(3230), 1, + STATE(3506), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4869), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196401,7 +198964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4871), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196410,7 +198973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4803), 12, + ACTIONS(4887), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196423,14 +198986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [67311] = 6, + [68906] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2261), 1, + STATE(2292), 1, sym_comment, - STATE(3334), 1, + STATE(3429), 1, sym_redirection, - ACTIONS(4805), 8, + ACTIONS(4889), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196439,7 +199002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4807), 8, + ACTIONS(4891), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196448,7 +199011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4789), 12, + ACTIONS(4867), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -196461,14 +199024,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, - [67355] = 6, + [68950] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2262), 1, + STATE(2293), 1, sym_comment, - STATE(3229), 1, + ACTIONS(1580), 2, + anon_sym_EQ, + anon_sym_DOT_DOT2, + ACTIONS(1582), 27, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [68990] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2294), 1, + sym_comment, + STATE(3403), 1, sym_redirection, - ACTIONS(4805), 8, + ACTIONS(4889), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196477,7 +199076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4807), 8, + ACTIONS(4891), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196486,7 +199085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4783), 12, + ACTIONS(4873), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -196499,21 +199098,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, - [67399] = 7, + [69034] = 25, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(2702), 1, + aux_sym_expr_unary_token1, + ACTIONS(4875), 1, + sym__newline, + ACTIONS(4877), 1, + anon_sym_LPAREN, + ACTIONS(4879), 1, + anon_sym_DASH2, + ACTIONS(4881), 1, + anon_sym_LBRACE, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2289), 1, + aux_sym__repeat_newline, + STATE(2295), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2882), 1, + sym__binary_predicate_parenthesized, + STATE(2891), 1, + sym_where_predicate, + STATE(3345), 1, + sym_val_closure, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69116] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4809), 1, + ACTIONS(4893), 1, anon_sym_QMARK2, - ACTIONS(4811), 1, + ACTIONS(4895), 1, anon_sym_BANG, - STATE(437), 1, + STATE(444), 1, sym__path_suffix, - STATE(2263), 1, + STATE(2296), 1, sym_comment, - ACTIONS(1446), 2, + ACTIONS(1456), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1448), 23, + ACTIONS(1458), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -196537,7 +199193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [67444] = 23, + [69161] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196548,49 +199204,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4881), 1, + anon_sym_LBRACE, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2264), 1, + STATE(2297), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2759), 1, - sym__binary_predicate_parenthesized, - STATE(2765), 1, + STATE(2826), 1, + sym__binary_predicate, + STATE(2827), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + STATE(3361), 1, + sym_val_closure, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67520] = 23, + [69237] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196601,49 +199257,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2786), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4897), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4899), 1, + anon_sym_DOLLAR, + ACTIONS(4901), 1, anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + ACTIONS(4903), 1, + anon_sym_LBRACE, + STATE(1290), 1, sym__expr_unary_minus, - STATE(2264), 1, - aux_sym__repeat_newline, - STATE(2265), 1, + STATE(2298), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2596), 1, sym__where_predicate_lhs, - STATE(2749), 1, - sym__binary_predicate_parenthesized, - STATE(2750), 1, + STATE(2968), 1, + sym__binary_predicate, + STATE(2970), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3439), 1, + sym_val_closure, + ACTIONS(2208), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2999), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67596] = 23, + [69313] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196654,49 +199310,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2266), 1, + STATE(2299), 1, sym_comment, - STATE(2370), 1, + STATE(2305), 1, + aux_sym__repeat_newline, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2718), 1, + STATE(2839), 1, sym__binary_predicate_parenthesized, - STATE(2719), 1, + STATE(2841), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67672] = 23, + [69389] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196707,49 +199363,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2267), 1, + STATE(2300), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2672), 1, + STATE(2730), 1, sym__binary_predicate_parenthesized, - STATE(2673), 1, + STATE(2731), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3036), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67748] = 23, + [69465] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196760,49 +199416,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4875), 1, + sym__newline, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4799), 1, - anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2268), 1, + STATE(2301), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2743), 1, - sym__binary_predicate, - STATE(2744), 1, + STATE(2738), 1, + sym__binary_predicate_parenthesized, + STATE(2739), 1, sym_where_predicate, - STATE(3161), 1, - sym_val_closure, - ACTIONS(1937), 2, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67824] = 23, + [69541] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1442), 1, + anon_sym_DOT_DOT2, + ACTIONS(4905), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(2293), 1, + sym_cell_path, + STATE(2302), 1, + sym_comment, + STATE(2323), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1444), 22, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [69587] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + ACTIONS(4907), 1, + anon_sym_DOT, + STATE(2303), 1, + sym_comment, + STATE(2446), 1, + sym__immediate_decimal, + ACTIONS(4909), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4911), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2555), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1598), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [69639] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196813,49 +199548,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2269), 1, + STATE(2304), 1, sym_comment, - STATE(2279), 1, + STATE(2306), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2727), 1, + STATE(2843), 1, sym__binary_predicate_parenthesized, - STATE(2729), 1, + STATE(2844), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67900] = 23, + [69715] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196866,49 +199601,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2270), 1, + STATE(2305), 1, sym_comment, - STATE(2280), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2738), 1, + STATE(2861), 1, sym__binary_predicate_parenthesized, - STATE(2739), 1, + STATE(2862), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67976] = 23, + [69791] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196919,49 +199654,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2271), 1, + STATE(2306), 1, sym_comment, - STATE(2281), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2746), 1, + STATE(2869), 1, sym__binary_predicate_parenthesized, - STATE(2753), 1, + STATE(2887), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68052] = 23, + [69867] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196972,87 +199707,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2272), 1, + STATE(2307), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2754), 1, + STATE(2893), 1, sym__binary_predicate_parenthesized, - STATE(2755), 1, + STATE(2894), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3036), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68128] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1432), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2258), 1, - sym_cell_path, - STATE(2273), 1, - sym_comment, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 22, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [68174] = 23, + [69943] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197063,49 +199760,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2274), 1, + STATE(2300), 1, + aux_sym__repeat_newline, + STATE(2308), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2771), 1, + STATE(2716), 1, sym__binary_predicate_parenthesized, - STATE(2772), 1, + STATE(2720), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68250] = 23, + [70019] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197116,49 +199813,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2275), 1, + STATE(2309), 1, sym_comment, - STATE(2289), 1, + STATE(2315), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2775), 1, + STATE(2721), 1, sym__binary_predicate_parenthesized, - STATE(2781), 1, + STATE(2751), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68326] = 23, + [70095] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197169,49 +199866,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2267), 1, - aux_sym__repeat_newline, - STATE(2276), 1, + STATE(2310), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2788), 1, + STATE(2752), 1, sym__binary_predicate_parenthesized, - STATE(2804), 1, + STATE(2753), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68402] = 23, + [70171] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197222,49 +199919,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2277), 1, + STATE(2311), 1, sym_comment, - STATE(2278), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2646), 1, + STATE(2764), 1, sym__binary_predicate_parenthesized, - STATE(2680), 1, + STATE(2765), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68478] = 23, + [70247] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197275,49 +199972,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2278), 1, + STATE(2312), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2676), 1, + STATE(2768), 1, sym__binary_predicate_parenthesized, - STATE(2677), 1, + STATE(2769), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3036), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68554] = 23, + [70323] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197328,49 +200025,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2279), 1, + STATE(2307), 1, + aux_sym__repeat_newline, + STATE(2313), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2649), 1, + STATE(2846), 1, sym__binary_predicate_parenthesized, - STATE(2650), 1, + STATE(2847), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68630] = 23, + [70399] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197381,49 +200078,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2280), 1, + STATE(2314), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2654), 1, + STATE(2777), 1, sym__binary_predicate_parenthesized, - STATE(2655), 1, + STATE(2783), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3036), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68706] = 23, + [70475] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197434,49 +200131,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2281), 1, + STATE(2315), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2658), 1, + STATE(2734), 1, sym__binary_predicate_parenthesized, - STATE(2659), 1, + STATE(2735), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3036), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68782] = 23, + [70551] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197487,90 +200184,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4875), 1, + sym__newline, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4821), 1, - anon_sym_LBRACE, - STATE(1294), 1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2282), 1, + STATE(2311), 1, + aux_sym__repeat_newline, + STATE(2316), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2823), 1, - sym__binary_predicate, - STATE(2827), 1, + STATE(2848), 1, + sym__binary_predicate_parenthesized, + STATE(2849), 1, sym_where_predicate, - STATE(3287), 1, - sym_val_closure, - ACTIONS(2174), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68858] = 11, + [70627] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(4823), 1, - anon_sym_DOT, - STATE(2283), 1, + ACTIONS(2702), 1, + aux_sym_expr_unary_token1, + ACTIONS(4875), 1, + sym__newline, + ACTIONS(4877), 1, + anon_sym_LPAREN, + ACTIONS(4879), 1, + anon_sym_DASH2, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2317), 1, sym_comment, - STATE(2409), 1, - sym__immediate_decimal, - ACTIONS(4825), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4827), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2503), 2, - sym__expr_parenthesized_immediate, + STATE(2322), 1, + aux_sym__repeat_newline, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2795), 1, + sym__binary_predicate_parenthesized, + STATE(2797), 1, + sym_where_predicate, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1596), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [68910] = 23, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70703] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197581,49 +200290,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2284), 1, - sym_comment, - STATE(2288), 1, + STATE(2312), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2318), 1, + sym_comment, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2730), 1, + STATE(2850), 1, sym__binary_predicate_parenthesized, - STATE(2731), 1, + STATE(2851), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68986] = 23, + [70779] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197634,49 +200343,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2285), 1, - sym_comment, - STATE(2294), 1, + STATE(2310), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2319), 1, + sym_comment, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2732), 1, + STATE(2798), 1, sym__binary_predicate_parenthesized, - STATE(2740), 1, + STATE(2800), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69062] = 23, + [70855] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197687,49 +200396,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2266), 1, - aux_sym__repeat_newline, - STATE(2286), 1, + STATE(2320), 1, sym_comment, - STATE(2370), 1, + STATE(2321), 1, + aux_sym__repeat_newline, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2741), 1, + STATE(2802), 1, sym__binary_predicate_parenthesized, - STATE(2742), 1, + STATE(2803), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69138] = 23, + [70931] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197740,49 +200449,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2272), 1, - aux_sym__repeat_newline, - STATE(2287), 1, + STATE(2321), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2747), 1, + STATE(2756), 1, sym__binary_predicate_parenthesized, - STATE(2748), 1, + STATE(2757), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69214] = 23, + [71007] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197793,49 +200502,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4875), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4883), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(2288), 1, + STATE(2322), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2427), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2606), 1, sym__where_predicate_lhs, - STATE(2697), 1, + STATE(2748), 1, sym__binary_predicate_parenthesized, - STATE(2698), 1, + STATE(2749), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3036), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2248), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69290] = 23, + [71083] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1504), 1, + anon_sym_DOT_DOT2, + ACTIONS(4905), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(2323), 1, + sym_comment, + STATE(2324), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1506), 23, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [71127] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1508), 1, + anon_sym_DOT_DOT2, + ACTIONS(4913), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(2324), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 23, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [71169] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + anon_sym_DOT_DOT2, + ACTIONS(4905), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(471), 1, + sym_cell_path, + STATE(2323), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2325), 1, + sym_comment, + ACTIONS(1657), 22, + anon_sym_if, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [71215] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1647), 1, + anon_sym_DOT_DOT2, + ACTIONS(4905), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(483), 1, + sym_cell_path, + STATE(2323), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2326), 1, + sym_comment, + ACTIONS(1645), 22, + anon_sym_if, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [71261] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197846,64 +200704,3172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2289), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(2702), 1, + aux_sym_expr_unary_token1, + ACTIONS(4875), 1, + sym__newline, + ACTIONS(4877), 1, + anon_sym_LPAREN, + ACTIONS(4879), 1, + anon_sym_DASH2, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2314), 1, + aux_sym__repeat_newline, + STATE(2327), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2852), 1, + sym__binary_predicate_parenthesized, + STATE(2853), 1, + sym_where_predicate, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71337] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(2702), 1, + aux_sym_expr_unary_token1, + ACTIONS(4875), 1, + sym__newline, + ACTIONS(4877), 1, + anon_sym_LPAREN, + ACTIONS(4879), 1, + anon_sym_DASH2, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2301), 1, + aux_sym__repeat_newline, + STATE(2328), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2762), 1, + sym__binary_predicate_parenthesized, + STATE(2763), 1, + sym_where_predicate, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71413] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + ACTIONS(4916), 1, + anon_sym_DOT, + STATE(2329), 1, + sym_comment, + STATE(2465), 1, + sym__immediate_decimal, + ACTIONS(4918), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2633), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1598), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [71464] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1717), 1, + anon_sym_BANG, + STATE(2330), 1, + sym_comment, + ACTIONS(1448), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1450), 23, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [71503] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(2331), 1, + sym_comment, + STATE(2567), 1, + sym__immediate_decimal, + ACTIONS(4922), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4924), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(748), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1651), 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, + [71552] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_DOT, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(2332), 1, + sym_comment, + STATE(2501), 1, + sym__immediate_decimal, + ACTIONS(1608), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1610), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2553), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1639), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [71601] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(2333), 1, + sym_comment, + STATE(2562), 1, + sym__immediate_decimal, + ACTIONS(4922), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4924), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(730), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1598), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_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, + [71650] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(743), 1, + sym__immediate_decimal, + STATE(2334), 1, + sym_comment, + ACTIONS(1610), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1655), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(742), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1667), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_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, + [71696] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2786), 1, + aux_sym_expr_unary_token1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, + anon_sym_DOLLAR, + ACTIONS(4901), 1, + anon_sym_DASH2, + STATE(1290), 1, + sym__expr_unary_minus, + STATE(2335), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2596), 1, + sym__where_predicate_lhs, + STATE(2973), 1, + sym__binary_predicate, + STATE(3014), 1, + sym_where_predicate, + ACTIONS(2208), 2, + anon_sym_true, + anon_sym_false, + STATE(2258), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2999), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71766] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4926), 1, + anon_sym_DOT, + ACTIONS(4928), 1, + aux_sym__immediate_decimal_token5, + STATE(2336), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71806] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2786), 1, + aux_sym_expr_unary_token1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, + anon_sym_DOLLAR, + ACTIONS(4901), 1, + anon_sym_DASH2, + STATE(1290), 1, + sym__expr_unary_minus, + STATE(2337), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2596), 1, + sym__where_predicate_lhs, + STATE(2906), 1, + sym_where_predicate, + STATE(2965), 1, + sym__binary_predicate, + ACTIONS(2208), 2, + anon_sym_true, + anon_sym_false, + STATE(2258), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2999), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71876] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2786), 1, + aux_sym_expr_unary_token1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, + anon_sym_DOLLAR, + ACTIONS(4901), 1, + anon_sym_DASH2, + STATE(1290), 1, + sym__expr_unary_minus, + STATE(2338), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2596), 1, + sym__where_predicate_lhs, + STATE(2985), 1, + sym__binary_predicate, + STATE(2997), 1, + sym_where_predicate, + ACTIONS(2208), 2, + anon_sym_true, + anon_sym_false, + STATE(2258), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2999), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71946] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2786), 1, + aux_sym_expr_unary_token1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, + anon_sym_DOLLAR, + ACTIONS(4901), 1, + anon_sym_DASH2, + STATE(1290), 1, + sym__expr_unary_minus, + STATE(2339), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2596), 1, + sym__where_predicate_lhs, + STATE(2998), 1, + sym__binary_predicate, + STATE(3008), 1, + sym_where_predicate, + ACTIONS(2208), 2, + anon_sym_true, + anon_sym_false, + STATE(2258), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2999), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72016] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4930), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4932), 1, + aux_sym__immediate_decimal_token5, + STATE(2340), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [72056] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(2702), 1, + aux_sym_expr_unary_token1, + ACTIONS(4877), 1, + anon_sym_LPAREN, + ACTIONS(4879), 1, + anon_sym_DASH2, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2341), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2770), 1, + sym__binary_predicate, + STATE(2771), 1, + sym_where_predicate, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72126] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + STATE(2342), 1, + sym_comment, + STATE(2661), 1, + sym__immediate_decimal, + ACTIONS(4934), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4936), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1299), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1598), 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, + [72174] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(2702), 1, + aux_sym_expr_unary_token1, + ACTIONS(4877), 1, + anon_sym_LPAREN, + ACTIONS(4879), 1, + anon_sym_DASH2, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2343), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2773), 1, + sym__binary_predicate, + STATE(2774), 1, + sym_where_predicate, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72244] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + STATE(2344), 1, + sym_comment, + STATE(2693), 1, + sym__immediate_decimal, + ACTIONS(4934), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4936), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1279), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1651), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [72292] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(1701), 1, + anon_sym_DOT, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + STATE(2345), 1, + sym_comment, + STATE(2632), 1, + sym__immediate_decimal, + ACTIONS(1691), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1693), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2631), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1639), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [72340] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(2702), 1, + aux_sym_expr_unary_token1, + ACTIONS(4877), 1, + anon_sym_LPAREN, + ACTIONS(4879), 1, + anon_sym_DASH2, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2346), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2877), 1, + sym__binary_predicate, + STATE(2881), 1, + sym_where_predicate, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72410] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(729), 1, + sym__immediate_decimal, + STATE(2347), 1, + sym_comment, + ACTIONS(1610), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1655), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(728), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1639), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_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, + [72456] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(2702), 1, + aux_sym_expr_unary_token1, + ACTIONS(4877), 1, + anon_sym_LPAREN, + ACTIONS(4879), 1, + anon_sym_DASH2, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2348), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2886), 1, + sym__binary_predicate, + STATE(2892), 1, + sym_where_predicate, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72526] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(745), 1, + sym__immediate_decimal, + STATE(2349), 1, + sym_comment, + ACTIONS(1610), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1655), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(744), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_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, + [72572] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(747), 1, + sym__immediate_decimal, + STATE(2350), 1, + sym_comment, + ACTIONS(1610), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1655), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(746), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1663), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_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, + [72618] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(2702), 1, + aux_sym_expr_unary_token1, + ACTIONS(4877), 1, + anon_sym_LPAREN, + ACTIONS(4879), 1, + anon_sym_DASH2, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2351), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2898), 1, + sym__binary_predicate, + STATE(2901), 1, + sym_where_predicate, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72688] = 13, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__space, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4938), 1, + anon_sym_DOT, + ACTIONS(4940), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4942), 1, + aux_sym__immediate_decimal_token2, + STATE(2352), 1, + sym_comment, + STATE(2540), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2658), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [72742] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(2702), 1, + aux_sym_expr_unary_token1, + ACTIONS(4877), 1, + anon_sym_LPAREN, + ACTIONS(4879), 1, + anon_sym_DASH2, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2353), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2717), 1, + sym_where_predicate, + STATE(2830), 1, + sym__binary_predicate, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72812] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2786), 1, + aux_sym_expr_unary_token1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, + anon_sym_DOLLAR, + ACTIONS(4901), 1, + anon_sym_DASH2, + STATE(1290), 1, + sym__expr_unary_minus, + STATE(2354), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2596), 1, + sym__where_predicate_lhs, + STATE(3015), 1, + sym__binary_predicate, + STATE(3017), 1, + sym_where_predicate, + ACTIONS(2208), 2, + anon_sym_true, + anon_sym_false, + STATE(2258), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2999), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72882] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2786), 1, + aux_sym_expr_unary_token1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, + anon_sym_DOLLAR, + ACTIONS(4901), 1, + anon_sym_DASH2, + STATE(1290), 1, + sym__expr_unary_minus, + STATE(2355), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2596), 1, + sym__where_predicate_lhs, + STATE(2954), 1, + sym__binary_predicate, + STATE(2967), 1, + sym_where_predicate, + ACTIONS(2208), 2, + anon_sym_true, + anon_sym_false, + STATE(2258), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2999), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72952] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(1734), 1, + sym__unquoted_pattern, + ACTIONS(4946), 1, + anon_sym_DOT_DOT2, + ACTIONS(4950), 1, + sym_filesize_unit, + ACTIONS(4952), 1, + sym_duration_unit, + STATE(2356), 1, + sym_comment, + STATE(4801), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(886), 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, + [72999] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4954), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4956), 1, + aux_sym__immediate_decimal_token5, + STATE(2357), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [73038] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4958), 1, + aux_sym__immediate_decimal_token5, + STATE(2358), 1, + sym_comment, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 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, + [73075] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(4962), 1, + aux_sym__immediate_decimal_token5, + STATE(2359), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [73114] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4928), 1, + aux_sym__immediate_decimal_token5, + STATE(2360), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [73151] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__space, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4964), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4966), 1, + aux_sym__immediate_decimal_token2, + STATE(2361), 1, + sym_comment, + STATE(2806), 1, + sym__immediate_decimal, + ACTIONS(4968), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3155), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 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, + [73202] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1639), 1, + sym__space, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4940), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4942), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(4970), 1, + anon_sym_DOT, + STATE(2362), 1, + sym_comment, + STATE(2657), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2656), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1641), 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, + [73253] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + STATE(1340), 1, + sym__immediate_decimal, + STATE(2363), 1, + sym_comment, + ACTIONS(1693), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1758), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1315), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1639), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [73298] = 13, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(3323), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(4972), 1, + anon_sym_DOT, + ACTIONS(4974), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4976), 1, + aux_sym__immediate_decimal_token2, + STATE(2364), 1, + sym_comment, + STATE(2623), 1, + sym__immediate_decimal, + ACTIONS(1598), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4978), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2821), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [73351] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1651), 1, + sym__space, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4964), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4966), 1, + aux_sym__immediate_decimal_token2, + STATE(2365), 1, + sym_comment, + STATE(2810), 1, + sym__immediate_decimal, + ACTIONS(4968), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3188), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1653), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [73402] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + STATE(1339), 1, + sym__immediate_decimal, + STATE(2366), 1, + sym_comment, + ACTIONS(1693), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1758), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1337), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1667), 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, + [73447] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + STATE(1350), 1, + sym__immediate_decimal, + STATE(2367), 1, + sym_comment, + ACTIONS(1693), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1758), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1342), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [73492] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + STATE(1278), 1, + sym__immediate_decimal, + STATE(2368), 1, + sym_comment, + ACTIONS(1693), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1758), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1352), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1663), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [73537] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4980), 1, + anon_sym_DOT, + ACTIONS(4982), 1, + aux_sym__immediate_decimal_token5, + STATE(2369), 1, + sym_comment, + ACTIONS(749), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [73575] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2370), 1, + sym_comment, + ACTIONS(860), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(862), 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, + [73609] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1639), 1, + sym__space, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4984), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4986), 1, + aux_sym__immediate_decimal_token2, + STATE(2371), 1, + sym_comment, + STATE(3152), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3148), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1641), 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, + [73657] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4962), 1, + aux_sym__immediate_decimal_token5, + STATE(2372), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [73693] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(3323), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(4988), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4990), 1, + aux_sym__immediate_decimal_token2, + STATE(2373), 1, + sym_comment, + STATE(2920), 1, + sym__immediate_decimal, + ACTIONS(1651), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4992), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3298), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1653), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [73743] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(3323), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(4988), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4990), 1, + aux_sym__immediate_decimal_token2, + STATE(2374), 1, + sym_comment, + STATE(2916), 1, + sym__immediate_decimal, + ACTIONS(1598), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4992), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3305), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 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, + [73793] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(1820), 1, + sym__unquoted_pattern, + ACTIONS(4994), 1, + anon_sym_DOT_DOT2, + ACTIONS(4998), 1, + sym_filesize_unit, + ACTIONS(5000), 1, + sym_duration_unit, + STATE(2375), 1, + sym_comment, + STATE(4881), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4996), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(886), 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, + [73839] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5002), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5004), 1, + aux_sym__immediate_decimal_token5, + STATE(2376), 1, + sym_comment, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 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, + [73877] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1442), 1, + anon_sym_DOT_DOT2, + ACTIONS(5006), 1, + anon_sym_DOT2, + STATE(428), 1, + sym_cell_path, + STATE(720), 1, + sym_path, + STATE(2377), 1, + sym_comment, + STATE(2414), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1444), 18, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [73919] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5008), 1, + aux_sym__immediate_decimal_token5, + STATE(2378), 1, + sym_comment, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 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, + [73955] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2379), 1, + sym_comment, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1521), 21, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [73989] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + sym__space, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4984), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4986), 1, + aux_sym__immediate_decimal_token2, + STATE(2380), 1, + sym_comment, + STATE(3181), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3179), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + 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_RPAREN, + anon_sym_RBRACE, + [74037] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1681), 1, + sym__space, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4984), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4986), 1, + aux_sym__immediate_decimal_token2, + STATE(2381), 1, + sym_comment, + STATE(3183), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3182), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1683), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [74085] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1663), 1, + sym__space, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4984), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4986), 1, + aux_sym__immediate_decimal_token2, + STATE(2382), 1, + sym_comment, + STATE(3186), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3185), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1665), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [74133] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2383), 1, + sym_comment, + ACTIONS(1523), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1525), 21, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [74167] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5010), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(731), 1, + sym_cell_path, + STATE(2323), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2384), 1, + sym_comment, + ACTIONS(1888), 19, + anon_sym_if, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [74207] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2385), 1, + sym_comment, + ACTIONS(1527), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1529), 21, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [74241] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5010), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(741), 1, + sym_cell_path, + STATE(2323), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2386), 1, + sym_comment, + ACTIONS(1896), 19, + anon_sym_if, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [74281] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5012), 1, + anon_sym_DOT, + ACTIONS(5014), 1, + aux_sym__immediate_decimal_token5, + STATE(2387), 1, + sym_comment, + ACTIONS(1746), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 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, + [74319] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5016), 1, + anon_sym_QMARK2, + ACTIONS(5018), 1, + anon_sym_BANG, + STATE(2388), 1, + sym_comment, + STATE(2497), 1, + sym__path_suffix, + ACTIONS(1458), 20, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [74357] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3323), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(4974), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4976), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5020), 1, + anon_sym_DOT, + STATE(2389), 1, + sym_comment, + STATE(2820), 1, + sym__immediate_decimal, + ACTIONS(1639), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4978), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2818), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1641), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [74407] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2390), 1, + sym_comment, + ACTIONS(1531), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1533), 21, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [74441] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5022), 1, + anon_sym_QMARK2, + ACTIONS(5024), 1, + anon_sym_BANG, + STATE(712), 1, + sym__path_suffix, + STATE(2391), 1, + sym_comment, + ACTIONS(1456), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1458), 18, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74481] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2392), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [74515] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2393), 1, + sym_comment, + ACTIONS(1535), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1537), 21, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [74549] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2394), 1, + sym_comment, + ACTIONS(1539), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1541), 21, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [74583] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5028), 1, + aux_sym__immediate_decimal_token5, + STATE(2395), 1, + sym_comment, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [74621] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2396), 1, + sym_comment, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 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, + [74655] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2293), 1, + sym_cell_path, + STATE(2397), 1, + sym_comment, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + ACTIONS(1444), 18, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [74694] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5014), 1, + aux_sym__immediate_decimal_token5, + STATE(2398), 1, + sym_comment, + ACTIONS(1746), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 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, + [74729] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + anon_sym_DOT_DOT2, + ACTIONS(5006), 1, + anon_sym_DOT2, + STATE(720), 1, + sym_path, + STATE(963), 1, + sym_cell_path, + STATE(2399), 1, + sym_comment, + STATE(2414), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1657), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74770] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5034), 1, + anon_sym_GT2, + ACTIONS(5036), 1, + sym__entry_separator, + ACTIONS(5038), 1, + sym_raw_string_begin, + STATE(2400), 1, + sym_comment, + STATE(2401), 1, + aux_sym__types_body_repeat2, + ACTIONS(5032), 18, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [74809] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3720), 1, + sym_raw_string_begin, + ACTIONS(5040), 1, + sym__entry_separator, + STATE(2401), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3715), 19, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [74844] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3858), 1, + anon_sym_DOLLAR, + ACTIONS(5043), 1, + anon_sym_DOT, + ACTIONS(5045), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5047), 1, + aux_sym__immediate_decimal_token2, + STATE(2402), 1, + sym_comment, + STATE(2669), 1, + sym__immediate_decimal, + ACTIONS(1602), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5049), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2951), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1598), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [74895] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5051), 1, + aux_sym__immediate_decimal_token5, + STATE(2403), 1, + sym_comment, + ACTIONS(773), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(771), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [74930] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5036), 1, + sym__entry_separator, + ACTIONS(5038), 1, + sym_raw_string_begin, + ACTIONS(5053), 1, + anon_sym_GT2, + STATE(2401), 1, + aux_sym__types_body_repeat2, + STATE(2404), 1, + sym_comment, + ACTIONS(5032), 18, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [74969] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2405), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [75002] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5055), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5057), 1, + aux_sym__immediate_decimal_token5, + STATE(2406), 1, + sym_comment, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 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, + [75039] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3323), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(5059), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5061), 1, + aux_sym__immediate_decimal_token2, + STATE(2407), 1, + sym_comment, + STATE(3276), 1, + sym__immediate_decimal, + ACTIONS(1667), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4978), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3273), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [75086] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3323), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(5059), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5061), 1, + aux_sym__immediate_decimal_token2, + STATE(2408), 1, + sym_comment, + STATE(3284), 1, + sym__immediate_decimal, + ACTIONS(1681), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4978), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3279), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1683), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [75133] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(886), 1, + sym__space, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(5063), 1, + anon_sym_DOT_DOT2, + ACTIONS(5067), 1, + sym_filesize_unit, + ACTIONS(5069), 1, + sym_duration_unit, + ACTIONS(5071), 1, + sym__unquoted_pattern, + STATE(2409), 1, + sym_comment, + STATE(4929), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5065), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 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, + [75180] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5073), 1, + anon_sym_DOT, + ACTIONS(5075), 1, + aux_sym__immediate_decimal_token5, + STATE(2410), 1, + sym_comment, + ACTIONS(1746), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 18, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75217] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5077), 1, + anon_sym_DOT, + ACTIONS(5079), 1, + aux_sym__immediate_decimal_token5, + STATE(2411), 1, + sym_comment, + ACTIONS(749), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75254] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5036), 1, + sym__entry_separator, + ACTIONS(5038), 1, + sym_raw_string_begin, + ACTIONS(5081), 1, + anon_sym_GT2, + STATE(2401), 1, + aux_sym__types_body_repeat2, + STATE(2412), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2668), 1, - sym__binary_predicate_parenthesized, - STATE(2669), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(5032), 18, anon_sym_true, anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69366] = 7, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [75293] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1458), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2290), 1, + ACTIONS(5083), 1, + aux_sym__immediate_decimal_token5, + STATE(2413), 1, sym_comment, - STATE(2291), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 23, - anon_sym_if, - anon_sym_in, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197916,30 +203882,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69410] = 6, + [75328] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1524), 1, + ACTIONS(1504), 1, anon_sym_DOT_DOT2, - ACTIONS(4829), 1, + ACTIONS(5006), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(720), 1, sym_path, - STATE(2291), 2, + STATE(2414), 1, sym_comment, + STATE(2424), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 23, - anon_sym_if, - anon_sym_in, + ACTIONS(1506), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197951,33 +203915,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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69452] = 8, + [75367] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(1647), 1, anon_sym_DOT_DOT2, - ACTIONS(4813), 1, + ACTIONS(5006), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(720), 1, sym_path, - STATE(465), 1, + STATE(938), 1, sym_cell_path, - STATE(2290), 1, + STATE(2414), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2292), 1, + STATE(2415), 1, sym_comment, - ACTIONS(1679), 22, - anon_sym_if, + ACTIONS(1645), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197989,33 +203949,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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69498] = 8, + [75408] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(466), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2293), 1, + STATE(2416), 1, sym_comment, - ACTIONS(1641), 22, - anon_sym_if, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198027,135 +203975,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69544] = 23, + sym_filesize_unit, + sym_duration_unit, + [75441] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(1671), 1, + anon_sym_QMARK2, + ACTIONS(1673), 1, + anon_sym_BANG, + STATE(2417), 1, + sym_comment, + STATE(2518), 1, + sym__path_suffix, + ACTIONS(5087), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5085), 17, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_DOT2, + [75480] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5036), 1, + sym__entry_separator, + ACTIONS(5038), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2294), 1, + ACTIONS(5089), 1, + anon_sym_GT2, + STATE(2401), 1, + aux_sym__types_body_repeat2, + STATE(2418), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2703), 1, - sym__binary_predicate_parenthesized, - STATE(2712), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(5032), 18, anon_sym_true, anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69620] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(201), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, + aux_sym__unquoted_in_record_token1, + [75519] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3323), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2274), 1, - aux_sym__repeat_newline, - STATE(2295), 1, + ACTIONS(5059), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5061), 1, + aux_sym__immediate_decimal_token2, + STATE(2419), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2751), 1, - sym__binary_predicate_parenthesized, - STATE(2752), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, + STATE(3286), 1, + sym__immediate_decimal, + ACTIONS(1639), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4978), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3285), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69696] = 5, - ACTIONS(3), 1, + ACTIONS(1641), 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, + [75566] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1700), 1, - anon_sym_BANG, - STATE(2296), 1, + ACTIONS(4982), 1, + aux_sym__immediate_decimal_token5, + STATE(2420), 1, sym_comment, - ACTIONS(1438), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 23, - anon_sym_if, - anon_sym_in, + ACTIONS(749), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198168,38 +204110,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_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75601] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5093), 1, + aux_sym__immediate_decimal_token5, + STATE(2421), 1, + sym_comment, + ACTIONS(741), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69735] = 10, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75638] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(2297), 1, + STATE(2422), 1, sym_comment, - STATE(2502), 1, - sym__immediate_decimal, - ACTIONS(1592), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2501), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 16, + ACTIONS(860), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(862), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198211,36 +204165,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69784] = 11, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [75671] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1651), 1, + ACTIONS(3323), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(4834), 1, - anon_sym_DOT, - STATE(2298), 1, - sym_comment, - STATE(2436), 1, - sym__immediate_decimal, - ACTIONS(4836), 2, + ACTIONS(5059), 1, aux_sym__immediate_decimal_token1, + ACTIONS(5061), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4838), 2, + STATE(2423), 1, + sym_comment, + STATE(3297), 1, + sym__immediate_decimal, + ACTIONS(1663), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4978), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2580), 2, + STATE(3290), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 15, + ACTIONS(1665), 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, + [75718] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1508), 1, + anon_sym_DOT_DOT2, + ACTIONS(5095), 1, + anon_sym_DOT2, + STATE(720), 1, + sym_path, + STATE(2424), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -198253,32 +204234,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69835] = 10, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75755] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(5098), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5100), 1, + aux_sym__immediate_decimal_token5, + STATE(2425), 1, + sym_comment, + ACTIONS(1770), 4, + sym__space, anon_sym_LPAREN2, - ACTIONS(1615), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1772), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(2878), 1, + [75791] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5102), 1, + anon_sym_DOT, + ACTIONS(5104), 1, + aux_sym__immediate_decimal_token5, + STATE(2426), 1, + sym_comment, + ACTIONS(747), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(749), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - STATE(2299), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75827] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(2427), 1, sym_comment, - STATE(2533), 1, - sym__immediate_decimal, - ACTIONS(4840), 2, + STATE(2431), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5108), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5106), 16, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [75865] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5110), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 16, + ACTIONS(5112), 1, + aux_sym__immediate_decimal_token5, + STATE(2428), 1, + sym_comment, + ACTIONS(739), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(741), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75901] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5079), 1, + aux_sym__immediate_decimal_token5, + STATE(2429), 1, + sym_comment, + ACTIONS(749), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75935] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5114), 1, + anon_sym_DOT2, + STATE(2430), 1, + sym_comment, + STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2583), 1, + sym_path, + STATE(2674), 1, + sym_cell_path, + ACTIONS(1657), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1659), 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, + [75975] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_DOT2, + STATE(437), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(458), 1, + sym_path, + STATE(2431), 1, + sym_comment, + ACTIONS(5118), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5116), 16, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [76013] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2432), 1, + sym_comment, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198295,29 +204478,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69884] = 10, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76045] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(5120), 1, + aux_sym__immediate_decimal_token5, + STATE(2433), 1, + sym_comment, + ACTIONS(773), 7, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, - ACTIONS(1639), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(771), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(2300), 1, + [76079] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2434), 1, sym_comment, - STATE(2535), 1, - sym__immediate_decimal, - ACTIONS(4840), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 16, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198334,30 +204535,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69933] = 10, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76111] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2435), 1, + sym_comment, + ACTIONS(3756), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 19, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [76143] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(2301), 1, + STATE(2436), 1, sym_comment, - STATE(2603), 1, - sym__immediate_decimal, - ACTIONS(4844), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1311), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 15, - ts_builtin_sym_end, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1870), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198369,130 +204586,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69981] = 21, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76175] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5114), 1, + anon_sym_DOT2, + STATE(2437), 1, + sym_comment, + STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2583), 1, + sym_path, + STATE(2663), 1, + sym_cell_path, + ACTIONS(1444), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1442), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_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, + [76215] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2302), 1, + ACTIONS(5122), 1, + sym__newline, + STATE(2438), 2, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2854), 1, - sym__binary_predicate, - STATE(2855), 1, - sym_where_predicate, - ACTIONS(2174), 2, + aux_sym__types_body_repeat1, + ACTIONS(3758), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3760), 16, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70051] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(201), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2303), 1, + [76249] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5114), 1, + anon_sym_DOT2, + STATE(2439), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2861), 1, - sym__binary_predicate, - STATE(2862), 1, - sym_where_predicate, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70121] = 10, + STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2583), 1, + sym_path, + STATE(2667), 1, + sym_cell_path, + ACTIONS(1645), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1647), 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, + [76289] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(1651), 1, + ACTIONS(5125), 1, + anon_sym_BANG, + STATE(2440), 1, + sym_comment, + ACTIONS(1450), 20, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [76321] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2441), 1, + sym_comment, + ACTIONS(741), 6, + sym__space, anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(2304), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76353] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5075), 1, + aux_sym__immediate_decimal_token5, + STATE(2442), 1, sym_comment, - STATE(2618), 1, - sym__immediate_decimal, - ACTIONS(4844), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1343), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 15, + ACTIONS(1746), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -198508,76 +204769,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70169] = 21, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76387] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(5127), 1, + anon_sym_DOT_DOT2, + STATE(2443), 1, + sym_comment, + ACTIONS(5129), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1956), 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, + [76425] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5036), 1, + sym__entry_separator, + ACTIONS(5038), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2305), 1, + STATE(2401), 1, + aux_sym__types_body_repeat2, + STATE(2444), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2798), 1, - sym__binary_predicate, - STATE(2799), 1, - sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(5032), 18, anon_sym_true, anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70239] = 9, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [76461] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5131), 1, + anon_sym_QMARK2, + ACTIONS(5133), 1, + anon_sym_BANG, + STATE(2445), 1, + sym_comment, + STATE(2603), 1, + sym__path_suffix, + ACTIONS(1458), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1456), 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_DOT2, + [76499] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(722), 1, - sym__immediate_decimal, - STATE(2306), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(5135), 1, + anon_sym_DOT_DOT2, + STATE(2446), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(721), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 16, + ACTIONS(5137), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1973), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198594,27 +204895,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70285] = 9, + [76537] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(737), 1, - sym__immediate_decimal, - STATE(2307), 1, + ACTIONS(5139), 1, + aux_sym__immediate_decimal_token5, + STATE(2447), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(736), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 16, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198626,32 +204918,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, - [70331] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(739), 1, - sym__immediate_decimal, - STATE(2308), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76571] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2448), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(738), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 16, + ACTIONS(862), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(860), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198665,30 +204950,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [70377] = 9, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76603] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(741), 1, - sym__immediate_decimal, - STATE(2309), 1, + STATE(2449), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(740), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 16, + ACTIONS(773), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(771), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198702,184 +204978,130 @@ 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, - [70423] = 21, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76635] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3858), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2310), 1, + ACTIONS(5141), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5143), 1, + aux_sym__immediate_decimal_token2, + STATE(2450), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2800), 1, - sym__binary_predicate, - STATE(2801), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70493] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + STATE(3134), 1, + sym__immediate_decimal, + ACTIONS(1602), 2, + sym_identifier, anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2311), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2802), 1, - sym__binary_predicate, - STATE(2803), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, + ACTIONS(5145), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3399), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70563] = 21, + ACTIONS(1598), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [76683] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3858), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2312), 1, + ACTIONS(5045), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5047), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5147), 1, + anon_sym_DOT, + STATE(2451), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2805), 1, - sym__binary_predicate, - STATE(2808), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, + STATE(2922), 1, + sym__immediate_decimal, + ACTIONS(1641), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5049), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2921), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70633] = 13, - ACTIONS(103), 1, + ACTIONS(1639), 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, + [76731] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, - anon_sym_DOT, - ACTIONS(4850), 1, + ACTIONS(5141), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, + ACTIONS(5143), 1, aux_sym__immediate_decimal_token2, - STATE(2313), 1, + STATE(2452), 1, sym_comment, - STATE(2509), 1, + STATE(3136), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(1653), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5145), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2608), 2, + STATE(3479), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 13, + ACTIONS(1651), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [76779] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5010), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(939), 1, + sym_cell_path, + STATE(2323), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2453), 1, + sym_comment, + ACTIONS(1900), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198892,31 +205114,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - [70687] = 10, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [76817] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(1687), 1, - anon_sym_DOT, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(2314), 1, + ACTIONS(5010), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(932), 1, + sym_cell_path, + STATE(2323), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2454), 1, sym_comment, - STATE(2579), 1, - sym__immediate_decimal, - ACTIONS(1655), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2578), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 15, - ts_builtin_sym_end, + ACTIONS(1882), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198928,316 +205144,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70735] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2315), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2809), 1, - sym__binary_predicate, - STATE(2810), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70805] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2316), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2812), 1, - sym__binary_predicate, - STATE(2813), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70875] = 21, + [76855] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2317), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2864), 1, - sym__binary_predicate, - STATE(2865), 1, - sym_where_predicate, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70945] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2318), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2890), 1, - sym_where_predicate, - STATE(2915), 1, - sym__binary_predicate, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71015] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2319), 1, + ACTIONS(5125), 1, + anon_sym_QMARK2, + STATE(2455), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2856), 1, - sym__binary_predicate, - STATE(2858), 1, - sym_where_predicate, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71085] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(1450), 20, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2320), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2859), 1, - sym__binary_predicate, - STATE(2860), 1, - sym_where_predicate, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71155] = 6, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [76887] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4856), 1, - anon_sym_DOT, - ACTIONS(4858), 1, - aux_sym__immediate_decimal_token5, - STATE(2321), 1, + ACTIONS(5010), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(949), 1, + sym_cell_path, + STATE(2323), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2456), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(1862), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199250,28 +205204,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71195] = 6, + [76925] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4860), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4862), 1, - aux_sym__immediate_decimal_token5, - STATE(2322), 1, + ACTIONS(5010), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(906), 1, + sym_cell_path, + STATE(2323), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2457), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(1912), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199284,36 +205235,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71235] = 9, + [76963] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(1342), 1, - sym__immediate_decimal, - STATE(2323), 1, + ACTIONS(2081), 1, + anon_sym_BANG, + STATE(2458), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1341), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 15, + ACTIONS(1448), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1450), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199326,20 +205263,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71280] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76997] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym__immediate_decimal_token5, - STATE(2324), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2459), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 21, + STATE(2460), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + ACTIONS(1506), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199351,42 +205293,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - 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, - [71317] = 12, - ACTIONS(103), 1, + [77033] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4850), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(4866), 1, - anon_sym_DOT, - STATE(2325), 1, + ACTIONS(5149), 1, + anon_sym_DOT2, + STATE(2500), 1, + sym_path, + STATE(2460), 2, sym_comment, - STATE(2607), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2606), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 13, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199398,37 +205322,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [71368] = 13, + [77067] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3251), 1, + ACTIONS(1724), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4868), 1, - anon_sym_DOT, - ACTIONS(4870), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, - aux_sym__immediate_decimal_token2, - STATE(2326), 1, + ACTIONS(5152), 1, + anon_sym_DOT_DOT2, + ACTIONS(5156), 1, + sym_filesize_unit, + ACTIONS(5158), 1, + sym_duration_unit, + ACTIONS(5160), 1, + sym__unquoted_pattern, + STATE(2461), 1, sym_comment, - STATE(2560), 1, - sym__immediate_decimal, - ACTIONS(1596), 2, + STATE(4806), 1, + sym__expr_parenthesized_immediate, + ACTIONS(886), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2706), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 11, + ACTIONS(5154), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199440,20 +205363,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, - [71421] = 6, - ACTIONS(3), 1, + [77113] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4876), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4878), 1, + ACTIONS(5162), 1, + anon_sym_DOT, + ACTIONS(5164), 1, aux_sym__immediate_decimal_token5, - STATE(2327), 1, + STATE(2462), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, - ts_builtin_sym_end, + ACTIONS(1744), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1746), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199465,27 +205389,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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71460] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77149] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4880), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - aux_sym__immediate_decimal_token5, - STATE(2328), 1, + STATE(2463), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1872), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 20, + ACTIONS(1870), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199504,34 +205420,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71499] = 12, + [77180] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__space, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4884), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, - aux_sym__immediate_decimal_token2, - STATE(2329), 1, + ACTIONS(5166), 1, + anon_sym_QMARK2, + ACTIONS(5168), 1, + anon_sym_BANG, + STATE(2464), 1, sym_comment, - STATE(2713), 1, - sym__immediate_decimal, - ACTIONS(4888), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3013), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 13, + STATE(2647), 1, + sym__path_suffix, + ACTIONS(1458), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1456), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199543,34 +205448,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, - [71550] = 12, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [77217] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4884), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, - aux_sym__immediate_decimal_token2, - STATE(2330), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(5170), 1, + anon_sym_DOT_DOT2, + STATE(2465), 1, sym_comment, - STATE(2708), 1, - sym__immediate_decimal, - ACTIONS(4888), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2982), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 13, + ACTIONS(5172), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1973), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199582,29 +205477,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, - [71601] = 10, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77254] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(4890), 1, - anon_sym_DOT_DOT2, - ACTIONS(4894), 1, - sym_filesize_unit, - ACTIONS(4896), 1, - sym_duration_unit, - STATE(2331), 1, + ACTIONS(5114), 1, + anon_sym_DOT2, + STATE(2466), 1, sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4892), 2, + STATE(2469), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2583), 1, + sym_path, + ACTIONS(1506), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 16, + ACTIONS(1504), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199618,31 +205509,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [71648] = 9, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [77291] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(1337), 1, - sym__immediate_decimal, - STATE(2332), 1, - sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(5174), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1336), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 15, + ACTIONS(5176), 1, + aux_sym__immediate_decimal_token5, + STATE(2467), 1, + sym_comment, + ACTIONS(1770), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1772), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199654,31 +205537,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [71693] = 9, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77326] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(1271), 1, - sym__immediate_decimal, - STATE(2333), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2468), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1269), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 15, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2689), 1, + sym_path, + STATE(2863), 1, + sym_cell_path, + ACTIONS(1657), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1659), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199690,31 +205569,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [71738] = 9, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [77365] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(1340), 1, - sym__immediate_decimal, - STATE(2334), 1, + ACTIONS(5180), 1, + anon_sym_DOT2, + STATE(2583), 1, + sym_path, + STATE(2469), 2, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1339), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 15, - ts_builtin_sym_end, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1508), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199726,20 +205596,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, - [71783] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [77400] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4858), 1, - aux_sym__immediate_decimal_token5, - STATE(2335), 1, + STATE(2470), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(1533), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1531), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199753,23 +205622,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71820] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77431] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2336), 1, + STATE(2471), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(1537), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1535), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199783,27 +205649,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71854] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77462] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4898), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4900), 1, - aux_sym__immediate_decimal_token5, - STATE(2337), 1, + STATE(2472), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 19, + ACTIONS(1541), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1539), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199817,57 +205676,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77493] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5104), 1, + aux_sym__immediate_decimal_token5, + STATE(2473), 1, + sym_comment, + ACTIONS(747), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(749), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + 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, - [71892] = 10, + [77526] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(5183), 1, + aux_sym__immediate_decimal_token5, + STATE(2474), 1, + sym_comment, + ACTIONS(771), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(773), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - ACTIONS(4902), 1, - anon_sym_DOT_DOT2, - ACTIONS(4906), 1, - sym_filesize_unit, - ACTIONS(4908), 1, - sym_duration_unit, - STATE(2338), 1, - sym_comment, - STATE(4775), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4904), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [71938] = 4, + [77559] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2339), 1, - sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, + ACTIONS(1746), 1, sym__unquoted_pattern, - ACTIONS(851), 21, + ACTIONS(5185), 1, + anon_sym_DOT, + ACTIONS(5187), 1, + aux_sym__immediate_decimal_token5, + STATE(2475), 1, + sym_comment, + ACTIONS(1744), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199885,72 +205765,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71972] = 12, + [77594] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4870), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(4910), 1, - anon_sym_DOT, - STATE(2340), 1, + STATE(2476), 1, sym_comment, - STATE(2705), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, + ACTIONS(773), 7, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2704), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 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, - [72022] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, - aux_sym__immediate_decimal_token2, - STATE(2341), 1, - sym_comment, - STATE(2981), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2979), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(771), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199962,17 +205790,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, - [72070] = 4, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77625] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2342), 1, + STATE(2477), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1772), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(1770), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199984,77 +205813,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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, - [72104] = 11, - ACTIONS(103), 1, + [77656] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1667), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(5189), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, + ACTIONS(5191), 1, aux_sym__immediate_decimal_token2, - STATE(2343), 1, + STATE(2478), 1, sym_comment, - STATE(3008), 1, + STATE(3421), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(1669), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3006), 2, + STATE(3413), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 13, + ACTIONS(1667), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [72152] = 11, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77701] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, - aux_sym__immediate_decimal_token2, - STATE(2344), 1, + ACTIONS(5193), 1, + anon_sym_DOT_DOT2, + STATE(2479), 1, sym_comment, - STATE(3010), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 13, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1956), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200066,94 +205880,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [72200] = 11, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77738] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1675), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(5189), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, + ACTIONS(5191), 1, aux_sym__immediate_decimal_token2, - STATE(2345), 1, + STATE(2480), 1, sym_comment, - STATE(3012), 1, + STATE(3427), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(1683), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3011), 2, + STATE(3425), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 13, + ACTIONS(1681), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [72248] = 12, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77783] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3251), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR, - ACTIONS(4916), 1, + ACTIONS(5189), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, + ACTIONS(5191), 1, aux_sym__immediate_decimal_token2, - STATE(2346), 1, + STATE(2481), 1, sym_comment, - STATE(2875), 1, + STATE(3478), 1, sym__immediate_decimal, - ACTIONS(1596), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4920), 2, + ACTIONS(1665), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3199), 2, + STATE(3434), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 11, + ACTIONS(1663), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [72298] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4922), 1, - aux_sym__immediate_decimal_token5, - STATE(2347), 1, + STATE(2482), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1854), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 20, + ACTIONS(1852), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200172,21 +205978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72334] = 6, - ACTIONS(3), 1, + [77859] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4924), 1, - anon_sym_DOT, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token5, - STATE(2348), 1, + STATE(2483), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 19, + ACTIONS(1521), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1519), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200200,27 +206001,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [72372] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4928), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(724), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2349), 1, + [77890] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2484), 1, sym_comment, - ACTIONS(1862), 19, - anon_sym_if, + ACTIONS(1525), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1523), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200233,29 +206027,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_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [72412] = 6, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77921] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4930), 1, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3858), 1, + anon_sym_DOLLAR, + ACTIONS(5189), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4932), 1, - aux_sym__immediate_decimal_token5, - STATE(2350), 1, + ACTIONS(5191), 1, + aux_sym__immediate_decimal_token2, + STATE(2485), 1, sym_comment, - ACTIONS(749), 6, + STATE(3393), 1, + sym__immediate_decimal, + ACTIONS(1641), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5049), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3369), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1639), 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, + [77966] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2486), 1, + sym_comment, + ACTIONS(862), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(860), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200267,25 +206091,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_DOT_DOT2, sym__unquoted_pattern, - [72450] = 7, - ACTIONS(3), 1, + [77997] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(5178), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(2487), 1, + sym_comment, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2689), 1, sym_path, - STATE(735), 1, + STATE(2875), 1, sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2351), 1, - sym_comment, - ACTIONS(1878), 19, - anon_sym_if, + ACTIONS(1645), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1647), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200297,30 +206123,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [72490] = 6, + anon_sym_DOT_DOT2, + [78036] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4934), 1, - anon_sym_DOT, - ACTIONS(4936), 1, - aux_sym__immediate_decimal_token5, - STATE(2352), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2488), 1, sym_comment, - ACTIONS(741), 6, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2689), 1, + sym_path, + STATE(2817), 1, + sym_cell_path, + ACTIONS(1444), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(1442), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200332,37 +206154,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_DOT_DOT2, - sym__unquoted_pattern, - [72528] = 12, + [78075] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2489), 1, + sym_comment, + ACTIONS(2958), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2960), 17, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [78106] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4916), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, - aux_sym__immediate_decimal_token2, - STATE(2353), 1, + ACTIONS(5164), 1, + aux_sym__immediate_decimal_token5, + STATE(2490), 1, sym_comment, - STATE(2894), 1, - sym__immediate_decimal, - ACTIONS(1631), 2, - ts_builtin_sym_end, + ACTIONS(1744), 4, sym__space, - ACTIONS(4920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3138), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1746), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200374,47 +206206,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, - [72578] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4882), 1, - aux_sym__immediate_decimal_token5, - STATE(2354), 1, - sym_comment, - ACTIONS(739), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 20, + [78139] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2491), 1, + sym_comment, + ACTIONS(741), 7, ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [72614] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2355), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, - ts_builtin_sym_end, + ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200426,39 +206235,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78170] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5197), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5199), 1, + anon_sym_DOT_DOT2, + ACTIONS(5203), 1, sym_filesize_unit, + ACTIONS(5205), 1, sym_duration_unit, - [72647] = 11, + ACTIONS(5207), 1, + sym__unquoted_pattern_in_record, + STATE(2492), 1, + sym_comment, + STATE(4854), 1, + sym__expr_parenthesized_immediate, + ACTIONS(866), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5201), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(886), 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, + [78215] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token2, - STATE(2356), 1, - sym_comment, - STATE(3132), 1, - sym__immediate_decimal, - ACTIONS(1675), 2, - ts_builtin_sym_end, + ACTIONS(886), 1, sym__space, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3125), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 11, + ACTIONS(4203), 1, + anon_sym_DOT_DOT2, + ACTIONS(5067), 1, + sym_filesize_unit, + ACTIONS(5069), 1, + sym_duration_unit, + ACTIONS(5071), 1, + sym__unquoted_pattern, + STATE(2493), 1, + sym_comment, + ACTIONS(4205), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200470,24 +206301,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, - [72694] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [78256] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4942), 1, - anon_sym_DOT, - ACTIONS(4944), 1, + ACTIONS(5209), 1, aux_sym__immediate_decimal_token5, - STATE(2357), 1, + STATE(2494), 1, sym_comment, - ACTIONS(741), 7, - ts_builtin_sym_end, + ACTIONS(1852), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 13, + ACTIONS(1854), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200499,33 +206327,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [72731] = 11, + [78289] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token2, - STATE(2358), 1, + ACTIONS(5211), 1, + anon_sym_DOT, + ACTIONS(5213), 1, + aux_sym__immediate_decimal_token5, + STATE(2495), 1, sym_comment, - STATE(3195), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, + ACTIONS(1744), 5, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3182), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1746), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200537,22 +206358,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, - [72778] = 7, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78324] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_QMARK2, - ACTIONS(4948), 1, - anon_sym_BANG, - STATE(784), 1, - sym__path_suffix, - STATE(2359), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern, + ACTIONS(5215), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token5, + STATE(2496), 1, sym_comment, - ACTIONS(1446), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 17, - ts_builtin_sym_end, + ACTIONS(1770), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200564,22 +206383,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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [72817] = 5, + anon_sym_LPAREN2, + [78359] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token5, - STATE(2360), 1, + STATE(2497), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 19, + ACTIONS(1564), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200591,99 +206407,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [72852] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4950), 1, - sym__entry_separator, - STATE(2361), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 19, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [72887] = 7, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [78388] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4955), 1, - anon_sym_GT2, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2362), 1, + STATE(2498), 1, sym_comment, - ACTIONS(4953), 18, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [72926] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(1529), 3, sym__space, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(4961), 1, - anon_sym_DOT_DOT2, - ACTIONS(4965), 1, - sym_filesize_unit, - ACTIONS(4967), 1, - sym_duration_unit, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2363), 1, - sym_comment, - STATE(4625), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4963), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 13, + ACTIONS(1527), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200697,23 +206438,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72973] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1681), 1, anon_sym_DOT_DOT2, - ACTIONS(4971), 1, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(932), 1, - sym_cell_path, - STATE(2364), 1, + [78419] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2499), 1, sym_comment, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1679), 17, - ts_builtin_sym_end, + ACTIONS(1498), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200725,25 +206460,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73014] = 6, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [78448] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4973), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4975), 1, - aux_sym__immediate_decimal_token5, - STATE(2365), 1, + STATE(2500), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 18, - ts_builtin_sym_end, + ACTIONS(1549), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200755,23 +206486,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73051] = 5, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [78477] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4977), 1, - aux_sym__immediate_decimal_token5, - STATE(2366), 1, - sym_comment, - ACTIONS(1804), 2, + ACTIONS(5219), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 19, + STATE(2501), 1, + sym_comment, + ACTIONS(5221), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2110), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200788,26 +206521,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73086] = 8, + [78509] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - anon_sym_DOT_DOT2, - ACTIONS(4971), 1, + ACTIONS(5223), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(2502), 1, + sym_comment, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2871), 1, sym_path, - STATE(935), 1, + STATE(2943), 1, sym_cell_path, - STATE(2367), 1, + ACTIONS(1442), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1444), 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, + [78547] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5227), 1, + anon_sym_DOT_DOT2, + STATE(2503), 1, sym_comment, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1641), 17, - ts_builtin_sym_end, + ACTIONS(5229), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5225), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200819,29 +206573,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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73127] = 6, + [78579] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4979), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4981), 1, + ACTIONS(5213), 1, aux_sym__immediate_decimal_token5, - STATE(2368), 1, + STATE(2504), 1, sym_comment, - ACTIONS(749), 7, + ACTIONS(1744), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 13, + ACTIONS(1746), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200855,20 +206605,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [73164] = 6, + [78611] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4983), 1, + ACTIONS(5231), 1, anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(5233), 1, aux_sym__immediate_decimal_token5, - STATE(2369), 1, + STATE(2505), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1746), 4, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 18, - ts_builtin_sym_end, + sym__unquoted_pattern_in_record, + ACTIONS(1744), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78645] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2506), 1, + sym_comment, + ACTIONS(5235), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200880,59 +206651,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73201] = 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [78673] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1663), 1, - anon_sym_QMARK2, - ACTIONS(1665), 1, - anon_sym_BANG, - STATE(2370), 1, - sym_comment, - STATE(2496), 1, - sym__path_suffix, - ACTIONS(4989), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4987), 17, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(5237), 1, anon_sym_DOT2, - [73240] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4936), 1, - aux_sym__immediate_decimal_token5, - STATE(2371), 1, + STATE(720), 1, + sym_path, + STATE(1296), 1, + sym_cell_path, + STATE(2414), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2507), 1, sym_comment, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(1896), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200944,192 +206684,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [73275] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - ACTIONS(4991), 1, - anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2372), 1, - sym_comment, - ACTIONS(4953), 18, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73314] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - ACTIONS(4993), 1, - anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2373), 1, - sym_comment, - ACTIONS(4953), 18, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73353] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78709] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4995), 1, - anon_sym_QMARK2, - ACTIONS(4997), 1, - anon_sym_BANG, - STATE(2374), 1, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2508), 1, sym_comment, - STATE(2476), 1, - sym__path_suffix, - ACTIONS(1446), 3, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2871), 1, + sym_path, + STATE(2915), 1, + sym_cell_path, + ACTIONS(1659), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 16, + ACTIONS(1657), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73392] = 4, + [78747] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2375), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 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, - [73425] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - ACTIONS(4999), 1, - anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2376), 1, - sym_comment, - ACTIONS(4953), 18, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73464] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token2, - STATE(2377), 1, + STATE(2509), 1, sym_comment, - STATE(3111), 1, - sym__immediate_decimal, - ACTIONS(1667), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3110), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1669), 11, + ACTIONS(5239), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201139,55 +206733,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_GT_PIPE, anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [73511] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5001), 1, - anon_sym_DOT, - ACTIONS(5003), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5005), 1, - aux_sym__immediate_decimal_token2, - STATE(2378), 1, - sym_comment, - STATE(2637), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2913), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, anon_sym_DASH_DASH, - [73562] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + [78775] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2379), 1, - sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, + ACTIONS(1746), 1, sym__unquoted_pattern, - ACTIONS(851), 20, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + aux_sym__immediate_decimal_token5, + STATE(2510), 1, + sym_comment, + ACTIONS(1744), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201204,25 +206770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73595] = 5, - ACTIONS(103), 1, + [78809] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5009), 1, - aux_sym__immediate_decimal_token5, - STATE(2380), 1, + ACTIONS(5247), 1, + anon_sym_LT, + STATE(2511), 1, sym_comment, - ACTIONS(773), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 15, + ACTIONS(5245), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201234,35 +206790,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [73630] = 11, - ACTIONS(103), 1, + [78839] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token2, - STATE(2381), 1, + ACTIONS(5249), 1, + anon_sym_LT, + STATE(2512), 1, sym_comment, - STATE(3121), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3112), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 11, + ACTIONS(5245), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201274,23 +206816,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, - [73677] = 8, - ACTIONS(3), 1, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [78869] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1432), 1, - anon_sym_DOT_DOT2, - ACTIONS(4971), 1, - anon_sym_DOT2, - STATE(453), 1, - sym_cell_path, - STATE(783), 1, - sym_path, - STATE(2382), 1, + STATE(2513), 1, sym_comment, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 17, + ACTIONS(1529), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1527), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201302,38 +206844,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73718] = 12, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78899] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5013), 1, - aux_sym__immediate_decimal_token2, - STATE(2383), 1, + STATE(2514), 1, sym_comment, - STATE(2994), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, + ACTIONS(860), 6, sym_identifier, anon_sym_DASH2, - ACTIONS(5015), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3221), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 9, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(862), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -201341,110 +206868,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [73766] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5019), 1, - aux_sym__immediate_decimal_token5, - STATE(2384), 1, - sym_comment, - ACTIONS(1726), 4, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 15, + [78929] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5251), 1, + anon_sym_QMARK2, + ACTIONS(5253), 1, + anon_sym_BANG, + STATE(2515), 1, + sym_comment, + STATE(2876), 1, + sym__path_suffix, + ACTIONS(1456), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1458), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [73802] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78965] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2385), 1, - sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 19, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73834] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5021), 1, - sym__newline, - STATE(2386), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3738), 16, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [73868] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1458), 1, - anon_sym_DOT_DOT2, - ACTIONS(4971), 1, + ACTIONS(5178), 1, anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(2387), 1, + STATE(2516), 1, sym_comment, - STATE(2407), 1, + STATE(2541), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 17, + STATE(2689), 1, + sym_path, + ACTIONS(1506), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1504), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201456,29 +206931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73906] = 8, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + [79001] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2388), 1, + STATE(2517), 1, sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2615), 1, - sym_cell_path, - ACTIONS(1641), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 14, + ACTIONS(5255), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201490,24 +206950,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [73946] = 7, + [79029] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2389), 1, + STATE(2518), 1, sym_comment, - STATE(2417), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(5028), 2, + ACTIONS(5259), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5026), 16, + ACTIONS(5257), 17, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -201524,16 +206982,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [73984] = 4, - ACTIONS(3), 1, + anon_sym_DOT2, + [79059] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2390), 1, + ACTIONS(5261), 1, + anon_sym_QMARK2, + STATE(2519), 1, sym_comment, - ACTIONS(1514), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1516), 19, - ts_builtin_sym_end, + ACTIONS(1450), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1448), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201545,26 +207006,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74016] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [79091] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2391), 1, + ACTIONS(5237), 1, + anon_sym_DOT2, + STATE(720), 1, + sym_path, + STATE(1338), 1, + sym_cell_path, + STATE(2414), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2520), 1, sym_comment, - ACTIONS(851), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(849), 15, + ACTIONS(1900), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201576,62 +207036,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [74048] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79127] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5003), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern, + ACTIONS(5263), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5005), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5030), 1, - anon_sym_DOT, - STATE(2392), 1, - sym_comment, - STATE(2909), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2906), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 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, - [74096] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4944), 1, + ACTIONS(5265), 1, aux_sym__immediate_decimal_token5, - STATE(2393), 1, + STATE(2521), 1, sym_comment, - ACTIONS(741), 7, + ACTIONS(1770), 16, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201643,26 +207063,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, - sym__unquoted_pattern, - [74130] = 8, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [79161] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5237), 1, anon_sym_DOT2, - STATE(2394), 1, - sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(720), 1, sym_path, - STATE(2627), 1, + STATE(1275), 1, sym_cell_path, - ACTIONS(1434), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1432), 14, + STATE(2414), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2522), 1, + sym_comment, + ACTIONS(1862), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201674,56 +207093,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [74170] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - ACTIONS(5034), 1, - aux_sym__immediate_decimal_token5, - STATE(2395), 1, - sym_comment, - ACTIONS(739), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(741), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74206] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79197] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5036), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5038), 1, - aux_sym__immediate_decimal_token5, - STATE(2396), 1, + STATE(2523), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(771), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(749), 13, + ACTIONS(773), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -201737,30 +207122,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74242] = 11, + [79227] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(5040), 1, - anon_sym_DOT_DOT2, - ACTIONS(5044), 1, - sym_filesize_unit, - ACTIONS(5046), 1, - sym_duration_unit, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(2397), 1, + ACTIONS(5261), 1, + anon_sym_BANG, + STATE(2524), 1, sym_comment, - STATE(4725), 1, - sym__expr_parenthesized_immediate, - ACTIONS(968), 2, - ts_builtin_sym_end, + ACTIONS(1450), 3, sym__space, - ACTIONS(5042), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 11, + ACTIONS(1448), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201772,15 +207145,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, - [74288] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [79259] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2398), 1, + ACTIONS(5237), 1, + anon_sym_DOT2, + STATE(720), 1, + sym_path, + STATE(1316), 1, + sym_cell_path, + STATE(2414), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2525), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 19, + ACTIONS(1888), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201792,30 +207175,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74320] = 5, - ACTIONS(103), 1, + [79295] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5050), 1, - aux_sym__immediate_decimal_token5, - STATE(2399), 1, + ACTIONS(5237), 1, + anon_sym_DOT2, + STATE(720), 1, + sym_path, + STATE(1273), 1, + sym_cell_path, + STATE(2414), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2526), 1, sym_comment, - ACTIONS(773), 7, + ACTIONS(1882), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201827,17 +207204,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_DOT_DOT2, - sym__unquoted_pattern, - [74354] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79331] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2400), 1, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2527), 1, sym_comment, - ACTIONS(1804), 2, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2871), 1, + sym_path, + STATE(2927), 1, + sym_cell_path, + ACTIONS(1647), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1645), 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, + [79369] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4203), 1, anon_sym_DOT_DOT2, + ACTIONS(5156), 1, + sym_filesize_unit, + ACTIONS(5158), 1, + sym_duration_unit, + ACTIONS(5160), 1, sym__unquoted_pattern, - ACTIONS(1802), 19, + STATE(2528), 1, + sym_comment, + ACTIONS(886), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4205), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201849,23 +207268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74386] = 4, + [79409] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2401), 1, - sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, + ACTIONS(1854), 1, sym__unquoted_pattern, - ACTIONS(1870), 19, + ACTIONS(5267), 1, + aux_sym__immediate_decimal_token5, + STATE(2529), 1, + sym_comment, + ACTIONS(1852), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201883,48 +207295,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74418] = 6, - ACTIONS(103), 1, + [79441] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2402), 1, - sym_comment, - ACTIONS(4953), 18, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(93), 1, anon_sym_SQUOTE, + ACTIONS(95), 1, anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [74454] = 4, - ACTIONS(3), 1, + ACTIONS(97), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(5269), 1, + anon_sym_LPAREN, + ACTIONS(5271), 1, + anon_sym_DOLLAR, + ACTIONS(5273), 1, + sym__unquoted_naive, + STATE(1306), 1, + sym__inter_single_quotes, + STATE(1317), 1, + sym__inter_double_quotes, + STATE(2530), 1, + sym_comment, + STATE(502), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3502), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [79493] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2403), 1, + STATE(2531), 1, sym_comment, - ACTIONS(1474), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1476), 19, + ACTIONS(1537), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1535), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201936,29 +207354,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT2, anon_sym_QMARK2, anon_sym_BANG, - [74486] = 7, + anon_sym_DOT2, + [79523] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5052), 1, - anon_sym_QMARK2, - ACTIONS(5054), 1, - anon_sym_BANG, - STATE(2404), 1, + STATE(2532), 1, sym_comment, - STATE(2566), 1, - sym__path_suffix, - ACTIONS(1448), 3, + ACTIONS(1541), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 15, + ACTIONS(1539), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201970,22 +207380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [74524] = 5, + [79553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4985), 1, - aux_sym__immediate_decimal_token5, - STATE(2405), 1, + STATE(2533), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 18, - ts_builtin_sym_end, + ACTIONS(5275), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201997,27 +207402,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74558] = 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [79581] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5056), 1, - anon_sym_DOT_DOT2, - STATE(2406), 1, + ACTIONS(5277), 1, + anon_sym_DOT2, + STATE(2293), 1, + sym_cell_path, + STATE(2500), 1, + sym_path, + STATE(2534), 1, sym_comment, - ACTIONS(5058), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 16, + STATE(2608), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1444), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202029,25 +207435,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74596] = 6, + [79617] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(974), 1, + sym_raw_string_begin, + ACTIONS(3335), 1, + anon_sym_DQUOTE, + ACTIONS(3337), 1, + anon_sym_SQUOTE, + ACTIONS(3339), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3343), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3705), 1, + anon_sym_LPAREN, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(5279), 1, + sym__unquoted_naive, + STATE(2535), 1, + sym_comment, + STATE(3340), 1, + sym__inter_single_quotes, + STATE(3342), 1, + sym__inter_double_quotes, + STATE(2554), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3320), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [79669] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1524), 1, + ACTIONS(5227), 1, anon_sym_DOT_DOT2, - ACTIONS(5060), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(2407), 2, + STATE(2536), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 17, - ts_builtin_sym_end, + ACTIONS(5229), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5225), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202059,21 +207497,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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74632] = 4, - ACTIONS(3), 1, + [79701] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2408), 1, + STATE(2537), 1, sym_comment, - ACTIONS(1466), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1468), 19, - ts_builtin_sym_end, + ACTIONS(1770), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1772), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202085,28 +207524,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74664] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [79731] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5063), 1, - anon_sym_DOT_DOT2, - STATE(2409), 1, + ACTIONS(5237), 1, + anon_sym_DOT2, + STATE(720), 1, + sym_path, + STATE(1307), 1, + sym_cell_path, + STATE(2414), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2538), 1, sym_comment, - ACTIONS(5065), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 16, + ACTIONS(1912), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202118,24 +207554,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74702] = 4, - ACTIONS(103), 1, + [79767] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2410), 1, + STATE(2539), 1, sym_comment, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(5281), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202147,20 +207575,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [74734] = 4, - ACTIONS(3), 1, + [79795] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2411), 1, - sym_comment, - ACTIONS(1470), 2, + ACTIONS(1973), 1, + sym__space, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(5283), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1472), 19, - ts_builtin_sym_end, + STATE(2540), 1, + sym_comment, + ACTIONS(5285), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1975), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202172,31 +207610,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74766] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [79833] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5287), 1, anon_sym_DOT2, - STATE(2412), 1, + STATE(2689), 1, + sym_path, + STATE(2541), 2, sym_comment, - STATE(2430), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2601), 1, - sym_cell_path, - ACTIONS(1679), 3, + ACTIONS(1510), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 14, + ACTIONS(1508), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202208,23 +207639,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [74806] = 7, - ACTIONS(3), 1, + [79867] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(930), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2413), 1, + STATE(2542), 1, sym_comment, - ACTIONS(1882), 17, + ACTIONS(1852), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1854), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202237,25 +207663,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74844] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [79897] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(923), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2414), 1, + STATE(2543), 1, sym_comment, - ACTIONS(1850), 17, + ACTIONS(1870), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1872), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202268,25 +207689,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74882] = 7, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [79927] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(936), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2415), 1, + ACTIONS(5227), 1, + anon_sym_DOT_DOT2, + STATE(2544), 1, sym_comment, - ACTIONS(1858), 17, + ACTIONS(5229), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5225), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202299,25 +207715,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74920] = 7, + [79959] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(899), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2416), 1, + ACTIONS(1746), 1, + sym__unquoted_pattern, + ACTIONS(5187), 1, + aux_sym__immediate_decimal_token5, + STATE(2545), 1, sym_comment, - ACTIONS(1866), 17, + ACTIONS(1744), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202330,69 +207741,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74958] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(420), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(2417), 1, - sym_comment, - ACTIONS(5069), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5067), 16, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - [74996] = 12, + anon_sym_LPAREN2, + [79991] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5011), 1, + ACTIONS(5290), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5013), 1, - aux_sym__immediate_decimal_token2, - STATE(2418), 1, + ACTIONS(5292), 1, + aux_sym__immediate_decimal_token5, + STATE(2546), 1, sym_comment, - STATE(2991), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, + ACTIONS(1772), 4, sym_identifier, anon_sym_DASH2, - ACTIONS(5015), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3351), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 9, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1770), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -202400,47 +207768,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [75044] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5071), 1, - aux_sym__immediate_decimal_token5, - STATE(2419), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 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, - [75078] = 4, + [80025] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2420), 1, + STATE(2547), 1, sym_comment, - ACTIONS(1478), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1480), 19, - ts_builtin_sym_end, + ACTIONS(5294), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202452,26 +207792,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [75110] = 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [80053] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2421), 1, + STATE(2548), 1, sym_comment, - ACTIONS(773), 6, + ACTIONS(1525), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 15, + ACTIONS(1523), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202483,20 +207821,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75142] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80083] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2422), 1, - sym_comment, - ACTIONS(1543), 2, + ACTIONS(5227), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1545), 19, - ts_builtin_sym_end, + STATE(2549), 1, + sym_comment, + ACTIONS(5229), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1713), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202508,28 +207847,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + 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, - anon_sym_QMARK2, - anon_sym_BANG, - [75174] = 6, - ACTIONS(103), 1, + [80115] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(5298), 1, + anon_sym_EQ, + ACTIONS(5300), 1, + sym__newline, + ACTIONS(5302), 1, + anon_sym_COLON, + ACTIONS(5304), 1, + anon_sym_LPAREN, + ACTIONS(5306), 1, + anon_sym_DASH2, + STATE(2550), 1, + sym_comment, + STATE(2707), 1, + sym_flag_capsule, + STATE(2709), 1, + aux_sym_parameter_repeat1, + STATE(3541), 1, + aux_sym_parameter_repeat2, + STATE(4242), 1, + aux_sym__repeat_newline, + STATE(3398), 2, + sym_param_type, + sym_param_value, + ACTIONS(5296), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [80165] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(856), 1, + sym_raw_string_begin, + ACTIONS(3130), 1, + anon_sym_DQUOTE, + ACTIONS(3132), 1, + anon_sym_SQUOTE, + ACTIONS(3134), 1, + anon_sym_BQUOTE, + ACTIONS(3136), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3138), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(5308), 1, + sym__unquoted_naive, + STATE(2551), 1, + sym_comment, + STATE(3094), 1, + sym__inter_single_quotes, + STATE(3095), 1, + sym__inter_double_quotes, + STATE(2483), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3085), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [80217] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5073), 1, - anon_sym_DOT, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - STATE(2423), 1, + ACTIONS(5310), 1, + anon_sym_DOT_DOT2, + STATE(2552), 1, sym_comment, - ACTIONS(1736), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(5312), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 15, + ACTIONS(2154), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202543,18 +207949,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75210] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80249] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2424), 1, - sym_comment, - ACTIONS(1872), 2, + ACTIONS(5314), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 18, - ts_builtin_sym_end, + STATE(2553), 1, + sym_comment, + ACTIONS(5316), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2102), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202566,31 +207974,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75241] = 8, + [80281] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2425), 1, + STATE(2554), 1, sym_comment, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2701), 1, - sym_cell_path, - ACTIONS(1434), 4, + ACTIONS(1521), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1432), 12, + ACTIONS(1519), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202603,20 +208002,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [75280] = 4, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80311] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2426), 1, + ACTIONS(5318), 1, + anon_sym_DOT_DOT2, + STATE(2555), 1, sym_comment, - ACTIONS(851), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(5320), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(849), 13, + ACTIONS(2118), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202628,101 +208027,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75311] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2427), 1, - sym_comment, - STATE(3279), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3275), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 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, - [75356] = 11, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80343] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1788), 1, + anon_sym_LPAREN, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(5322), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2428), 1, + ACTIONS(5324), 1, + sym__unquoted_naive, + STATE(749), 1, + sym__inter_single_quotes, + STATE(750), 1, + sym__inter_double_quotes, + STATE(2556), 1, sym_comment, - STATE(3304), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3285), 2, - sym__expr_parenthesized_immediate, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3277), 4, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1671), 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, - [75401] = 11, + sym_val_string, + sym_val_interpolated, + [80395] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2429), 1, + STATE(2557), 1, sym_comment, - STATE(3220), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, + ACTIONS(739), 6, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3305), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 9, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(741), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -202730,54 +208089,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [75446] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - sym_comment, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - ACTIONS(1460), 3, - sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1458), 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, - [75483] = 6, + [80425] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5083), 1, - anon_sym_DOT, - ACTIONS(5085), 1, + ACTIONS(5326), 1, aux_sym__immediate_decimal_token5, - STATE(2431), 1, + STATE(2558), 1, sym_comment, - ACTIONS(1736), 5, + ACTIONS(1852), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 13, + ACTIONS(1854), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202791,25 +208122,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75518] = 8, + [80457] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2432), 1, - sym_comment, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2756), 1, - sym_cell_path, - ACTIONS(1679), 4, - ts_builtin_sym_end, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1956), 1, sym__space, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(5328), 1, + anon_sym_DOT_DOT2, + STATE(2559), 1, + sym_comment, + ACTIONS(5330), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 12, + ACTIONS(1958), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202821,23 +208150,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [75557] = 7, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [80495] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5087), 1, - anon_sym_DOT_DOT2, - STATE(2433), 1, + STATE(2560), 1, sym_comment, - ACTIONS(5089), 2, + ACTIONS(1533), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 15, - ts_builtin_sym_end, + ACTIONS(1531), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202849,24 +208174,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_and2, - anon_sym_xor2, - anon_sym_or2, - [75594] = 6, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80525] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5091), 1, + ACTIONS(1896), 1, + sym__space, + ACTIONS(5114), 1, anon_sym_DOT2, - STATE(2542), 1, - sym_path, - STATE(2434), 2, - sym_comment, + STATE(2466), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1524), 14, + STATE(2561), 1, + sym_comment, + STATE(2583), 1, + sym_path, + STATE(3065), 1, + sym_cell_path, + ACTIONS(1898), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202880,19 +208207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [75629] = 6, + [80562] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, sym__unquoted_pattern, - ACTIONS(5094), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5096), 1, - aux_sym__immediate_decimal_token5, - STATE(2435), 1, + STATE(2562), 1, sym_comment, - ACTIONS(1726), 17, + ACTIONS(1973), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202909,23 +208233,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [75664] = 7, + [80593] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - ACTIONS(5098), 1, - anon_sym_DOT_DOT2, - STATE(2436), 1, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(2563), 1, sym_comment, - ACTIONS(5100), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 15, - ts_builtin_sym_end, + ACTIONS(2541), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202937,53 +208254,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, - [75701] = 11, + [80624] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(1724), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2437), 1, + STATE(2564), 1, sym_comment, - STATE(3347), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3345), 2, + STATE(4802), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 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, - [75746] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2438), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 18, - ts_builtin_sym_end, + ACTIONS(5332), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202995,53 +208280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75777] = 4, + [80655] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2439), 1, - sym_comment, - ACTIONS(2938), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(2940), 17, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [75808] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2440), 1, + STATE(2565), 1, sym_comment, - ACTIONS(773), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 13, + ACTIONS(5334), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203053,18 +208303,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75839] = 4, - ACTIONS(103), 1, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [80682] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2441), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern, + STATE(2566), 1, sym_comment, - ACTIONS(1516), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1514), 17, + ACTIONS(1852), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203078,54 +208330,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [75870] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [80711] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5034), 1, - aux_sym__immediate_decimal_token5, - STATE(2442), 1, - sym_comment, - ACTIONS(739), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(741), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(2644), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75903] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5102), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5104), 1, - aux_sym__immediate_decimal_token5, - STATE(2443), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2567), 1, sym_comment, - ACTIONS(1726), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 13, + ACTIONS(2589), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203137,80 +208355,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75938] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5108), 1, - anon_sym_DOT_DOT2, - ACTIONS(5112), 1, - sym_filesize_unit, - ACTIONS(5114), 1, - sym_duration_unit, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, - STATE(2444), 1, - sym_comment, - STATE(4649), 1, - sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5110), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 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, - [75983] = 5, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80742] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_QMARK2, - STATE(2445), 1, + STATE(2568), 1, sym_comment, - ACTIONS(1438), 3, + ACTIONS(1519), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1440), 16, + ACTIONS(1521), 15, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76016] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [80771] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2446), 1, - sym_comment, - ACTIONS(1545), 3, + ACTIONS(1882), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1543), 17, + ACTIONS(5114), 1, + anon_sym_DOT2, + STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2569), 1, + sym_comment, + STATE(2583), 1, + sym_path, + STATE(3033), 1, + sym_cell_path, + ACTIONS(1885), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203224,22 +208414,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76047] = 6, + [80808] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1872), 1, sym__unquoted_pattern, - ACTIONS(5120), 1, - anon_sym_DOT, - ACTIONS(5122), 1, - aux_sym__immediate_decimal_token5, - STATE(2447), 1, + STATE(2570), 1, sym_comment, - ACTIONS(1736), 17, + ACTIONS(1870), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203257,25 +208439,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [76082] = 9, - ACTIONS(103), 1, + [80837] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(4965), 1, - sym_filesize_unit, - ACTIONS(4967), 1, - sym_duration_unit, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2448), 1, + ACTIONS(5336), 1, + anon_sym_DOT2, + STATE(2571), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 13, + STATE(2710), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2936), 1, + sym_path, + STATE(3106), 1, + sym_cell_path, + ACTIONS(1444), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + [80872] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2572), 1, + sym_comment, + ACTIONS(5338), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203287,21 +208485,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_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - [76123] = 5, + [80899] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5124), 1, - aux_sym__immediate_decimal_token5, - STATE(2449), 1, - sym_comment, - ACTIONS(1802), 4, + ACTIONS(5114), 1, + anon_sym_DOT2, + ACTIONS(5342), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 15, + STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2573), 1, + sym_comment, + STATE(2583), 1, + sym_path, + STATE(3165), 1, + sym_cell_path, + ACTIONS(5340), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203315,22 +208520,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76156] = 4, + [80936] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2450), 1, + STATE(2574), 1, sym_comment, - ACTIONS(749), 7, + ACTIONS(1870), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 13, + ACTIONS(1872), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203344,16 +208545,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76187] = 4, + [80965] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2451), 1, + STATE(2575), 1, sym_comment, - ACTIONS(1472), 3, + ACTIONS(1498), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 17, + ACTIONS(1496), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203368,24 +208569,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, + anon_sym_DOT2, + [80994] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2576), 1, + sym_comment, + ACTIONS(1521), 18, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [76218] = 5, + [81021] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5344), 1, + anon_sym_DOT, + ACTIONS(5346), 1, + aux_sym__immediate_decimal_token5, + STATE(2577), 1, + sym_comment, + ACTIONS(1744), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1746), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [81054] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5126), 1, + ACTIONS(1746), 1, + sym__unquoted_pattern, + ACTIONS(5243), 1, aux_sym__immediate_decimal_token5, - STATE(2452), 1, + STATE(2578), 1, sym_comment, - ACTIONS(771), 6, + ACTIONS(1744), 16, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81085] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5233), 1, + aux_sym__immediate_decimal_token5, + STATE(2579), 1, + sym_comment, + ACTIONS(1746), 4, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(773), 13, + ACTIONS(1744), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -203399,15 +208673,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76251] = 4, + [81116] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2453), 1, + STATE(2580), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(5348), 18, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81143] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5350), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 18, + STATE(2581), 1, + sym_comment, + ACTIONS(5352), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5225), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203423,19 +208723,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76282] = 4, + [81174] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2582), 1, + sym_comment, + ACTIONS(5245), 18, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81201] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2454), 1, + STATE(2583), 1, sym_comment, - ACTIONS(1480), 3, + ACTIONS(1549), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1478), 17, + ACTIONS(1547), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203450,26 +208771,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, + anon_sym_DOT2, + [81230] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2584), 1, + sym_comment, + ACTIONS(1525), 18, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [76313] = 7, + [81257] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5128), 1, - anon_sym_QMARK2, - ACTIONS(5130), 1, - anon_sym_BANG, - STATE(2455), 1, + STATE(2585), 1, sym_comment, - STATE(2609), 1, - sym__path_suffix, - ACTIONS(1448), 4, + ACTIONS(1770), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 13, + ACTIONS(1772), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203482,26 +208820,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [81286] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2586), 1, + sym_comment, + ACTIONS(1529), 18, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [76350] = 8, - ACTIONS(103), 1, + [81313] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5030), 1, anon_sym_DOT2, - STATE(2456), 1, - sym_comment, - STATE(2489), 1, + STATE(2459), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2500), 1, sym_path, - STATE(2761), 1, + STATE(2587), 1, + sym_comment, + STATE(3055), 1, sym_cell_path, - ACTIONS(1641), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 12, + ACTIONS(5354), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203513,17 +208871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [76389] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [81348] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2457), 1, + ACTIONS(5350), 1, + anon_sym_DOT_DOT2, + STATE(2588), 1, sym_comment, - ACTIONS(1468), 3, - sym__space, + ACTIONS(5352), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 17, + ACTIONS(5225), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203535,22 +208896,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76420] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81379] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2458), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(5356), 1, + anon_sym_DOT_DOT2, + STATE(2589), 1, sym_comment, - ACTIONS(1476), 3, + ACTIONS(1956), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(5358), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1474), 17, + ACTIONS(1958), 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, + [81416] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(2590), 1, + sym_comment, + ACTIONS(2648), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203564,22 +208951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76451] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81447] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2164), 1, - anon_sym_BANG, - STATE(2459), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2591), 1, sym_comment, - ACTIONS(1438), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 17, - ts_builtin_sym_end, + STATE(4802), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5332), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203591,24 +208975,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76484] = 5, + [81478] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - STATE(2460), 1, - sym_comment, - ACTIONS(1736), 4, + ACTIONS(1888), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 15, + ACTIONS(5114), 1, + anon_sym_DOT2, + STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2583), 1, + sym_path, + STATE(2592), 1, + sym_comment, + STATE(3077), 1, + sym_cell_path, + ACTIONS(1890), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203622,47 +209009,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76517] = 5, + [81515] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_BANG, - STATE(2461), 1, + STATE(2593), 1, sym_comment, - ACTIONS(1438), 3, + ACTIONS(1531), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1440), 16, + ACTIONS(1533), 15, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76550] = 4, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [81544] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2462), 1, + STATE(2594), 1, sym_comment, - ACTIONS(1545), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1543), 15, + ACTIONS(1533), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203674,21 +209052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [76580] = 4, - ACTIONS(103), 1, + [81571] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2463), 1, + STATE(2595), 1, sym_comment, - ACTIONS(1476), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1474), 15, + ACTIONS(1537), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203700,58 +209076,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [76610] = 15, + [81598] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, - anon_sym_LPAREN, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(5132), 1, - sym__unquoted_naive, - STATE(2464), 1, + STATE(2596), 1, sym_comment, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2967), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [76662] = 4, - ACTIONS(103), 1, + ACTIONS(4790), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4792), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4794), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4788), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [81631] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2465), 1, + ACTIONS(5360), 1, + anon_sym_QMARK2, + ACTIONS(5362), 1, + anon_sym_BANG, + STATE(2597), 1, sym_comment, - ACTIONS(1516), 4, + STATE(2969), 1, + sym__path_suffix, + ACTIONS(1458), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1514), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203763,25 +209134,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, + anon_sym_COLON, anon_sym_DOT2, - [76692] = 7, - ACTIONS(3), 1, + [81664] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(1862), 1, + sym__space, + ACTIONS(5114), 1, anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1274), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2583), 1, + sym_path, + STATE(2598), 1, sym_comment, - ACTIONS(1866), 15, - ts_builtin_sym_end, + STATE(3204), 1, + sym_cell_path, + ACTIONS(1864), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203793,56 +209163,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [76728] = 14, + anon_sym_RPAREN, + anon_sym_RBRACE, + [81701] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, + STATE(2599), 1, + sym_comment, + ACTIONS(5364), 18, anon_sym_EQ, - ACTIONS(5140), 1, sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5144), 1, - anon_sym_LPAREN, - ACTIONS(5146), 1, - anon_sym_DASH2, - STATE(2467), 1, - sym_comment, - STATE(2621), 1, - sym_flag_capsule, - STATE(2623), 1, - aux_sym_parameter_repeat1, - STATE(3374), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5136), 7, - sym_identifier, + 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_DASH_GT, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [76778] = 4, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81728] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2468), 1, - sym_comment, - ACTIONS(1726), 4, + ACTIONS(1912), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 15, + ACTIONS(5114), 1, + anon_sym_DOT2, + STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2583), 1, + sym_path, + STATE(2600), 1, + sym_comment, + STATE(3132), 1, + sym_cell_path, + ACTIONS(1914), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203856,28 +209218,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76808] = 9, - ACTIONS(103), 1, + [81765] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(5044), 1, - sym_filesize_unit, - ACTIONS(5046), 1, - sym_duration_unit, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(2469), 1, + ACTIONS(5366), 1, + aux_sym__immediate_decimal_token5, + STATE(2601), 1, sym_comment, - ACTIONS(968), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4141), 2, + ACTIONS(1854), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1852), 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, - ACTIONS(868), 11, + [81796] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2602), 1, + sym_comment, + ACTIONS(1541), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203889,21 +209262,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, - [76848] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5134), 1, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1292), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2470), 1, + [81823] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2603), 1, sym_comment, - ACTIONS(1850), 15, - ts_builtin_sym_end, + ACTIONS(1564), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1562), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203915,19 +209289,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, - [76884] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [81852] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(1854), 1, sym__unquoted_pattern, - ACTIONS(5148), 1, + ACTIONS(5368), 1, aux_sym__immediate_decimal_token5, - STATE(2471), 1, + STATE(2604), 1, sym_comment, - ACTIONS(1802), 17, + ACTIONS(1852), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203939,23 +209315,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, - [76916] = 4, - ACTIONS(103), 1, + [81883] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2472), 1, + ACTIONS(5350), 1, + anon_sym_DOT_DOT2, + STATE(2605), 1, sym_comment, - ACTIONS(1480), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5352), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1478), 15, + ACTIONS(1713), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203967,51 +209342,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_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76946] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81914] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2473), 1, + STATE(2606), 1, sym_comment, - ACTIONS(849), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(851), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76976] = 7, + ACTIONS(4760), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4762), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4764), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4756), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [81947] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1272), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2474), 1, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(2607), 1, sym_comment, - ACTIONS(1858), 15, - ts_builtin_sym_end, + ACTIONS(2525), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204023,20 +209391,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, - [77012] = 5, + anon_sym_LPAREN2, + [81976] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2475), 1, + ACTIONS(5277), 1, + anon_sym_DOT2, + STATE(2500), 1, + sym_path, + STATE(2608), 1, sym_comment, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + STATE(2609), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1506), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204048,52 +209421,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, - [77044] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2476), 1, - sym_comment, - ACTIONS(1520), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1522), 16, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77074] = 7, + anon_sym_RBRACE, + [82009] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(5370), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(2500), 1, sym_path, - STATE(1273), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2477), 1, + STATE(2609), 2, sym_comment, - ACTIONS(1862), 15, - ts_builtin_sym_end, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204105,20 +209447,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, - [77110] = 5, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82040] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2478), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2610), 1, sym_comment, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 16, + ACTIONS(1022), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204135,21 +209476,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77142] = 7, + [82071] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1320), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2479), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2611), 1, sym_comment, - ACTIONS(1882), 15, - ts_builtin_sym_end, + ACTIONS(1030), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204161,22 +209497,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, - [77178] = 6, + [82102] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5156), 1, - anon_sym_DOT, - ACTIONS(5158), 1, - aux_sym__immediate_decimal_token5, - STATE(2480), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2612), 1, sym_comment, - ACTIONS(1736), 16, - ts_builtin_sym_end, + STATE(3084), 1, + sym_cell_path, + ACTIONS(1862), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204188,21 +209528,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [77212] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82137] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2481), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2613), 1, sym_comment, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + ACTIONS(1713), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204219,22 +209556,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77244] = 6, + [82168] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5160), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5162), 1, - aux_sym__immediate_decimal_token5, - STATE(2482), 1, + STATE(2614), 1, sym_comment, - ACTIONS(1728), 4, - sym_identifier, + ACTIONS(1535), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 13, + anon_sym_DOT2, + ACTIONS(1537), 15, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -204244,23 +209577,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77278] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [82197] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2483), 1, + STATE(2615), 1, sym_comment, - ACTIONS(747), 6, - sym_identifier, + ACTIONS(1539), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(749), 13, + anon_sym_DOT2, + ACTIONS(1541), 15, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -204270,94 +209602,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77308] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(5166), 1, - sym__unquoted_naive, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(2484), 1, - sym_comment, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3209), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77360] = 15, + anon_sym_QMARK2, + anon_sym_BANG, + [82226] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(97), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(5168), 1, - anon_sym_LPAREN, - ACTIONS(5170), 1, - anon_sym_DOLLAR, - ACTIONS(5172), 1, - sym__unquoted_naive, - STATE(1325), 1, - sym__inter_single_quotes, - STATE(1326), 1, - sym__inter_double_quotes, - STATE(2485), 1, - sym_comment, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3310), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77412] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2486), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2616), 1, sym_comment, - ACTIONS(1472), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 15, + STATE(4802), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5332), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204369,21 +209627,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_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [77442] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82257] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2487), 1, - sym_comment, - ACTIONS(1870), 4, + ACTIONS(5114), 1, + anon_sym_DOT2, + ACTIONS(5375), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 15, + STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2583), 1, + sym_path, + STATE(2617), 1, + sym_comment, + STATE(3154), 1, + sym_cell_path, + ACTIONS(5373), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204397,53 +209661,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77472] = 6, + [82294] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_DOT, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2488), 1, + STATE(2618), 1, sym_comment, - ACTIONS(1738), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 13, + ACTIONS(5377), 18, anon_sym_EQ, 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_DASH_GT, 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, - [77506] = 7, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [82321] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, + STATE(2619), 1, sym_comment, - STATE(2492), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - ACTIONS(1460), 4, + ACTIONS(1852), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1458), 12, + ACTIONS(1854), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204456,17 +209709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [77542] = 4, - ACTIONS(103), 1, + sym__unquoted_pattern, + [82350] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2490), 1, + STATE(2620), 1, sym_comment, - ACTIONS(1468), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 15, + ACTIONS(5379), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204478,27 +209728,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_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [82377] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5114), 1, anon_sym_DOT2, - [77572] = 8, + ACTIONS(5383), 1, + sym__space, + STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2583), 1, + sym_path, + STATE(2621), 1, + sym_comment, + STATE(3167), 1, + sym_cell_path, + ACTIONS(5381), 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, + [82414] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5223), 1, anon_sym_DOT2, - STATE(2491), 1, + STATE(2622), 1, sym_comment, - STATE(2511), 1, - sym_path, - STATE(2556), 1, + STATE(2626), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2868), 1, - sym_cell_path, - ACTIONS(1643), 2, + STATE(2871), 1, + sym_path, + ACTIONS(1504), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1641), 13, + ACTIONS(1506), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -204512,48 +209791,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77610] = 6, + [82449] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5180), 1, - anon_sym_DOT2, - STATE(2611), 1, - sym_path, - STATE(2492), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1524), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(5385), 1, anon_sym_DOT_DOT2, - [77644] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - STATE(2493), 1, + STATE(2623), 1, sym_comment, - ACTIONS(1736), 5, + ACTIONS(1973), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, + ACTIONS(5387), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 13, + ACTIONS(1975), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204565,25 +209820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77676] = 8, + [82486] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2494), 1, + STATE(2624), 1, sym_comment, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2863), 1, - sym_cell_path, - ACTIONS(1432), 2, + ACTIONS(1523), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1434), 13, + anon_sym_DOT2, + ACTIONS(1525), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -204597,113 +209843,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77714] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(3263), 1, - anon_sym_DQUOTE, - ACTIONS(3265), 1, - anon_sym_SQUOTE, - ACTIONS(3267), 1, - anon_sym_BQUOTE, - ACTIONS(3269), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, - anon_sym_LPAREN, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(5183), 1, - sym__unquoted_naive, - STATE(2495), 1, - sym_comment, - STATE(3091), 1, - sym__inter_single_quotes, - STATE(3098), 1, - sym__inter_double_quotes, - STATE(2472), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3092), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77766] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [82515] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2496), 1, + STATE(2625), 1, sym_comment, - ACTIONS(5187), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5185), 17, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_DOT2, - [77796] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5152), 1, + ACTIONS(1527), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - STATE(2497), 1, - sym_comment, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + anon_sym_DOT2, + ACTIONS(1529), 15, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77828] = 8, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [82544] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5389), 1, anon_sym_DOT2, - STATE(2498), 1, - sym_comment, - STATE(2511), 1, + STATE(2871), 1, sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2900), 1, - sym_cell_path, - ACTIONS(1681), 2, + ACTIONS(1508), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1679), 13, + STATE(2626), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -204717,16 +209897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77866] = 5, - ACTIONS(3), 1, + [82577] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5122), 1, + ACTIONS(5392), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5394), 1, aux_sym__immediate_decimal_token5, - STATE(2499), 1, + STATE(2627), 1, sym_comment, - ACTIONS(1736), 17, + ACTIONS(1770), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1772), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204740,21 +209923,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [77898] = 5, - ACTIONS(3), 1, + sym__unquoted_pattern, + [82610] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5189), 1, - anon_sym_DOT_DOT2, - STATE(2500), 1, + ACTIONS(5396), 1, + anon_sym_BANG, + STATE(2628), 1, sym_comment, - ACTIONS(5191), 2, + ACTIONS(1450), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 16, + ACTIONS(1448), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204766,22 +209948,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77930] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [82641] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5193), 1, + ACTIONS(5398), 1, anon_sym_DOT_DOT2, - STATE(2501), 1, + STATE(2629), 1, sym_comment, - ACTIONS(5195), 2, + ACTIONS(5400), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 16, + ACTIONS(2154), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204793,22 +209973,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, - [77962] = 5, - ACTIONS(3), 1, + [82672] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_DOT_DOT2, - STATE(2502), 1, + ACTIONS(1900), 1, + sym__space, + ACTIONS(5114), 1, + anon_sym_DOT2, + STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2583), 1, + sym_path, + STATE(2630), 1, sym_comment, - ACTIONS(5199), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 16, + STATE(3159), 1, + sym_cell_path, + ACTIONS(1902), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204822,20 +210005,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77994] = 5, + [82709] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5201), 1, + ACTIONS(5402), 1, anon_sym_DOT_DOT2, - STATE(2503), 1, + STATE(2631), 1, sym_comment, - ACTIONS(5203), 2, + ACTIONS(5404), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 16, + ACTIONS(2102), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204847,23 +210028,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78026] = 6, + [82740] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(5205), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5207), 1, - aux_sym__immediate_decimal_token5, - STATE(2504), 1, + ACTIONS(5406), 1, + anon_sym_DOT_DOT2, + STATE(2632), 1, sym_comment, - ACTIONS(1726), 16, + ACTIONS(5408), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2110), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204879,49 +210057,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [78060] = 8, - ACTIONS(103), 1, + [82771] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5209), 1, + ACTIONS(5410), 1, anon_sym_DOT_DOT2, - STATE(2505), 1, - sym_comment, - ACTIONS(5211), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 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, - [78098] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5213), 1, - anon_sym_BANG, - STATE(2506), 1, + STATE(2633), 1, sym_comment, - ACTIONS(1440), 3, - sym__space, + ACTIONS(5412), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 15, + ACTIONS(2118), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204933,79 +210080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78130] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2507), 1, - sym_comment, - ACTIONS(771), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(773), 13, - 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, - [78160] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82802] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2508), 1, - sym_comment, - ACTIONS(1535), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1537), 16, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78190] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(5215), 1, - anon_sym_DOT_DOT2, - STATE(2509), 1, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(2634), 1, sym_comment, - ACTIONS(5217), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 13, + ACTIONS(1956), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205019,71 +210106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78228] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5219), 1, - aux_sym__immediate_decimal_token5, - STATE(2510), 1, - sym_comment, - ACTIONS(1802), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78260] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82833] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2511), 1, - sym_comment, - ACTIONS(1462), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1464), 16, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78290] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5213), 1, - anon_sym_QMARK2, - STATE(2512), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern, + STATE(2635), 1, sym_comment, - ACTIONS(1440), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 15, + ACTIONS(1770), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205097,48 +210130,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78322] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1279), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2513), 1, - sym_comment, - ACTIONS(1878), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78358] = 4, + anon_sym_LPAREN2, + [82862] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2514), 1, - sym_comment, - ACTIONS(1802), 4, + ACTIONS(5114), 1, + anon_sym_DOT2, + ACTIONS(5416), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 15, + STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2583), 1, + sym_path, + STATE(2636), 1, + sym_comment, + STATE(3109), 1, + sym_cell_path, + ACTIONS(5414), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205152,18 +210163,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78388] = 5, + [82899] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2515), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2637), 1, sym_comment, - ACTIONS(1706), 16, + STATE(3081), 1, + sym_cell_path, + ACTIONS(1900), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205177,25 +210191,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78419] = 8, + [82934] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__space, - ACTIONS(5024), 1, + ACTIONS(5114), 1, anon_sym_DOT2, - STATE(2430), 1, + ACTIONS(5420), 1, + sym__space, + STATE(2466), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2516), 1, - sym_comment, - STATE(2542), 1, + STATE(2583), 1, sym_path, - STATE(2932), 1, + STATE(2638), 1, + sym_comment, + STATE(3113), 1, sym_cell_path, - ACTIONS(1860), 13, + ACTIONS(5418), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205209,44 +210220,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78456] = 4, + [82971] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, - anon_sym_DASH2, - STATE(2517), 1, - sym_comment, - ACTIONS(5221), 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, - [78485] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5225), 1, - anon_sym_BANG, - STATE(2518), 1, + ACTIONS(5350), 1, + anon_sym_DOT_DOT2, + STATE(2639), 1, sym_comment, - ACTIONS(1440), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5352), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 13, + ACTIONS(5225), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205258,24 +210243,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78516] = 8, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83002] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__space, - ACTIONS(5024), 1, + ACTIONS(5030), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(2459), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2519), 1, - sym_comment, - STATE(2542), 1, + STATE(2500), 1, sym_path, - STATE(3025), 1, + STATE(2640), 1, + sym_comment, + STATE(3063), 1, sym_cell_path, - ACTIONS(1868), 13, + ACTIONS(1912), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205289,18 +210274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78553] = 5, + [83037] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2520), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(2641), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, - ts_builtin_sym_end, + ACTIONS(2597), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205312,25 +210295,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78584] = 8, + [83068] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5233), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2521), 1, + ACTIONS(5396), 1, + anon_sym_QMARK2, + STATE(2642), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(3003), 1, - sym_cell_path, - ACTIONS(5231), 13, + ACTIONS(1450), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1448), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205342,16 +210324,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, - [78621] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [83099] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(2522), 1, + STATE(2643), 1, sym_comment, - ACTIONS(2501), 17, + ACTIONS(5422), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205363,22 +210344,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [78650] = 5, + [83126] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1772), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2523), 1, + STATE(2644), 1, sym_comment, - ACTIONS(1964), 16, + ACTIONS(1770), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205390,21 +210370,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78681] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2524), 1, + [83154] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2645), 1, sym_comment, - ACTIONS(994), 16, + ACTIONS(1878), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1880), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205416,25 +210395,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, - [78712] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [83182] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5235), 1, - aux_sym__immediate_decimal_token5, - STATE(2525), 1, + STATE(2646), 1, sym_comment, - ACTIONS(1804), 4, - sym_identifier, + ACTIONS(1872), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1802), 13, + ACTIONS(1870), 14, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -205447,41 +210422,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78743] = 4, - ACTIONS(3), 1, + [83210] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5239), 1, - anon_sym_DASH2, - STATE(2526), 1, + STATE(2647), 1, sym_comment, - ACTIONS(5237), 17, - anon_sym_EQ, - sym_identifier, + ACTIONS(1564), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1562), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78772] = 5, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [83238] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(1854), 1, sym__unquoted_pattern, - STATE(2527), 1, + STATE(2648), 1, sym_comment, - ACTIONS(2635), 16, + ACTIONS(1852), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205493,21 +210466,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, - [78803] = 5, + anon_sym_LPAREN2, + [83266] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1724), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2528), 1, + STATE(2649), 1, sym_comment, - ACTIONS(2575), 16, + STATE(4884), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5332), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205519,23 +210492,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, - [78834] = 4, + [83296] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2529), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2650), 1, sym_comment, - ACTIONS(1802), 5, + STATE(2689), 1, + sym_path, + STATE(3228), 1, + sym_cell_path, + ACTIONS(1912), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 13, + ACTIONS(1914), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205547,45 +210523,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_DOT_DOT2, - sym__unquoted_pattern, - [78863] = 4, + [83332] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5243), 1, - anon_sym_DASH2, - STATE(2530), 1, + STATE(2651), 1, sym_comment, - ACTIONS(5241), 17, + ACTIONS(5424), 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_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - [78892] = 4, + [83358] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2531), 1, + ACTIONS(5426), 1, + anon_sym_DOT, + ACTIONS(5428), 1, + aux_sym__immediate_decimal_token5, + STATE(2652), 1, sym_comment, - ACTIONS(1726), 5, + ACTIONS(1744), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 13, + ACTIONS(1746), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205597,18 +210571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - [78921] = 4, - ACTIONS(103), 1, + [83390] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2532), 1, + ACTIONS(1872), 1, + sym__unquoted_pattern, + STATE(2653), 1, sym_comment, - ACTIONS(1537), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 15, + ACTIONS(1870), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205620,20 +210592,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_DOT2, - [78950] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2533), 1, + [83418] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1713), 1, + sym__space, + ACTIONS(5430), 1, + anon_sym_DOT_DOT2, + STATE(2654), 1, sym_comment, - ACTIONS(1974), 16, + ACTIONS(5432), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1614), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205647,19 +210622,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78981] = 5, - ACTIONS(3), 1, + [83450] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2534), 1, + ACTIONS(2154), 1, + sym__space, + ACTIONS(5434), 1, + anon_sym_DOT_DOT2, + STATE(2655), 1, sym_comment, - ACTIONS(2523), 16, + ACTIONS(5436), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2156), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205673,19 +210648,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79012] = 5, - ACTIONS(3), 1, + [83482] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2535), 1, + ACTIONS(2102), 1, + sym__space, + ACTIONS(5438), 1, + anon_sym_DOT_DOT2, + STATE(2656), 1, sym_comment, - ACTIONS(2567), 16, + ACTIONS(5440), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205699,77 +210674,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79043] = 4, - ACTIONS(3), 1, + [83514] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2536), 1, - sym_comment, - ACTIONS(1470), 3, - anon_sym_DASH2, + ACTIONS(2110), 1, + sym__space, + ACTIONS(5442), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1472), 15, - anon_sym_EQ, - sym_identifier, + STATE(2657), 1, + sym_comment, + ACTIONS(5444), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2112), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79072] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2537), 1, - sym_comment, - ACTIONS(4682), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4684), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4686), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4678), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [79105] = 8, + anon_sym_RBRACE, + [83546] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5247), 1, + ACTIONS(2118), 1, sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2538), 1, + ACTIONS(5446), 1, + anon_sym_DOT_DOT2, + STATE(2658), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(3037), 1, - sym_cell_path, - ACTIONS(5245), 13, + ACTIONS(5448), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2120), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205783,22 +210726,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79142] = 8, + [83578] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5178), 1, anon_sym_DOT2, - ACTIONS(5251), 1, - sym__space, - STATE(2430), 1, + STATE(2516), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2539), 1, + STATE(2659), 1, sym_comment, - STATE(2542), 1, + STATE(2689), 1, sym_path, - STATE(3036), 1, + STATE(3274), 1, sym_cell_path, - ACTIONS(5249), 13, + ACTIONS(1862), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1864), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205810,68 +210754,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, - [79179] = 4, + [83614] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5255), 1, - anon_sym_DASH2, - STATE(2540), 1, - sym_comment, - ACTIONS(5253), 17, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(5298), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(5300), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(5302), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [79208] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5259), 1, + ACTIONS(5452), 1, anon_sym_DASH2, - STATE(2541), 1, + STATE(2660), 1, sym_comment, - ACTIONS(5257), 17, - anon_sym_EQ, + STATE(2860), 1, + aux_sym_parameter_repeat1, + STATE(3561), 1, + aux_sym_parameter_repeat2, + STATE(4242), 1, + aux_sym__repeat_newline, + STATE(3398), 2, + sym_param_type, + sym_param_value, + ACTIONS(5450), 7, sym_identifier, - sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [79237] = 4, - ACTIONS(103), 1, + [83658] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2542), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(2661), 1, sym_comment, - ACTIONS(1464), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 15, + ACTIONS(1973), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205883,23 +210808,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [79266] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83688] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5261), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5263), 1, - aux_sym__immediate_decimal_token5, - STATE(2543), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2662), 1, sym_comment, - ACTIONS(1726), 2, + STATE(2689), 1, + sym_path, + STATE(3245), 1, + sym_cell_path, + ACTIONS(5416), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 14, + ACTIONS(5414), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205911,50 +210839,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [79299] = 4, - ACTIONS(3), 1, + [83724] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2544), 1, + STATE(2663), 1, sym_comment, - ACTIONS(1474), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1476), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1582), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79328] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5267), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2545), 1, - sym_comment, - STATE(3016), 1, - sym_cell_path, - ACTIONS(5265), 13, + ACTIONS(1580), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205968,16 +210862,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79365] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [83752] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2546), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2664), 1, sym_comment, - ACTIONS(1018), 16, + STATE(2689), 1, + sym_path, + STATE(3259), 1, + sym_cell_path, + ACTIONS(1896), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1898), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205989,21 +210891,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, - [79396] = 5, + [83788] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(2612), 1, anon_sym_LPAREN2, - STATE(2547), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2665), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(1713), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206015,52 +210913,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79427] = 4, - ACTIONS(3), 1, + [83818] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2548), 1, + STATE(2666), 1, sym_comment, - ACTIONS(1478), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1480), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1498), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79456] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5273), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2549), 1, - sym_comment, - STATE(3005), 1, - sym_cell_path, - ACTIONS(5271), 13, + ACTIONS(1496), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206072,21 +210938,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, - [79493] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [83846] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5275), 1, - anon_sym_DOT, - ACTIONS(5277), 1, - aux_sym__immediate_decimal_token5, - STATE(2550), 1, + STATE(2667), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1858), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1860), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206100,20 +210963,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [79526] = 5, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + [83874] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5225), 1, - anon_sym_QMARK2, - STATE(2551), 1, + ACTIONS(5454), 1, + anon_sym_DOT2, + STATE(2936), 1, + sym_path, + STATE(2668), 2, sym_comment, - ACTIONS(1440), 4, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 14, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 13, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206125,18 +210988,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_COLON, + [83904] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1975), 1, + anon_sym_DASH2, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_record, + ACTIONS(5457), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [79557] = 4, + STATE(2669), 1, + sym_comment, + ACTIONS(5459), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1973), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83940] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2552), 1, + STATE(2670), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1772), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1516), 15, + sym__unquoted_pattern_in_record, + ACTIONS(1770), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -206148,26 +211038,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79586] = 8, + [83968] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, - sym__space, - ACTIONS(5024), 1, + ACTIONS(5178), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(2516), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2553), 1, + STATE(2671), 1, sym_comment, - STATE(2968), 1, + STATE(2689), 1, + sym_path, + STATE(3221), 1, sym_cell_path, - ACTIONS(1884), 13, + ACTIONS(1900), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1902), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206179,24 +211069,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, - [79623] = 8, - ACTIONS(103), 1, + [84004] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2554), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2672), 1, sym_comment, - STATE(2987), 1, - sym_cell_path, - ACTIONS(1880), 13, + ACTIONS(1022), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206208,19 +211091,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, - [79660] = 5, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84034] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5158), 1, - aux_sym__immediate_decimal_token5, - STATE(2555), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2673), 1, sym_comment, - ACTIONS(1736), 16, + STATE(2689), 1, + sym_path, + STATE(3294), 1, + sym_cell_path, + ACTIONS(5342), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5340), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206232,54 +211122,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [79691] = 7, - ACTIONS(3), 1, + [84070] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, + STATE(2674), 1, sym_comment, - STATE(2575), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1458), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1460), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1645), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79726] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1862), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2557), 1, - sym_comment, - STATE(2931), 1, - sym_cell_path, - ACTIONS(1864), 13, + ACTIONS(1647), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206293,14 +211145,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79763] = 4, + anon_sym_DOT_DOT2, + [84098] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(2558), 1, + ACTIONS(5336), 1, + anon_sym_DOT2, + STATE(2675), 1, sym_comment, - ACTIONS(1726), 17, + STATE(2710), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2936), 1, + sym_path, + STATE(3283), 1, + sym_cell_path, + ACTIONS(1912), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206312,24 +211173,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [79792] = 4, + [84132] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2559), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2676), 1, sym_comment, - ACTIONS(1870), 5, + STATE(2689), 1, + sym_path, + STATE(3249), 1, + sym_cell_path, + ACTIONS(5420), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 13, + ACTIONS(5418), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206341,26 +211201,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, - sym__unquoted_pattern, - [79821] = 8, - ACTIONS(103), 1, + [84168] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2656), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - ACTIONS(5279), 1, - anon_sym_DOT_DOT2, - STATE(2560), 1, + STATE(2677), 1, sym_comment, - ACTIONS(1974), 2, + ACTIONS(1030), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5281), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206372,22 +211223,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, - [79858] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84198] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2561), 1, + STATE(2678), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1894), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1545), 15, + ACTIONS(1892), 15, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -206395,21 +211250,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79887] = 5, - ACTIONS(3), 1, + [84226] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2562), 1, - sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, - ts_builtin_sym_end, + ACTIONS(5461), 1, sym__newline, + ACTIONS(5463), 1, + sym__space, + ACTIONS(5467), 1, + anon_sym_COLON2, + ACTIONS(5469), 1, + anon_sym_EQ2, + STATE(2679), 1, + sym_comment, + STATE(3020), 1, + aux_sym_attribute_repeat1, + STATE(4344), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5465), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -206420,48 +211278,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79918] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2563), 1, - sym_comment, - ACTIONS(4694), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4696), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4698), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4692), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [79951] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [84264] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5227), 1, + ACTIONS(5430), 1, anon_sym_DOT_DOT2, - STATE(2564), 1, + ACTIONS(5473), 1, + sym__space, + STATE(2680), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(5432), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 15, - ts_builtin_sym_end, + ACTIONS(5471), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206473,27 +211303,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79982] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84296] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5283), 1, - anon_sym_DOT_DOT2, - STATE(2565), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2681), 1, sym_comment, - ACTIONS(1964), 2, + STATE(2689), 1, + sym_path, + STATE(3216), 1, + sym_cell_path, + ACTIONS(1888), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5285), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 11, + ACTIONS(1890), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206505,16 +211333,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, - [80019] = 4, - ACTIONS(103), 1, + [84332] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2566), 1, + ACTIONS(5010), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(932), 1, + sym_cell_path, + STATE(2323), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2682), 1, sym_comment, - ACTIONS(1522), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 15, + ACTIONS(5354), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206528,18 +211360,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [80048] = 5, + [84366] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2567), 1, + ACTIONS(5336), 1, + anon_sym_DOT2, + STATE(2683), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + STATE(2710), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2936), 1, + sym_path, + STATE(3240), 1, + sym_cell_path, + ACTIONS(1900), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206551,94 +211387,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80079] = 4, + [84400] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(2568), 1, - sym_comment, - ACTIONS(1466), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1468), 15, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(5298), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(5300), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(5302), 1, anon_sym_COLON, + ACTIONS(5477), 1, + anon_sym_DASH2, + STATE(2684), 1, + sym_comment, + STATE(2685), 1, + aux_sym_parameter_repeat1, + STATE(3522), 1, + aux_sym_parameter_repeat2, + STATE(4242), 1, + aux_sym__repeat_newline, + STATE(3398), 2, + sym_param_type, + sym_param_value, + ACTIONS(5475), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [80108] = 4, + [84444] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(2569), 1, - sym_comment, - ACTIONS(1802), 17, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(5298), 1, + anon_sym_EQ, + ACTIONS(5300), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80137] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(5302), 1, + anon_sym_COLON, + ACTIONS(5481), 1, anon_sym_DASH2, - STATE(2570), 1, + STATE(2685), 1, sym_comment, - ACTIONS(5287), 17, - anon_sym_EQ, + STATE(2860), 1, + aux_sym_parameter_repeat1, + STATE(3526), 1, + aux_sym_parameter_repeat2, + STATE(4242), 1, + aux_sym__repeat_newline, + STATE(3398), 2, + sym_param_type, + sym_param_value, + ACTIONS(5479), 7, sym_identifier, - sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [80166] = 4, + [84488] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(2571), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2686), 1, sym_comment, - ACTIONS(1870), 17, + STATE(4884), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5332), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206650,22 +211473,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, - anon_sym_LPAREN2, - [80195] = 5, + [84518] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - ACTIONS(5291), 1, - aux_sym__immediate_decimal_token5, - STATE(2572), 1, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(2687), 1, sym_comment, - ACTIONS(1802), 16, + ACTIONS(2541), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206681,23 +211501,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80226] = 8, + [84548] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1850), 1, - sym__space, - ACTIONS(5024), 1, + ACTIONS(5178), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(2516), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2573), 1, + STATE(2688), 1, sym_comment, - STATE(3050), 1, + STATE(2689), 1, + sym_path, + STATE(3214), 1, sym_cell_path, - ACTIONS(1853), 13, + ACTIONS(1882), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1885), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206709,20 +211529,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, - [80263] = 5, - ACTIONS(3), 1, + [84584] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2574), 1, + STATE(2689), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(1549), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, - ts_builtin_sym_end, + ACTIONS(1547), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206734,23 +211551,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80294] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [84612] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5293), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - ACTIONS(1524), 2, + ACTIONS(5483), 1, + anon_sym_BANG, + STATE(2690), 1, + sym_comment, + ACTIONS(1448), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - STATE(2575), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 13, + anon_sym_DOT2, + ACTIONS(1450), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -206764,18 +211578,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [80327] = 5, + [84642] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5296), 1, - anon_sym_DOT_DOT2, - STATE(2576), 1, + ACTIONS(5336), 1, + anon_sym_DOT2, + STATE(2691), 1, sym_comment, - ACTIONS(5298), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 15, + STATE(2710), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2936), 1, + sym_path, + STATE(3246), 1, + sym_cell_path, + ACTIONS(5354), 13, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206787,23 +211605,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80358] = 5, + [84676] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2577), 1, + ACTIONS(5483), 1, + anon_sym_QMARK2, + STATE(2692), 1, sym_comment, - ACTIONS(1738), 4, - sym_identifier, + ACTIONS(1448), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 13, + anon_sym_DOT2, + ACTIONS(1450), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -206813,72 +211628,18 @@ 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, - [80389] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5300), 1, - anon_sym_DOT_DOT2, - STATE(2578), 1, - sym_comment, - ACTIONS(5302), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 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, - [80420] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5304), 1, - anon_sym_DOT_DOT2, - STATE(2579), 1, - sym_comment, - ACTIONS(5306), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 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, - [80451] = 5, + [84706] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5308), 1, - anon_sym_DOT_DOT2, - STATE(2580), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2693), 1, sym_comment, - ACTIONS(5310), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 15, + ACTIONS(2589), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206894,46 +211655,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80482] = 5, + [84736] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2581), 1, - sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 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, - [80513] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5312), 1, - anon_sym_DOT, - ACTIONS(5314), 1, - aux_sym__immediate_decimal_token5, - STATE(2582), 1, + ACTIONS(5336), 1, + anon_sym_DOT2, + STATE(2694), 1, sym_comment, - ACTIONS(1736), 3, + STATE(2710), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2936), 1, + sym_path, + STATE(3269), 1, + sym_cell_path, + ACTIONS(1862), 13, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 12, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206945,15 +211682,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [80545] = 4, + [84770] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(2527), 1, sym__unquoted_pattern, - STATE(2583), 1, + STATE(2695), 1, sym_comment, - ACTIONS(1802), 16, + ACTIONS(2525), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206970,55 +211706,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [80573] = 12, + [84798] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5318), 1, - anon_sym_DASH2, - STATE(2584), 1, + STATE(2696), 1, sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3394), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5316), 7, + ACTIONS(1880), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1878), 15, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [80617] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [84826] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5178), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2516), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2585), 1, - sym_comment, - STATE(2611), 1, + STATE(2689), 1, sym_path, - STATE(3086), 1, + STATE(2697), 1, + sym_comment, + STATE(3293), 1, sym_cell_path, - ACTIONS(5247), 2, + ACTIONS(5375), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5245), 11, + ACTIONS(5373), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207030,17 +211758,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, - [80653] = 5, + [84862] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5320), 1, - aux_sym__immediate_decimal_token5, - STATE(2586), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2689), 1, + sym_path, + STATE(2698), 1, sym_comment, - ACTIONS(1802), 2, + STATE(3212), 1, + sym_cell_path, + ACTIONS(5383), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 14, + ACTIONS(5381), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207052,20 +211786,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, - sym__unquoted_pattern, - [80683] = 5, - ACTIONS(3), 1, + [84898] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2587), 1, + ACTIONS(5485), 1, + aux_sym__immediate_decimal_token5, + STATE(2699), 1, sym_comment, - ACTIONS(1706), 15, - ts_builtin_sym_end, + ACTIONS(1852), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1854), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207077,75 +211808,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, - [80713] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2588), 1, - sym_comment, - ACTIONS(1804), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 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, - [80741] = 4, + anon_sym_RBRACE, + sym__unquoted_pattern, + [84928] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2589), 1, - sym_comment, - ACTIONS(1872), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1977), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [80769] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5322), 1, - sym__newline, - ACTIONS(5324), 1, - sym__space, - ACTIONS(5328), 1, - anon_sym_COLON2, - ACTIONS(5330), 1, - anon_sym_EQ2, - STATE(2590), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(2700), 1, sym_comment, - STATE(2840), 1, - aux_sym_attribute_repeat1, - STATE(4319), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5326), 11, + ACTIONS(2597), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207156,15 +211833,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, - [80807] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84958] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, sym__unquoted_pattern, - STATE(2591), 1, + STATE(2701), 1, sym_comment, - ACTIONS(1870), 16, + ACTIONS(2648), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207180,50 +211861,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80835] = 12, + [84988] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1958), 1, anon_sym_DASH2, - STATE(2592), 1, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(5487), 1, + anon_sym_DOT_DOT2, + STATE(2702), 1, sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3384), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5332), 7, + ACTIONS(5489), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1956), 11, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [80879] = 5, - ACTIONS(3), 1, + [85024] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2593), 1, + ACTIONS(4355), 1, + sym__space, + ACTIONS(5491), 1, + sym_long_flag_identifier, + ACTIONS(5493), 1, + anon_sym_EQ2, + STATE(2703), 1, sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, + STATE(3040), 1, + sym__flag_equals_value, + ACTIONS(4353), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207235,26 +211914,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80909] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [85058] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2594), 1, + ACTIONS(5495), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5497), 1, + aux_sym__immediate_decimal_token5, + STATE(2704), 1, sym_comment, - STATE(2611), 1, - sym_path, - STATE(3197), 1, - sym_cell_path, - ACTIONS(1878), 2, + ACTIONS(1770), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1880), 11, + anon_sym_LPAREN2, + ACTIONS(1772), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207266,14 +211941,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, - [80945] = 4, + sym__unquoted_pattern, + [85090] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(2595), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2705), 1, sym_comment, - ACTIONS(1726), 16, + STATE(4884), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5332), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207289,17 +211967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80973] = 4, - ACTIONS(103), 1, + [85120] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2596), 1, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(2706), 1, sym_comment, - ACTIONS(1874), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1876), 14, + ACTIONS(886), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207313,47 +211988,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [81001] = 7, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85148] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5338), 1, - sym__space, - ACTIONS(5340), 1, - anon_sym_EQ2, - ACTIONS(5342), 1, - sym_short_flag_identifier, - STATE(2597), 1, - sym_comment, - STATE(3073), 1, - sym__flag_equals_value, - ACTIONS(5336), 13, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(5298), 1, + anon_sym_EQ, + ACTIONS(5300), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(5302), 1, + anon_sym_COLON, + ACTIONS(5501), 1, + anon_sym_DASH2, + STATE(2660), 1, + aux_sym_parameter_repeat1, + STATE(2707), 1, + sym_comment, + STATE(3560), 1, + aux_sym_parameter_repeat2, + STATE(4242), 1, + aux_sym__repeat_newline, + STATE(3398), 2, + sym_param_type, + sym_param_value, + ACTIONS(5499), 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_RBRACE, - [81035] = 6, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [85192] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, - sym__space, - ACTIONS(5348), 1, - anon_sym_DOT_DOT2, - STATE(2598), 1, + STATE(2708), 1, sym_comment, - ACTIONS(5350), 2, + ACTIONS(1892), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5344), 13, + ACTIONS(1894), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207367,23 +212046,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81067] = 8, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + [85220] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(5298), 1, + anon_sym_EQ, + ACTIONS(5300), 1, + sym__newline, + ACTIONS(5302), 1, + anon_sym_COLON, + ACTIONS(5505), 1, + anon_sym_DASH2, + STATE(2709), 1, + sym_comment, + STATE(2860), 1, + aux_sym_parameter_repeat1, + STATE(3539), 1, + aux_sym_parameter_repeat2, + STATE(4242), 1, + aux_sym__repeat_newline, + STATE(3398), 2, + sym_param_type, + sym_param_value, + ACTIONS(5503), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [85264] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5336), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2668), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2599), 1, + STATE(2710), 1, sym_comment, - STATE(2611), 1, + STATE(2936), 1, sym_path, - STATE(3212), 1, - sym_cell_path, - ACTIONS(1866), 2, + ACTIONS(1506), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(1868), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207395,16 +212104,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, - [81103] = 5, + anon_sym_COLON, + [85296] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + STATE(2711), 1, + sym_comment, + ACTIONS(1854), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1852), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(1984), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [85324] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1635), 1, sym__unquoted_pattern, - STATE(2600), 1, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(2712), 1, sym_comment, - ACTIONS(2575), 15, + ACTIONS(1956), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207420,16 +212154,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81133] = 4, + [85354] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2601), 1, - sym_comment, - ACTIONS(1641), 3, + ACTIONS(5493), 1, + anon_sym_EQ2, + ACTIONS(5509), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 14, + ACTIONS(5511), 1, + sym_short_flag_identifier, + STATE(2713), 1, + sym_comment, + STATE(3032), 1, + sym__flag_equals_value, + ACTIONS(5507), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207443,24 +212181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [81161] = 8, + [85388] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2602), 1, + ACTIONS(5346), 1, + aux_sym__immediate_decimal_token5, + STATE(2714), 1, sym_comment, - STATE(2611), 1, - sym_path, - STATE(3143), 1, - sym_cell_path, - ACTIONS(1882), 2, - ts_builtin_sym_end, + ACTIONS(1744), 2, sym__space, - ACTIONS(1884), 11, + anon_sym_LPAREN2, + ACTIONS(1746), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207472,17 +212203,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, - [81197] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [85418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2603), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2715), 1, sym_comment, - ACTIONS(1974), 15, - ts_builtin_sym_end, + ACTIONS(5513), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207494,22 +212225,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, - [81227] = 6, - ACTIONS(103), 1, + [85445] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(5348), 1, - anon_sym_DOT_DOT2, - STATE(2604), 1, + STATE(2716), 1, sym_comment, - ACTIONS(5350), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 13, + STATE(2732), 1, + aux_sym__repeat_newline, + ACTIONS(5515), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207522,20 +212249,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, - [81259] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85472] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__space, - ACTIONS(5352), 1, - anon_sym_DOT_DOT2, - STATE(2605), 1, + STATE(2717), 1, sym_comment, - ACTIONS(5354), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 13, + ACTIONS(5517), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207549,19 +212271,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81291] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85497] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__space, - ACTIONS(5356), 1, - anon_sym_DOT_DOT2, - STATE(2606), 1, + STATE(2718), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(1892), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 13, + ACTIONS(1894), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207573,21 +212296,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, - [81323] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2076), 1, - sym__space, - ACTIONS(5360), 1, anon_sym_DOT_DOT2, - STATE(2607), 1, + [85524] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5519), 1, + anon_sym_BANG, + STATE(2719), 1, sym_comment, - ACTIONS(5362), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 13, + ACTIONS(1450), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207599,21 +212318,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, - [81355] = 6, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_DOT2, + [85551] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__space, - ACTIONS(5364), 1, - anon_sym_DOT_DOT2, - STATE(2608), 1, + STATE(2720), 1, sym_comment, - ACTIONS(5366), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 13, + STATE(2733), 1, + aux_sym__repeat_newline, + ACTIONS(5521), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207626,18 +212340,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_RBRACE, - [81387] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85578] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5523), 1, + sym__newline, + ACTIONS(5526), 1, + anon_sym_and2, + STATE(2721), 1, + sym_comment, + STATE(2736), 1, + aux_sym__repeat_newline, + ACTIONS(5515), 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, + [85609] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2609), 1, + STATE(2722), 1, sym_comment, - ACTIONS(1522), 4, + ACTIONS(1878), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 13, + ACTIONS(1880), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207650,19 +212391,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_DOT2, - [81415] = 4, + [85636] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2610), 1, + ACTIONS(5528), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5530), 1, + aux_sym__immediate_decimal_token5, + STATE(2723), 1, sym_comment, - ACTIONS(1728), 3, + ACTIONS(1772), 3, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1726), 14, + ACTIONS(1770), 11, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -207673,19 +212416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81443] = 4, - ACTIONS(103), 1, + [85667] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2611), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2724), 1, sym_comment, - ACTIONS(1464), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 13, + ACTIONS(5532), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207697,47 +212435,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81471] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1966), 1, - anon_sym_DASH2, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5368), 1, - anon_sym_DOT_DOT2, - STATE(2612), 1, - sym_comment, - ACTIONS(5370), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [81507] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85694] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2613), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2725), 1, sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, + ACTIONS(5534), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207749,20 +212458,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, - [81537] = 5, + [85721] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2614), 1, + ACTIONS(5536), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2726), 1, sym_comment, - ACTIONS(2523), 15, - ts_builtin_sym_end, + ACTIONS(5532), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207774,19 +212483,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, - [81567] = 4, - ACTIONS(103), 1, + [85750] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2615), 1, + ACTIONS(5538), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2727), 1, sym_comment, - ACTIONS(1822), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 14, + ACTIONS(5534), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207799,49 +212508,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_RBRACE, - anon_sym_DOT_DOT2, - [81595] = 4, + anon_sym_xor2, + anon_sym_or2, + [85779] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2616), 1, + ACTIONS(5536), 1, + anon_sym_and2, + ACTIONS(5540), 1, + anon_sym_xor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2728), 1, sym_comment, - ACTIONS(1876), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1874), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(5532), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81623] = 8, - ACTIONS(103), 1, + anon_sym_or2, + [85810] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2617), 1, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5542), 1, + anon_sym_xor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2729), 1, sym_comment, - STATE(3084), 1, - sym_cell_path, - ACTIONS(1862), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1864), 11, + ACTIONS(5534), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207853,17 +212558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [81659] = 5, + anon_sym_RPAREN, + anon_sym_or2, + [85841] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2618), 1, + STATE(2730), 1, sym_comment, - ACTIONS(2567), 15, - ts_builtin_sym_end, + STATE(2778), 1, + aux_sym__repeat_newline, + ACTIONS(5544), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207875,20 +212579,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, - [81689] = 5, + [85868] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2619), 1, + STATE(2731), 1, sym_comment, - ACTIONS(2635), 15, - ts_builtin_sym_end, + STATE(2779), 1, + aux_sym__repeat_newline, + ACTIONS(5546), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207900,17 +212602,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, - [81719] = 4, + [85895] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(2620), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2732), 1, sym_comment, - ACTIONS(968), 16, + ACTIONS(5548), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207923,52 +212626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81747] = 12, + [85922] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5374), 1, - anon_sym_DASH2, - STATE(2584), 1, - aux_sym_parameter_repeat1, - STATE(2621), 1, - sym_comment, - STATE(3391), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5372), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [81791] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2622), 1, + STATE(2733), 1, sym_comment, - ACTIONS(1886), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1888), 14, + ACTIONS(5550), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207981,82 +212649,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, - anon_sym_DOT_DOT2, - [81819] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85949] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5552), 1, sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5378), 1, - anon_sym_DASH2, - STATE(2623), 1, + STATE(2734), 1, sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3367), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, + STATE(2780), 1, aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5376), 7, - sym_identifier, + ACTIONS(5544), 13, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [81863] = 4, + anon_sym_xor2, + anon_sym_or2, + [85980] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2624), 1, - sym_comment, - ACTIONS(1888), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1886), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(5555), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81891] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2625), 1, + ACTIONS(5558), 1, + anon_sym_and2, + STATE(2735), 1, sym_comment, - STATE(3094), 1, - sym_cell_path, - ACTIONS(1858), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1860), 11, - sym__newline, + STATE(2781), 1, + aux_sym__repeat_newline, + ACTIONS(5546), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208067,17 +212699,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, - [81927] = 5, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86011] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2626), 1, + ACTIONS(5536), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2736), 1, sym_comment, - ACTIONS(1964), 15, - ts_builtin_sym_end, + ACTIONS(5548), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208089,19 +212723,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, - [81957] = 4, - ACTIONS(103), 1, + [86040] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2627), 1, + ACTIONS(5538), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2737), 1, sym_comment, - ACTIONS(1558), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1556), 14, + ACTIONS(5550), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208114,26 +212748,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_DOT_DOT2, - [81985] = 8, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [86069] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2628), 1, - sym_comment, - STATE(3122), 1, - sym_cell_path, - ACTIONS(5233), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5231), 11, + ACTIONS(2907), 1, sym__newline, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2738), 1, + sym_comment, + STATE(2782), 1, + aux_sym__repeat_newline, + ACTIONS(5544), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208144,21 +212774,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, - [82021] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_or2, + [86102] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5380), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5382), 1, - aux_sym__immediate_decimal_token5, - STATE(2629), 1, - sym_comment, - ACTIONS(1726), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 12, + ACTIONS(2907), 1, sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5562), 1, + anon_sym_xor2, + STATE(2739), 1, + sym_comment, + STATE(2785), 1, + aux_sym__repeat_newline, + ACTIONS(5546), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208169,24 +212800,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [82053] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_or2, + [86135] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2630), 1, + ACTIONS(5536), 1, + anon_sym_and2, + ACTIONS(5540), 1, + anon_sym_xor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2740), 1, sym_comment, - STATE(3097), 1, - sym_cell_path, - ACTIONS(5251), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5249), 11, + ACTIONS(5548), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208198,49 +212825,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, - [82089] = 12, + anon_sym_RPAREN, + anon_sym_or2, + [86166] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5386), 1, - anon_sym_DASH2, - STATE(2592), 1, - aux_sym_parameter_repeat1, - STATE(2631), 1, - sym_comment, - STATE(3363), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5542), 1, + anon_sym_xor2, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5384), 7, - sym_identifier, + STATE(2741), 1, + sym_comment, + ACTIONS(5550), 13, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [82133] = 5, + anon_sym_or2, + [86197] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2632), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2742), 1, sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, + ACTIONS(5564), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208252,26 +212871,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, - [82163] = 8, - ACTIONS(103), 1, + [86224] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2633), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2743), 1, sym_comment, - STATE(3213), 1, - sym_cell_path, - ACTIONS(1850), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1853), 11, + ACTIONS(5566), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208283,20 +212894,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, - [82199] = 7, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86251] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4303), 1, - sym__space, - ACTIONS(5340), 1, - anon_sym_EQ2, - ACTIONS(5388), 1, - sym_long_flag_identifier, - STATE(2634), 1, + ACTIONS(5536), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2744), 1, sym_comment, - STATE(2933), 1, - sym__flag_equals_value, - ACTIONS(4301), 13, + ACTIONS(5564), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208309,24 +212920,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, - [82233] = 8, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [86280] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2635), 1, + ACTIONS(5538), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2745), 1, sym_comment, - STATE(3123), 1, - sym_cell_path, - ACTIONS(5273), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5271), 11, + ACTIONS(5566), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208338,23 +212943,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, - [82269] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86309] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2636), 1, + ACTIONS(5536), 1, + anon_sym_and2, + ACTIONS(5540), 1, + anon_sym_xor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2746), 1, sym_comment, - STATE(3124), 1, - sym_cell_path, - ACTIONS(5267), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5265), 11, + ACTIONS(5564), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208366,45 +212969,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, - [82305] = 8, + anon_sym_RPAREN, + anon_sym_or2, + [86340] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1976), 1, - anon_sym_DASH2, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5390), 1, - anon_sym_DOT_DOT2, - STATE(2637), 1, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5542), 1, + anon_sym_xor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2747), 1, sym_comment, - ACTIONS(5392), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5566), 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, - [82341] = 5, - ACTIONS(103), 1, + anon_sym_or2, + [86371] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5277), 1, - aux_sym__immediate_decimal_token5, - STATE(2638), 1, + STATE(2748), 1, sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 14, + STATE(2786), 1, + aux_sym__repeat_newline, + ACTIONS(5568), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208417,19 +213016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [82371] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2639), 1, + STATE(2749), 1, sym_comment, - ACTIONS(994), 15, - ts_builtin_sym_end, + STATE(2787), 1, + aux_sym__repeat_newline, + ACTIONS(5570), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208441,20 +213038,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, - [82401] = 4, - ACTIONS(103), 1, + [86425] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2640), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2750), 1, sym_comment, - ACTIONS(1537), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 13, + ACTIONS(5572), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208466,20 +213061,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [82429] = 5, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86452] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2641), 1, - sym_comment, - ACTIONS(1018), 15, - ts_builtin_sym_end, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5574), 1, sym__newline, + STATE(2737), 1, + aux_sym__repeat_newline, + STATE(2751), 1, + sym_comment, + ACTIONS(5521), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208490,19 +213087,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, - [82459] = 4, + [86483] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(2642), 1, - sym_comment, - ACTIONS(2501), 16, - ts_builtin_sym_end, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5577), 1, sym__newline, + STATE(2752), 1, + sym_comment, + STATE(2788), 1, + aux_sym__repeat_newline, + ACTIONS(5568), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208513,19 +213112,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, - anon_sym_LPAREN2, - [82487] = 4, + [86514] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2643), 1, - sym_comment, - ACTIONS(5394), 15, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5580), 1, sym__newline, + STATE(2753), 1, + sym_comment, + STATE(2789), 1, + aux_sym__repeat_newline, + ACTIONS(5570), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208537,20 +213138,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, - [82514] = 4, - ACTIONS(103), 1, + [86545] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2644), 1, + ACTIONS(5536), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2754), 1, sym_comment, - ACTIONS(1886), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1888), 12, + ACTIONS(5572), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208562,21 +213161,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [82541] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86574] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_DOT_DOT2, - STATE(2645), 1, + ACTIONS(5538), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2755), 1, sym_comment, - ACTIONS(1706), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5398), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 11, + ACTIONS(5513), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208588,20 +213185,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, - [82572] = 7, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86603] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5402), 1, + ACTIONS(5526), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5560), 1, anon_sym_xor2, - STATE(2646), 1, + STATE(2756), 1, sym_comment, - STATE(2678), 1, + STATE(2790), 1, aux_sym__repeat_newline, - ACTIONS(5400), 12, + ACTIONS(5568), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208614,19 +213214,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [82605] = 6, + [86636] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5562), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2647), 1, + STATE(2757), 1, sym_comment, - ACTIONS(5406), 13, - sym__newline, + STATE(2792), 1, + aux_sym__repeat_newline, + ACTIONS(5570), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208639,18 +213240,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [82636] = 6, + [86669] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5536), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5540), 1, anon_sym_xor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2648), 1, + STATE(2758), 1, sym_comment, - ACTIONS(5412), 13, + ACTIONS(5572), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208664,14 +213265,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [82667] = 4, - ACTIONS(3), 1, + [86700] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2643), 1, - aux_sym__repeat_newline, - STATE(2649), 1, + ACTIONS(1744), 1, + sym__space, + ACTIONS(5164), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5583), 1, + anon_sym_DOT, + STATE(2759), 1, sym_comment, - ACTIONS(5418), 15, + ACTIONS(1746), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208684,17 +213289,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82694] = 4, + anon_sym_RBRACE, + [86731] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2650), 1, - sym_comment, - STATE(2684), 1, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5542), 1, + anon_sym_xor2, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5420), 15, + STATE(2760), 1, + sym_comment, + ACTIONS(5513), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208707,23 +213314,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, - [82721] = 6, + [86762] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5422), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5424), 1, + ACTIONS(5585), 1, + anon_sym_DOT, + ACTIONS(5587), 1, aux_sym__immediate_decimal_token5, - STATE(2651), 1, + STATE(2761), 1, sym_comment, - ACTIONS(1728), 3, + ACTIONS(1746), 3, sym_identifier, anon_sym_DASH2, sym__unquoted_pattern_in_record, - ACTIONS(1726), 11, + ACTIONS(1744), 11, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -208735,15 +213340,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [82752] = 4, + [86793] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2740), 1, aux_sym__repeat_newline, - STATE(2652), 1, + STATE(2762), 1, sym_comment, - ACTIONS(5426), 15, - sym__newline, + ACTIONS(5515), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208755,17 +213365,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_or2, + [86826] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5558), 1, anon_sym_and2, + ACTIONS(5562), 1, anon_sym_xor2, + STATE(2741), 1, + aux_sym__repeat_newline, + STATE(2763), 1, + sym_comment, + ACTIONS(5521), 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, - [82779] = 4, + [86859] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(2742), 1, aux_sym__repeat_newline, - STATE(2653), 1, + STATE(2764), 1, sym_comment, - ACTIONS(5428), 15, + ACTIONS(5589), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208781,18 +213415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82806] = 6, + [86886] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5430), 1, - sym__newline, - STATE(2654), 1, - sym_comment, - STATE(2685), 1, + STATE(2743), 1, aux_sym__repeat_newline, - ACTIONS(5418), 13, + STATE(2765), 1, + sym_comment, + ACTIONS(5591), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208804,20 +213435,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, - [82837] = 6, + [86913] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5433), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - STATE(2655), 1, - sym_comment, - STATE(2686), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5420), 13, + STATE(2766), 1, + sym_comment, + ACTIONS(5593), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208829,18 +213458,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82868] = 5, + [86940] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2656), 1, + STATE(2767), 1, sym_comment, - ACTIONS(5426), 14, + ACTIONS(5595), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208853,19 +213481,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, - [82897] = 5, + [86967] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5526), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5597), 1, + sym__newline, + STATE(2744), 1, aux_sym__repeat_newline, - STATE(2657), 1, + STATE(2768), 1, sym_comment, - ACTIONS(5428), 14, - sym__newline, + ACTIONS(5589), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208879,20 +213509,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [82926] = 7, + [86998] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2658), 1, - sym_comment, - STATE(2687), 1, + ACTIONS(5600), 1, + sym__newline, + STATE(2745), 1, aux_sym__repeat_newline, - ACTIONS(5418), 12, + STATE(2769), 1, + sym_comment, + ACTIONS(5591), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208904,21 +213532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [82959] = 7, + [87029] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5605), 1, anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2659), 1, + STATE(2770), 1, sym_comment, - STATE(2688), 1, - aux_sym__repeat_newline, - ACTIONS(5420), 12, + ACTIONS(5603), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208930,19 +213554,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [82992] = 6, + [87056] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5607), 1, anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2660), 1, + STATE(2771), 1, sym_comment, - ACTIONS(5426), 13, + ACTIONS(5517), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208955,19 +213577,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [83023] = 6, + [87083] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5536), 1, anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2661), 1, + STATE(2772), 1, sym_comment, - ACTIONS(5428), 13, + ACTIONS(5593), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208980,15 +213602,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [83054] = 4, + [87112] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2662), 1, + ACTIONS(5605), 1, + anon_sym_and2, + ACTIONS(5609), 1, + anon_sym_xor2, + STATE(2773), 1, sym_comment, - ACTIONS(5440), 15, + ACTIONS(5603), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209001,17 +213626,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - [83081] = 4, + [87141] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2663), 1, + ACTIONS(5607), 1, + anon_sym_and2, + ACTIONS(5611), 1, + anon_sym_xor2, + STATE(2774), 1, sym_comment, - ACTIONS(5442), 15, + ACTIONS(5517), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209024,19 +213650,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - [83108] = 5, + [87170] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2664), 1, + STATE(2775), 1, sym_comment, - ACTIONS(5440), 14, + ACTIONS(5225), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209049,18 +213670,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83137] = 5, + [87195] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5538), 1, anon_sym_and2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2665), 1, + STATE(2776), 1, sym_comment, - ACTIONS(5442), 14, + ACTIONS(5595), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209075,19 +213698,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [83166] = 6, + [87224] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5526), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5560), 1, anon_sym_xor2, - STATE(540), 1, + STATE(2746), 1, aux_sym__repeat_newline, - STATE(2666), 1, + STATE(2777), 1, sym_comment, - ACTIONS(5440), 13, - sym__newline, + ACTIONS(5589), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209100,18 +213724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83197] = 6, + [87257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2667), 1, + STATE(2778), 1, sym_comment, - ACTIONS(5442), 13, + ACTIONS(5613), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209124,15 +213744,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [83228] = 4, + [87284] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2668), 1, - sym_comment, - STATE(2689), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5444), 15, + STATE(2779), 1, + sym_comment, + ACTIONS(5615), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209148,14 +213770,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83255] = 4, + [87311] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2669), 1, - sym_comment, - STATE(2690), 1, + ACTIONS(5536), 1, + anon_sym_and2, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5446), 15, + STATE(2780), 1, + sym_comment, + ACTIONS(5613), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209168,17 +213792,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83282] = 4, + [87340] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5538), 1, + anon_sym_and2, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2670), 1, + STATE(2781), 1, sym_comment, - ACTIONS(5448), 15, + ACTIONS(5615), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209191,17 +213816,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83309] = 4, + [87369] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5536), 1, + anon_sym_and2, + ACTIONS(5540), 1, + anon_sym_xor2, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2671), 1, + STATE(2782), 1, sym_comment, - ACTIONS(5450), 15, + ACTIONS(5613), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209214,21 +213842,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, - [83336] = 6, + [87400] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5452), 1, + ACTIONS(2907), 1, sym__newline, - STATE(2672), 1, - sym_comment, - STATE(2691), 1, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5562), 1, + anon_sym_xor2, + STATE(2747), 1, aux_sym__repeat_newline, - ACTIONS(5444), 13, + STATE(2783), 1, + sym_comment, + ACTIONS(5591), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209240,20 +213868,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, - [83367] = 6, + [87433] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5617), 1, + anon_sym_DOT_DOT2, + STATE(2784), 1, + sym_comment, + ACTIONS(1713), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5619), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1614), 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, + [87464] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5455), 1, - sym__newline, - STATE(2673), 1, - sym_comment, - STATE(2692), 1, + ACTIONS(5542), 1, + anon_sym_xor2, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5446), 13, + STATE(2785), 1, + sym_comment, + ACTIONS(5615), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209265,18 +213918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [83398] = 5, + [87495] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2674), 1, + STATE(2786), 1, sym_comment, - ACTIONS(5448), 14, + ACTIONS(5621), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209289,18 +213939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83427] = 5, + [87522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2675), 1, + STATE(2787), 1, sym_comment, - ACTIONS(5450), 14, + ACTIONS(5623), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209313,22 +213962,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83456] = 7, + [87549] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5536), 1, anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2676), 1, - sym_comment, - STATE(2693), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5444), 12, + STATE(2788), 1, + sym_comment, + ACTIONS(5621), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209340,21 +213987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [83489] = 7, + [87578] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2677), 1, - sym_comment, - STATE(2694), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5446), 12, + STATE(2789), 1, + sym_comment, + ACTIONS(5623), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209366,19 +214011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [83522] = 6, + [87607] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5536), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5540), 1, anon_sym_xor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2678), 1, + STATE(2790), 1, sym_comment, - ACTIONS(5448), 13, + ACTIONS(5621), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209392,18 +214038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83553] = 6, + [87638] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5536), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5540), 1, anon_sym_xor2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2679), 1, + STATE(2791), 1, sym_comment, - ACTIONS(5450), 13, + ACTIONS(5593), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209417,20 +214063,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83584] = 7, + [87669] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5542), 1, anon_sym_xor2, - STATE(2679), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2680), 1, + STATE(2792), 1, sym_comment, - ACTIONS(5458), 12, + ACTIONS(5623), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209443,18 +214088,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83617] = 6, - ACTIONS(103), 1, + [87700] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1736), 1, - sym__space, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5460), 1, - anon_sym_DOT, - STATE(2681), 1, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5542), 1, + anon_sym_xor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2793), 1, sym_comment, - ACTIONS(1738), 13, + ACTIONS(5595), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209467,21 +214112,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, - [83648] = 6, + anon_sym_or2, + [87731] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5462), 1, - anon_sym_DOT_DOT2, - STATE(2682), 1, - sym_comment, - ACTIONS(2152), 2, - ts_builtin_sym_end, + ACTIONS(1713), 1, sym__space, - ACTIONS(5464), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 11, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2794), 1, + sym_comment, + ACTIONS(1614), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209493,39 +214136,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, - [83679] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5466), 1, - anon_sym_DOT, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token5, - STATE(2683), 1, - sym_comment, - ACTIONS(1738), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [83710] = 4, + anon_sym_RBRACE, + [87762] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(2750), 1, aux_sym__repeat_newline, - STATE(2684), 1, + STATE(2795), 1, sym_comment, - ACTIONS(5470), 15, + ACTIONS(5625), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209541,16 +214161,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83737] = 5, - ACTIONS(3), 1, + [87789] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2685), 1, + ACTIONS(5428), 1, + aux_sym__immediate_decimal_token5, + STATE(2796), 1, sym_comment, - ACTIONS(5394), 14, + ACTIONS(1744), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1746), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209562,19 +214184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [83766] = 5, + sym__unquoted_pattern, + [87818] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, + STATE(2715), 1, aux_sym__repeat_newline, - STATE(2686), 1, + STATE(2797), 1, sym_comment, - ACTIONS(5470), 14, + ACTIONS(5627), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209587,21 +214205,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, - [83795] = 6, + [87845] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5526), 1, anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, + ACTIONS(5629), 1, + sym__newline, + STATE(2754), 1, aux_sym__repeat_newline, - STATE(2687), 1, + STATE(2798), 1, sym_comment, - ACTIONS(5394), 13, - sym__newline, + ACTIONS(5625), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209613,19 +214231,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [83826] = 6, - ACTIONS(3), 1, + [87876] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2688), 1, + ACTIONS(5632), 1, + anon_sym_DOT_DOT2, + STATE(2799), 1, sym_comment, - ACTIONS(5470), 13, + ACTIONS(2154), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5634), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2156), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209637,17 +214258,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [83857] = 4, + [87907] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5636), 1, + sym__newline, + STATE(2755), 1, aux_sym__repeat_newline, - STATE(2689), 1, + STATE(2800), 1, sym_comment, - ACTIONS(5472), 15, - sym__newline, + ACTIONS(5627), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209659,17 +214281,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83884] = 4, - ACTIONS(3), 1, + [87938] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2690), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1956), 1, + sym__space, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(2801), 1, sym_comment, - ACTIONS(5474), 15, + ACTIONS(1958), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209682,20 +214307,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, - [83911] = 5, + anon_sym_RBRACE, + [87969] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5526), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2758), 1, aux_sym__repeat_newline, - STATE(2691), 1, + STATE(2802), 1, sym_comment, - ACTIONS(5472), 14, - sym__newline, + ACTIONS(5625), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209707,19 +214333,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [83940] = 5, + [88002] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5558), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5562), 1, + anon_sym_xor2, + STATE(2760), 1, aux_sym__repeat_newline, - STATE(2692), 1, + STATE(2803), 1, sym_comment, - ACTIONS(5474), 14, - sym__newline, + ACTIONS(5627), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209731,20 +214359,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [83969] = 6, - ACTIONS(3), 1, + [88035] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2693), 1, + ACTIONS(5639), 1, + sym_long_flag_identifier, + ACTIONS(5641), 1, + anon_sym_EQ2, + STATE(2804), 1, sym_comment, - ACTIONS(5472), 13, + STATE(3224), 1, + sym__flag_equals_value, + ACTIONS(4355), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4353), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209756,20 +214386,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [84000] = 6, - ACTIONS(3), 1, + [88068] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2694), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(2597), 1, + sym__space, + STATE(2805), 1, sym_comment, - ACTIONS(5474), 13, + ACTIONS(2599), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209782,19 +214410,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [84031] = 6, + anon_sym_RBRACE, + [88099] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(1973), 1, sym__space, - ACTIONS(2595), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(1983), 1, sym__unquoted_pattern, - STATE(2695), 1, + STATE(2806), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(1975), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209808,18 +214436,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84062] = 5, + [88130] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5643), 1, aux_sym__immediate_decimal_token5, - STATE(2696), 1, + STATE(2807), 1, sym_comment, - ACTIONS(1736), 3, + ACTIONS(1852), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1738), 12, + ACTIONS(1854), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209832,15 +214460,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [84091] = 4, + [88159] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2697), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + ACTIONS(5647), 1, + anon_sym_or2, + STATE(2808), 1, sym_comment, - STATE(2806), 1, + STATE(2837), 1, aux_sym__repeat_newline, - ACTIONS(5476), 15, - sym__newline, + ACTIONS(5645), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209852,17 +214487,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, - [84118] = 4, - ACTIONS(3), 1, + [88194] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2698), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2541), 1, + sym__space, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(2809), 1, sym_comment, - STATE(2807), 1, - aux_sym__repeat_newline, - ACTIONS(5478), 15, + ACTIONS(2543), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209875,21 +214511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [84145] = 6, + anon_sym_RBRACE, + [88225] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, + ACTIONS(2589), 1, sym__space, - ACTIONS(1968), 1, + ACTIONS(2644), 1, anon_sym_LPAREN2, - STATE(2699), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2810), 1, sym_comment, - ACTIONS(1966), 13, + ACTIONS(2591), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209903,14 +214537,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84176] = 4, + [88256] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5562), 1, + anon_sym_xor2, + ACTIONS(5651), 1, + anon_sym_or2, + STATE(2811), 1, + sym_comment, + STATE(2838), 1, aux_sym__repeat_newline, - STATE(2700), 1, + ACTIONS(5649), 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, + [88291] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5469), 1, + anon_sym_EQ2, + ACTIONS(5653), 1, + sym__space, + STATE(2812), 1, sym_comment, - ACTIONS(5480), 15, + STATE(3020), 1, + aux_sym_attribute_repeat1, + ACTIONS(5465), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209923,20 +214588,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [84203] = 4, + anon_sym_RBRACE, + [88322] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2701), 1, + STATE(2813), 1, sym_comment, - ACTIONS(1558), 4, - ts_builtin_sym_end, + ACTIONS(2525), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1556), 12, + anon_sym_LPAREN2, + ACTIONS(2527), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209948,15 +214609,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, - [84230] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [88349] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2702), 1, + ACTIONS(2648), 1, + sym__space, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(2814), 1, sym_comment, - ACTIONS(5482), 15, + ACTIONS(2650), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209969,21 +214636,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [84257] = 6, + anon_sym_RBRACE, + [88380] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5484), 1, - sym__newline, - STATE(2703), 1, - sym_comment, - STATE(2811), 1, + ACTIONS(5542), 1, + anon_sym_xor2, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5476), 13, + STATE(2815), 1, + sym_comment, + ACTIONS(5655), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209995,22 +214661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [84288] = 6, + [88411] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5487), 1, - anon_sym_DOT_DOT2, - STATE(2704), 1, - sym_comment, - ACTIONS(2100), 2, - ts_builtin_sym_end, + ACTIONS(1030), 1, sym__space, - ACTIONS(5489), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 11, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2816), 1, + sym_comment, + ACTIONS(994), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210022,20 +214685,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, - [84319] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [88442] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5491), 1, - anon_sym_DOT_DOT2, - STATE(2705), 1, + STATE(2817), 1, sym_comment, - ACTIONS(2076), 2, + ACTIONS(1582), 4, ts_builtin_sym_end, sym__space, - ACTIONS(5493), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 11, + ACTIONS(1580), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210047,20 +214709,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, - [84350] = 6, + anon_sym_DOT_DOT2, + [88469] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5495), 1, + ACTIONS(5657), 1, anon_sym_DOT_DOT2, - STATE(2706), 1, + STATE(2818), 1, sym_comment, - ACTIONS(2120), 2, + ACTIONS(2102), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5497), 2, + ACTIONS(5659), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 11, + ACTIONS(2104), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210072,18 +214735,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, - [84381] = 6, - ACTIONS(103), 1, + [88500] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, - sym__space, - STATE(2707), 1, + ACTIONS(5237), 1, + anon_sym_DOT2, + STATE(720), 1, + sym_path, + STATE(1273), 1, + sym_cell_path, + STATE(2414), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2819), 1, sym_comment, - ACTIONS(2577), 13, + ACTIONS(5354), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210095,20 +214761,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, - [84412] = 6, + [88533] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2708), 1, + ACTIONS(5661), 1, + anon_sym_DOT_DOT2, + STATE(2820), 1, sym_comment, - ACTIONS(1976), 13, + ACTIONS(2110), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5663), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2112), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210120,20 +214786,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, - [84443] = 5, + [88564] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token5, - STATE(2709), 1, + ACTIONS(5665), 1, + anon_sym_DOT_DOT2, + STATE(2821), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(2118), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 12, + ACTIONS(5667), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2120), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210145,19 +214811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [84472] = 6, - ACTIONS(103), 1, + [88595] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1820), 1, sym__unquoted_pattern, - ACTIONS(2523), 1, - sym__space, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2710), 1, + STATE(2822), 1, sym_comment, - ACTIONS(2525), 13, + ACTIONS(886), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210169,20 +214831,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, - [84503] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88622] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5501), 1, - sym__space, - STATE(2711), 1, + STATE(2823), 1, sym_comment, - STATE(2840), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 13, + ACTIONS(5669), 16, + anon_sym_EQ, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210194,20 +214853,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - [84534] = 6, + [88647] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5503), 1, - sym__newline, - STATE(2712), 1, + ACTIONS(5671), 1, + anon_sym_EQ, + ACTIONS(5675), 1, + anon_sym_COLON, + STATE(2824), 1, sym_comment, - STATE(2814), 1, + STATE(3304), 1, + sym_param_type, + STATE(4776), 1, aux_sym__repeat_newline, - ACTIONS(5478), 13, + ACTIONS(5673), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210218,21 +214881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [84565] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + [88680] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__space, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2713), 1, + STATE(2825), 1, sym_comment, - ACTIONS(2569), 13, + ACTIONS(5677), 16, + anon_sym_EQ, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210244,18 +214901,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - [84596] = 5, + [88705] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5605), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2714), 1, + ACTIONS(5609), 1, + anon_sym_xor2, + ACTIONS(5681), 1, + anon_sym_or2, + STATE(2826), 1, sym_comment, - ACTIONS(5480), 14, + ACTIONS(5679), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210268,18 +214928,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [84625] = 5, + anon_sym_RBRACE, + [88736] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5607), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2715), 1, + ACTIONS(5611), 1, + anon_sym_xor2, + ACTIONS(5685), 1, + anon_sym_or2, + STATE(2827), 1, sym_comment, - ACTIONS(5482), 14, + ACTIONS(5683), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210292,17 +214953,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [84654] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [88767] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2716), 1, + STATE(2828), 1, sym_comment, - ACTIONS(2501), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 14, + ACTIONS(4758), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210316,19 +214973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [84681] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88792] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__space, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2717), 1, + STATE(2829), 1, sym_comment, - ACTIONS(2637), 13, + ACTIONS(5225), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210342,20 +214995,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84712] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, anon_sym_and2, - ACTIONS(5404), 1, anon_sym_xor2, - STATE(2647), 1, - aux_sym__repeat_newline, - STATE(2718), 1, + anon_sym_or2, + [88817] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2830), 1, sym_comment, - ACTIONS(5476), 12, + ACTIONS(5603), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210367,21 +215016,187 @@ static 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, - [84745] = 7, + [88842] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_DASH2, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2831), 1, + sym_comment, + STATE(2871), 1, + sym_path, + STATE(2937), 1, + sym_cell_path, + ACTIONS(1882), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88877] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + anon_sym_DASH2, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2832), 1, + sym_comment, + STATE(2871), 1, + sym_path, + STATE(3206), 1, + sym_cell_path, + ACTIONS(1888), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88912] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1914), 1, + anon_sym_DASH2, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2833), 1, + sym_comment, + STATE(2871), 1, + sym_path, + STATE(2990), 1, + sym_cell_path, + ACTIONS(1912), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88947] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1898), 1, + anon_sym_DASH2, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2834), 1, + sym_comment, + STATE(2871), 1, + sym_path, + STATE(3029), 1, + sym_cell_path, + ACTIONS(1896), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88982] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1902), 1, + anon_sym_DASH2, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2835), 1, + sym_comment, + STATE(2871), 1, + sym_path, + STATE(2914), 1, + sym_cell_path, + ACTIONS(1900), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89017] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(1864), 1, + anon_sym_DASH2, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2836), 1, + sym_comment, + STATE(2871), 1, + sym_path, + STATE(2925), 1, + sym_cell_path, + ACTIONS(1862), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(5436), 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, + [89052] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5536), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5540), 1, anon_sym_xor2, - STATE(2648), 1, + ACTIONS(5689), 1, + anon_sym_or2, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2719), 1, + STATE(2837), 1, sym_comment, - ACTIONS(5478), 12, + ACTIONS(5687), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210393,19 +215208,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, - [84778] = 6, + [89085] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5542), 1, anon_sym_xor2, - STATE(540), 1, + ACTIONS(5693), 1, + anon_sym_or2, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2720), 1, + STATE(2838), 1, sym_comment, - ACTIONS(5480), 13, + ACTIONS(5691), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210418,22 +215234,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_or2, - [84809] = 7, - ACTIONS(103), 1, + [89118] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - ACTIONS(5508), 1, - sym_short_flag_identifier, - STATE(2721), 1, + STATE(2839), 1, sym_comment, - STATE(3126), 1, - sym__flag_equals_value, - ACTIONS(5338), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5336), 11, + STATE(2865), 1, + aux_sym__repeat_newline, + ACTIONS(5695), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210445,18 +215253,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, - [84842] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89145] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2722), 1, + ACTIONS(5536), 1, + anon_sym_and2, + ACTIONS(5540), 1, + anon_sym_xor2, + ACTIONS(5689), 1, + anon_sym_or2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2840), 1, sym_comment, - ACTIONS(996), 13, + ACTIONS(5697), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210469,19 +215283,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, - [84873] = 6, - ACTIONS(103), 1, + [89178] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1018), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2723), 1, + STATE(2841), 1, sym_comment, - ACTIONS(1016), 13, + STATE(2866), 1, + aux_sym__repeat_newline, + ACTIONS(5699), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210494,19 +215303,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, - [84904] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5414), 1, anon_sym_and2, - ACTIONS(5416), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2724), 1, + anon_sym_or2, + [89205] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(2188), 1, + sym__space, + STATE(2842), 1, sym_comment, - ACTIONS(5482), 13, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2190), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210519,22 +215330,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [84935] = 7, + anon_sym_RBRACE, + [89236] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5526), 1, anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - ACTIONS(5512), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2725), 1, - sym_comment, - ACTIONS(5510), 12, + ACTIONS(5701), 1, sym__newline, + STATE(2843), 1, + sym_comment, + STATE(2888), 1, + aux_sym__repeat_newline, + ACTIONS(5695), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210546,21 +215354,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [84968] = 7, + anon_sym_xor2, + anon_sym_or2, + [89267] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - ACTIONS(5516), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2726), 1, - sym_comment, - ACTIONS(5514), 12, + ACTIONS(5704), 1, sym__newline, + STATE(2844), 1, + sym_comment, + STATE(2890), 1, + aux_sym__repeat_newline, + ACTIONS(5699), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210572,14 +215379,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85001] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [89298] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2652), 1, - aux_sym__repeat_newline, - STATE(2727), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(2178), 1, + sym__space, + STATE(2845), 1, sym_comment, - ACTIONS(5518), 15, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2180), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210592,24 +215405,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, + [89329] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5526), 1, anon_sym_and2, + ACTIONS(5560), 1, anon_sym_xor2, - anon_sym_or2, - [85028] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_DOT_DOT2, - STATE(2728), 1, + STATE(2846), 1, sym_comment, - ACTIONS(5346), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5398), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5344), 11, - sym__newline, + STATE(2895), 1, + aux_sym__repeat_newline, + ACTIONS(5695), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210620,15 +215430,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, - [85059] = 4, + anon_sym_RPAREN, + anon_sym_or2, + [89362] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2653), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5562), 1, + anon_sym_xor2, + STATE(2815), 1, aux_sym__repeat_newline, - STATE(2729), 1, + STATE(2847), 1, sym_comment, - ACTIONS(5520), 15, - sym__newline, + ACTIONS(5699), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210640,17 +215457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [85086] = 4, + [89395] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2700), 1, + STATE(2766), 1, aux_sym__repeat_newline, - STATE(2730), 1, + STATE(2848), 1, sym_comment, - ACTIONS(5522), 15, + ACTIONS(5707), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210666,14 +215481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85113] = 4, + [89422] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2702), 1, + STATE(2767), 1, aux_sym__repeat_newline, - STATE(2731), 1, + STATE(2849), 1, sym_comment, - ACTIONS(5524), 15, + ACTIONS(5709), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210689,18 +215504,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85140] = 6, + [89449] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5711), 1, sym__newline, - STATE(2714), 1, + STATE(2772), 1, aux_sym__repeat_newline, - STATE(2732), 1, + STATE(2850), 1, sym_comment, - ACTIONS(5522), 13, + ACTIONS(5707), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210714,19 +215529,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85171] = 6, - ACTIONS(103), 1, + [89480] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2144), 1, - sym__space, - STATE(2733), 1, - sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2146), 13, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5714), 1, sym__newline, + STATE(2776), 1, + aux_sym__repeat_newline, + STATE(2851), 1, + sym_comment, + ACTIONS(5709), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210738,20 +215552,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, - [85202] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [89511] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2148), 1, - sym__space, - STATE(2734), 1, - sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2150), 13, + ACTIONS(2907), 1, sym__newline, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2791), 1, + aux_sym__repeat_newline, + STATE(2852), 1, + sym_comment, + ACTIONS(5707), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210763,22 +215579,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, - [85233] = 7, + anon_sym_or2, + [89544] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5562), 1, anon_sym_xor2, - ACTIONS(5516), 1, - anon_sym_or2, - STATE(540), 1, + STATE(2793), 1, aux_sym__repeat_newline, - STATE(2735), 1, + STATE(2853), 1, sym_comment, - ACTIONS(5529), 12, - sym__newline, + ACTIONS(5709), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210790,18 +215605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85266] = 6, + anon_sym_or2, + [89577] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1724), 1, anon_sym_LPAREN2, - ACTIONS(2170), 1, + ACTIONS(2130), 1, sym__space, - STATE(2736), 1, + STATE(2854), 1, sym_comment, - STATE(5024), 1, + STATE(5171), 1, sym__expr_parenthesized_immediate, - ACTIONS(2172), 13, + ACTIONS(2132), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210815,18 +215631,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85297] = 6, + [89608] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1724), 1, anon_sym_LPAREN2, - ACTIONS(2072), 1, + ACTIONS(2184), 1, sym__space, - STATE(2737), 1, + STATE(2855), 1, sym_comment, - STATE(5024), 1, + STATE(5171), 1, sym__expr_parenthesized_immediate, - ACTIONS(2074), 13, + ACTIONS(2186), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210840,18 +215656,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85328] = 6, + [89639] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5531), 1, + ACTIONS(5223), 1, + anon_sym_DOT2, + ACTIONS(5717), 1, + anon_sym_DASH2, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2856), 1, + sym_comment, + STATE(2871), 1, + sym_path, + STATE(2937), 1, + sym_cell_path, + ACTIONS(5354), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(2656), 1, - aux_sym__repeat_newline, - STATE(2738), 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, + [89674] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2857), 1, sym_comment, - ACTIONS(5518), 13, + ACTIONS(5332), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210863,20 +215701,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85359] = 6, + [89699] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5534), 1, - sym__newline, - STATE(2657), 1, - aux_sym__repeat_newline, - STATE(2739), 1, + STATE(2858), 1, sym_comment, - ACTIONS(5520), 13, + ACTIONS(5332), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210888,20 +215723,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, - [85390] = 6, + [89724] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5537), 1, - sym__newline, - STATE(2715), 1, + ACTIONS(5542), 1, + anon_sym_xor2, + ACTIONS(5693), 1, + anon_sym_or2, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2740), 1, + STATE(2859), 1, sym_comment, - ACTIONS(5524), 13, + ACTIONS(5719), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210913,22 +215753,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [85421] = 7, + [89757] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(5723), 1, + anon_sym_EQ, + ACTIONS(5726), 1, sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2720), 1, + ACTIONS(5729), 1, + anon_sym_COLON, + ACTIONS(5732), 1, + anon_sym_DASH2, + STATE(4242), 1, aux_sym__repeat_newline, - STATE(2741), 1, + STATE(2860), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(3398), 2, + sym_param_type, + sym_param_value, + ACTIONS(5721), 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, + [89794] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2724), 1, + aux_sym__repeat_newline, + STATE(2861), 1, sym_comment, - ACTIONS(5522), 12, + ACTIONS(5734), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210940,21 +215801,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, - [85454] = 7, + [89821] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2724), 1, + STATE(2725), 1, aux_sym__repeat_newline, - STATE(2742), 1, + STATE(2862), 1, sym_comment, - ACTIONS(5524), 12, + ACTIONS(5736), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210966,19 +215824,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, - [85487] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5542), 1, anon_sym_and2, - ACTIONS(5544), 1, anon_sym_xor2, - ACTIONS(5546), 1, anon_sym_or2, - STATE(2743), 1, + [89848] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2863), 1, sym_comment, - ACTIONS(5540), 13, + ACTIONS(1645), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1647), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210990,20 +215849,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, - [85518] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [89875] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - ACTIONS(5552), 1, - anon_sym_xor2, - ACTIONS(5554), 1, - anon_sym_or2, - STATE(2744), 1, + ACTIONS(5641), 1, + anon_sym_EQ2, + ACTIONS(5738), 1, + sym_short_flag_identifier, + STATE(2864), 1, sym_comment, - ACTIONS(5548), 13, + STATE(3243), 1, + sym__flag_equals_value, + ACTIONS(5509), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5507), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211015,14 +215876,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, - [85549] = 3, + [89908] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2745), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2865), 1, sym_comment, - ACTIONS(4680), 16, + ACTIONS(5740), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211035,24 +215896,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85574] = 7, + [89935] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2660), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2746), 1, + STATE(2866), 1, sym_comment, - ACTIONS(5518), 12, + ACTIONS(5655), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211064,15 +215919,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, - [85607] = 4, - ACTIONS(3), 1, + [89962] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2747), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(5744), 1, + sym__space, + STATE(2867), 1, sym_comment, - STATE(2757), 1, - aux_sym__repeat_newline, - ACTIONS(5556), 15, + STATE(4930), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5742), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211085,17 +215946,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, - [85634] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [89993] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2748), 1, + ACTIONS(5617), 1, + anon_sym_DOT_DOT2, + STATE(2868), 1, sym_comment, - STATE(2758), 1, - aux_sym__repeat_newline, - ACTIONS(5558), 15, + ACTIONS(5473), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5619), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5471), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211107,22 +215972,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, - [85661] = 6, + [90024] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5526), 1, anon_sym_and2, - ACTIONS(5560), 1, + ACTIONS(5746), 1, sym__newline, - STATE(2749), 1, - sym_comment, - STATE(2766), 1, + STATE(2726), 1, aux_sym__repeat_newline, - ACTIONS(5556), 13, + STATE(2869), 1, + sym_comment, + ACTIONS(5734), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211136,18 +215997,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85692] = 6, + [90055] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5563), 1, - sym__newline, - STATE(2750), 1, + ACTIONS(5519), 1, + anon_sym_QMARK2, + STATE(2870), 1, sym_comment, - STATE(2767), 1, - aux_sym__repeat_newline, - ACTIONS(5558), 13, + ACTIONS(1450), 15, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211158,23 +216018,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_xor2, - anon_sym_or2, - [85723] = 7, + anon_sym_COLON, + anon_sym_DOT2, + [90082] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + STATE(2871), 1, + sym_comment, + ACTIONS(1547), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1549), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2751), 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, + [90109] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5749), 1, + anon_sym_EQ, + ACTIONS(5751), 1, + anon_sym_COLON, + STATE(2872), 1, sym_comment, - STATE(2773), 1, + STATE(3315), 1, + sym_param_type, + STATE(4602), 1, aux_sym__repeat_newline, - ACTIONS(5556), 12, + ACTIONS(5673), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211185,22 +216069,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, - [85756] = 7, - ACTIONS(3), 1, + [90142] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2752), 1, + STATE(2873), 1, sym_comment, - STATE(2774), 1, - aux_sym__repeat_newline, - ACTIONS(5558), 12, + ACTIONS(1770), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1772), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211212,21 +216090,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, - [85789] = 7, + anon_sym_RBRACE, + sym__unquoted_pattern, + [90169] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2661), 1, - aux_sym__repeat_newline, - STATE(2753), 1, + ACTIONS(5753), 1, + anon_sym_COLON, + STATE(2874), 1, sym_comment, - ACTIONS(5520), 12, + STATE(3219), 1, + sym_param_type, + STATE(4764), 1, + aux_sym__repeat_newline, + ACTIONS(5673), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211238,15 +216116,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, - [85822] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [90200] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2662), 1, - aux_sym__repeat_newline, - STATE(2754), 1, + STATE(2875), 1, sym_comment, - ACTIONS(5566), 15, + ACTIONS(1858), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1860), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211258,18 +216139,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + [90227] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2876), 1, + sym_comment, + ACTIONS(1562), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1564), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [85849] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [90254] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2663), 1, - aux_sym__repeat_newline, - STATE(2755), 1, + STATE(2877), 1, sym_comment, - ACTIONS(5568), 15, + ACTIONS(5755), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211282,20 +216181,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, - [85876] = 4, + [90279] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2756), 1, + STATE(2878), 1, sym_comment, - ACTIONS(1641), 4, - ts_builtin_sym_end, + ACTIONS(1852), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 12, + anon_sym_LPAREN2, + ACTIONS(1854), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211307,15 +216205,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [85903] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [90306] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2757), 1, + STATE(2879), 1, sym_comment, - ACTIONS(5570), 15, + ACTIONS(1496), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1498), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [90333] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2880), 1, + sym_comment, + ACTIONS(1870), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1872), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211328,17 +216252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [85930] = 4, + anon_sym_RBRACE, + sym__unquoted_pattern, + [90360] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2758), 1, + STATE(2881), 1, sym_comment, - ACTIONS(5572), 15, + ACTIONS(5757), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211351,21 +216272,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, - [85957] = 6, + [90385] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5574), 1, + ACTIONS(2907), 1, sym__newline, - STATE(2664), 1, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + ACTIONS(5647), 1, + anon_sym_or2, + STATE(2840), 1, aux_sym__repeat_newline, - STATE(2759), 1, + STATE(2882), 1, sym_comment, - ACTIONS(5566), 13, + ACTIONS(5759), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211377,23 +216303,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [85988] = 7, - ACTIONS(103), 1, + [90420] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - ACTIONS(5577), 1, - sym_long_flag_identifier, - STATE(2760), 1, + ACTIONS(5675), 1, + anon_sym_COLON, + ACTIONS(5761), 1, + anon_sym_EQ, + STATE(2883), 1, sym_comment, - STATE(3204), 1, - sym__flag_equals_value, - ACTIONS(4303), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4301), 11, + STATE(3311), 1, + sym_param_type, + STATE(4776), 1, + aux_sym__repeat_newline, + ACTIONS(5673), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211405,17 +216328,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, - [86021] = 4, + anon_sym_RPAREN, + [90453] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2761), 1, - sym_comment, - ACTIONS(1822), 4, - ts_builtin_sym_end, + ACTIONS(5493), 1, + anon_sym_EQ2, + ACTIONS(5765), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 12, + STATE(2884), 1, + sym_comment, + STATE(3164), 1, + sym__flag_equals_value, + ACTIONS(5763), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211427,19 +216352,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [86048] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90484] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(5581), 1, + ACTIONS(4530), 1, sym__space, - STATE(2762), 1, + ACTIONS(5493), 1, + anon_sym_EQ2, + STATE(2885), 1, sym_comment, - STATE(4626), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5579), 13, + STATE(3070), 1, + sym__flag_equals_value, + ACTIONS(4528), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211453,22 +216379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [86079] = 8, + [90515] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5605), 1, anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - ACTIONS(5585), 1, - anon_sym_or2, - STATE(2763), 1, + STATE(2886), 1, sym_comment, - STATE(2778), 1, - aux_sym__repeat_newline, - ACTIONS(5583), 11, + ACTIONS(5755), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211480,16 +216399,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86114] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [90542] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2764), 1, - sym_comment, - ACTIONS(1726), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 14, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5767), 1, sym__newline, + STATE(2727), 1, + aux_sym__repeat_newline, + STATE(2887), 1, + sym_comment, + ACTIONS(5736), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211501,20 +216425,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, - sym__unquoted_pattern, - [86141] = 6, + anon_sym_xor2, + anon_sym_or2, + [90573] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5536), 1, anon_sym_and2, - ACTIONS(5587), 1, - sym__newline, - STATE(2665), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2765), 1, + STATE(2888), 1, sym_comment, - ACTIONS(5568), 13, + ACTIONS(5740), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211528,16 +216451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [86172] = 5, + [90602] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2766), 1, + STATE(2889), 1, sym_comment, - ACTIONS(5570), 14, + ACTIONS(5332), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211550,18 +216469,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86201] = 5, + [90627] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5538), 1, anon_sym_and2, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2767), 1, + STATE(2890), 1, sym_comment, - ACTIONS(5572), 14, + ACTIONS(5655), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211576,16 +216497,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [86230] = 4, - ACTIONS(103), 1, + [90656] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2768), 1, - sym_comment, - ACTIONS(1802), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 14, + ACTIONS(2907), 1, sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5562), 1, + anon_sym_xor2, + ACTIONS(5651), 1, + anon_sym_or2, + STATE(2859), 1, + aux_sym__repeat_newline, + STATE(2891), 1, + sym_comment, + ACTIONS(5770), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211597,17 +216524,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, - sym__unquoted_pattern, - [86257] = 4, - ACTIONS(103), 1, + [90691] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2769), 1, + ACTIONS(5607), 1, + anon_sym_and2, + STATE(2892), 1, sym_comment, - ACTIONS(1870), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 14, + ACTIONS(5757), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211621,23 +216545,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [86284] = 8, + anon_sym_xor2, + anon_sym_or2, + [90718] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5436), 1, + ACTIONS(5526), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5560), 1, anon_sym_xor2, - ACTIONS(5592), 1, - anon_sym_or2, - STATE(2735), 1, + STATE(2728), 1, aux_sym__repeat_newline, - STATE(2770), 1, + STATE(2893), 1, sym_comment, - ACTIONS(5590), 11, + ACTIONS(5734), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211649,20 +216572,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86319] = 7, + anon_sym_or2, + [90751] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5402), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5562), 1, anon_sym_xor2, - STATE(2666), 1, + STATE(2729), 1, aux_sym__repeat_newline, - STATE(2771), 1, + STATE(2894), 1, sym_comment, - ACTIONS(5566), 12, + ACTIONS(5736), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211675,20 +216599,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [86352] = 7, + [90784] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5536), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5540), 1, anon_sym_xor2, - STATE(2667), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2772), 1, + STATE(2895), 1, sym_comment, - ACTIONS(5568), 12, + ACTIONS(5740), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211701,18 +216624,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [86385] = 6, + [90815] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2773), 1, + ACTIONS(5774), 1, + anon_sym_AT2, + STATE(2896), 1, sym_comment, - ACTIONS(5570), 13, + STATE(3107), 1, + sym_param_completer, + ACTIONS(5772), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211725,19 +216647,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, - [86416] = 6, + anon_sym_RBRACE, + [90844] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2774), 1, + ACTIONS(5774), 1, + anon_sym_AT2, + STATE(2897), 1, sym_comment, - ACTIONS(5572), 13, + STATE(3168), 1, + sym_param_completer, + ACTIONS(5776), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211750,15 +216671,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, - [86447] = 4, + anon_sym_RBRACE, + [90873] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2670), 1, - aux_sym__repeat_newline, - STATE(2775), 1, + ACTIONS(5605), 1, + anon_sym_and2, + ACTIONS(5609), 1, + anon_sym_xor2, + STATE(2898), 1, sym_comment, - ACTIONS(5400), 15, + ACTIONS(5755), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211771,25 +216694,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - [86474] = 8, + [90902] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - ACTIONS(5585), 1, - anon_sym_or2, - STATE(2725), 1, - aux_sym__repeat_newline, - STATE(2776), 1, + ACTIONS(5774), 1, + anon_sym_AT2, + STATE(2899), 1, sym_comment, - ACTIONS(5594), 11, + STATE(3163), 1, + sym_param_completer, + ACTIONS(5776), 14, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211801,22 +216719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86509] = 8, + anon_sym_RBRACE, + [90931] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - ACTIONS(5592), 1, - anon_sym_or2, - STATE(2726), 1, - aux_sym__repeat_newline, - STATE(2777), 1, + ACTIONS(5774), 1, + anon_sym_AT2, + STATE(2900), 1, sym_comment, - ACTIONS(5596), 11, + STATE(3195), 1, + sym_param_completer, + ACTIONS(5778), 14, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211828,20 +216743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86544] = 7, + anon_sym_RBRACE, + [90960] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5607), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5611), 1, anon_sym_xor2, - ACTIONS(5512), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2778), 1, + STATE(2901), 1, sym_comment, - ACTIONS(5598), 12, + ACTIONS(5757), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211854,12 +216766,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86577] = 3, + anon_sym_RBRACE, + anon_sym_or2, + [90989] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2779), 1, + ACTIONS(5675), 1, + anon_sym_COLON, + ACTIONS(5780), 1, + anon_sym_EQ, + STATE(2902), 1, sym_comment, - ACTIONS(5150), 16, + STATE(3318), 1, + sym_param_type, + STATE(4776), 1, + aux_sym__repeat_newline, + ACTIONS(5673), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211872,16 +216794,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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86602] = 3, + [91022] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2780), 1, + STATE(2903), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(5225), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211898,14 +216816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86627] = 4, - ACTIONS(3), 1, + [91047] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2671), 1, - aux_sym__repeat_newline, - STATE(2781), 1, + ACTIONS(1022), 1, + sym__space, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2904), 1, sym_comment, - ACTIONS(5458), 15, + ACTIONS(1020), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211918,15 +216840,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86654] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [91078] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2782), 1, + ACTIONS(5653), 1, + sym__space, + STATE(2905), 1, sym_comment, - ACTIONS(5150), 16, + STATE(2944), 1, + aux_sym_attribute_repeat1, + ACTIONS(5782), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211940,15 +216864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86679] = 3, + [91106] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2783), 1, + STATE(2906), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(5517), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211960,22 +216882,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86704] = 4, - ACTIONS(103), 1, + [91130] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2784), 1, + STATE(2907), 1, sym_comment, - ACTIONS(1874), 4, + ACTIONS(5332), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1876), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211987,40 +216903,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [86731] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [91154] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - ACTIONS(5602), 1, - anon_sym_DASH2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2785), 1, + STATE(2908), 1, sym_comment, - STATE(2826), 1, - sym_cell_path, - ACTIONS(5600), 11, + ACTIONS(5784), 15, anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [86766] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2786), 1, - sym_comment, - ACTIONS(5150), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212033,50 +216925,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_GT2, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86791] = 9, + [91178] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5606), 1, + ACTIONS(5786), 1, + anon_sym_AT2, + STATE(2909), 1, + sym_comment, + STATE(3351), 1, + sym_param_completer, + ACTIONS(5778), 13, + ts_builtin_sym_end, anon_sym_EQ, - ACTIONS(5609), 1, sym__newline, - ACTIONS(5612), 1, - anon_sym_COLON, - ACTIONS(5615), 1, - anon_sym_DASH2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(2787), 2, - sym_comment, - aux_sym_parameter_repeat1, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5604), 8, - sym_identifier, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [86828] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [91206] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5617), 1, - sym__newline, - STATE(2674), 1, - aux_sym__repeat_newline, - STATE(2788), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(2910), 1, sym_comment, - ACTIONS(5400), 13, + ACTIONS(2597), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2599), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212087,21 +216974,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, + [91236] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5790), 1, + anon_sym_DASH2, + ACTIONS(5792), 1, + anon_sym_DOT_DOT2, + STATE(2911), 1, + sym_comment, + ACTIONS(5794), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5788), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [86859] = 6, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [91266] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5340), 1, - anon_sym_EQ2, - ACTIONS(5622), 1, - sym__space, - STATE(2789), 1, + STATE(2912), 1, sym_comment, - STATE(2955), 1, - sym__flag_equals_value, - ACTIONS(5620), 13, + ACTIONS(5796), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212114,19 +217017,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_GT2, anon_sym_RBRACE, - [86890] = 6, + [91290] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - sym__space, - ACTIONS(5340), 1, - anon_sym_EQ2, - STATE(2790), 1, + STATE(2913), 1, sym_comment, - STATE(3070), 1, - sym__flag_equals_value, - ACTIONS(4365), 13, + ACTIONS(2142), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2144), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212140,49 +217041,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [86921] = 8, + [91316] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1864), 1, anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2791), 1, + STATE(2914), 1, sym_comment, - STATE(2826), 1, - sym_cell_path, - ACTIONS(1850), 11, + ACTIONS(1862), 14, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [86956] = 8, + [91342] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2792), 1, + STATE(2915), 1, sym_comment, - STATE(2934), 1, - sym_cell_path, - ACTIONS(1862), 11, + ACTIONS(1647), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1645), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -212194,76 +217083,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [86991] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [91368] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1868), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2793), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(2916), 1, sym_comment, - STATE(2843), 1, - sym_cell_path, - ACTIONS(1866), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1973), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1975), 11, 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, + [91398] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2917), 1, + sym_comment, + ACTIONS(5275), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5798), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [87026] = 8, - ACTIONS(3), 1, + anon_sym_RBRACE, + [91424] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2794), 1, + STATE(2918), 1, sym_comment, - STATE(3032), 1, - sym_cell_path, - ACTIONS(1878), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1770), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1772), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + sym__unquoted_pattern, + [91450] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5800), 1, + sym__newline, + STATE(882), 1, + aux_sym__pipe_separator, + STATE(2919), 1, + sym_comment, + STATE(3546), 1, + aux_sym__repeat_newline, + ACTIONS(5803), 3, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [87061] = 8, + anon_sym_RBRACE, + ACTIONS(2325), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [91482] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2920), 1, + sym_comment, + ACTIONS(2589), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2591), 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, + [91512] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1884), 1, + ACTIONS(2104), 1, anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2795), 1, + ACTIONS(5805), 1, + anon_sym_DOT_DOT2, + STATE(2921), 1, sym_comment, - STATE(2899), 1, - sym_cell_path, - ACTIONS(1882), 11, + ACTIONS(5807), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2102), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212275,22 +217226,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87096] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2796), 1, + [91542] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2112), 1, + anon_sym_DASH2, + ACTIONS(5809), 1, + anon_sym_DOT_DOT2, + STATE(2922), 1, sym_comment, - STATE(2914), 1, - sym_cell_path, - ACTIONS(1858), 11, + ACTIONS(5811), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2110), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212302,12 +217250,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87131] = 3, + [91572] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2797), 1, + ACTIONS(5786), 1, + anon_sym_AT2, + STATE(2923), 1, sym_comment, - ACTIONS(5269), 16, + STATE(3268), 1, + sym_param_completer, + ACTIONS(5776), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212319,17 +217273,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_and2, - anon_sym_xor2, - anon_sym_or2, - [87156] = 3, + [91600] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2798), 1, + STATE(2924), 1, sym_comment, - ACTIONS(5624), 16, + ACTIONS(5813), 15, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212343,40 +217294,38 @@ 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, - [87181] = 3, + [91624] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2799), 1, + ACTIONS(2622), 1, + anon_sym_DASH2, + STATE(2925), 1, sym_comment, - ACTIONS(5626), 16, + ACTIONS(2620), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87206] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [91650] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - STATE(2800), 1, + ACTIONS(5255), 1, + anon_sym_EQ2, + STATE(2926), 1, sym_comment, - ACTIONS(5624), 15, + ACTIONS(5815), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212387,18 +217336,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [87233] = 4, + anon_sym_COLON2, + [91676] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - STATE(2801), 1, + STATE(2927), 1, + sym_comment, + ACTIONS(1860), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1858), 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, + [91702] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2928), 1, sym_comment, - ACTIONS(5626), 15, + ACTIONS(5255), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5815), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212412,18 +217382,16 @@ 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, - [87260] = 5, - ACTIONS(3), 1, + [91728] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - ACTIONS(5544), 1, - anon_sym_xor2, - STATE(2802), 1, + STATE(2929), 1, sym_comment, - ACTIONS(5624), 14, + ACTIONS(1852), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1854), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212435,20 +217403,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_or2, - [87289] = 5, - ACTIONS(3), 1, + sym__unquoted_pattern, + [91754] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - ACTIONS(5552), 1, - anon_sym_xor2, - STATE(2803), 1, + ACTIONS(5281), 1, + anon_sym_EQ2, + STATE(2930), 1, sym_comment, - ACTIONS(5626), 14, + ACTIONS(5817), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212459,21 +217424,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_or2, - [87318] = 6, - ACTIONS(3), 1, + anon_sym_COLON2, + [91780] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5628), 1, - sym__newline, - STATE(2675), 1, - aux_sym__repeat_newline, - STATE(2804), 1, + STATE(2931), 1, sym_comment, - ACTIONS(5458), 13, + ACTIONS(2525), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2527), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212484,15 +217447,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, - [87349] = 3, - ACTIONS(3), 1, + sym__unquoted_pattern, + [91806] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2805), 1, + ACTIONS(5653), 1, + sym__space, + STATE(2932), 1, sym_comment, - ACTIONS(5631), 16, + STATE(3020), 1, + aux_sym_attribute_repeat1, + ACTIONS(5465), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212506,40 +217471,108 @@ 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, - [87374] = 4, + [91834] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(5823), 1, + anon_sym_RBRACK, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2933), 1, + sym_comment, + STATE(2976), 1, + aux_sym__repeat_newline, + STATE(3299), 1, + aux_sym_parameter_parens_repeat1, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [91886] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(5833), 1, + anon_sym_RPAREN, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2934), 1, + sym_comment, + STATE(2982), 1, aux_sym__repeat_newline, - STATE(2806), 1, + STATE(3307), 1, + aux_sym_parameter_parens_repeat1, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [91938] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5792), 1, + anon_sym_DOT_DOT2, + ACTIONS(5837), 1, + anon_sym_DASH2, + STATE(2935), 1, sym_comment, - ACTIONS(5406), 15, + ACTIONS(5794), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5835), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87401] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [91968] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2807), 1, + STATE(2936), 1, sym_comment, - ACTIONS(5412), 15, + ACTIONS(1549), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212551,41 +217584,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_and2, - anon_sym_xor2, - anon_sym_or2, - [87428] = 3, + anon_sym_COLON, + anon_sym_DOT2, + [91992] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2808), 1, + ACTIONS(1914), 1, + anon_sym_DASH2, + STATE(2937), 1, sym_comment, - ACTIONS(5633), 16, + ACTIONS(1912), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87453] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [92018] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - STATE(2809), 1, + ACTIONS(5275), 1, + anon_sym_EQ2, + STATE(2938), 1, sym_comment, - ACTIONS(5631), 15, + ACTIONS(5798), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212596,43 +217628,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_xor2, - anon_sym_or2, - [87480] = 4, + anon_sym_COLON2, + [92044] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - STATE(2810), 1, + ACTIONS(5839), 1, + sym_identifier, + ACTIONS(5844), 1, + anon_sym_DOLLAR, + ACTIONS(5847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_DASH_DASH, + ACTIONS(5853), 1, + anon_sym_DASH2, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + STATE(2939), 2, sym_comment, - ACTIONS(5633), 15, - sym__newline, - anon_sym_SEMI, + aux_sym_parameter_parens_repeat1, + ACTIONS(5842), 3, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [87507] = 5, + [92090] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2811), 1, + ACTIONS(5786), 1, + anon_sym_AT2, + STATE(2940), 1, sym_comment, - ACTIONS(5406), 14, + STATE(3263), 1, + sym_param_completer, + ACTIONS(5776), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212644,19 +217685,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, - [87536] = 5, - ACTIONS(3), 1, + [92118] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - ACTIONS(5544), 1, - anon_sym_xor2, - STATE(2812), 1, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(2941), 1, sym_comment, - ACTIONS(5631), 14, + ACTIONS(2648), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2650), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212668,19 +217709,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_or2, - [87565] = 5, - ACTIONS(3), 1, + [92148] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - ACTIONS(5552), 1, - anon_sym_xor2, - STATE(2813), 1, + ACTIONS(5641), 1, + anon_sym_EQ2, + STATE(2942), 1, sym_comment, - ACTIONS(5633), 14, + STATE(3364), 1, + sym__flag_equals_value, + ACTIONS(4530), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4528), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212692,19 +217733,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, - anon_sym_or2, - [87594] = 5, + [92178] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2814), 1, + STATE(2943), 1, + sym_comment, + ACTIONS(1580), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1582), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [92204] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5653), 1, + sym__space, + STATE(2944), 1, sym_comment, - ACTIONS(5412), 14, + STATE(3004), 1, + aux_sym_attribute_repeat1, + ACTIONS(5856), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212717,17 +217777,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [87623] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [92232] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(2815), 1, + STATE(2945), 1, sym_comment, - ACTIONS(968), 15, + ACTIONS(1870), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1872), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212739,22 +217799,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87650] = 6, + sym__unquoted_pattern, + [92258] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(2816), 1, + STATE(2946), 1, sym_comment, - ACTIONS(1964), 2, + ACTIONS(1956), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1966), 11, + ACTIONS(1958), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212766,16 +217824,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, - [87680] = 4, + [92288] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2817), 1, - sym_comment, - ACTIONS(1802), 3, + ACTIONS(5469), 1, + anon_sym_EQ2, + ACTIONS(5858), 1, ts_builtin_sym_end, + ACTIONS(5860), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 12, + STATE(2947), 1, + sym_comment, + STATE(3064), 1, + aux_sym_attribute_repeat1, + ACTIONS(5465), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212787,63 +217849,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [87706] = 7, + [92320] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5635), 1, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5821), 1, sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2818), 1, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(5862), 1, + anon_sym_RBRACK, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2948), 1, sym_comment, - STATE(3365), 1, + STATE(3001), 1, aux_sym__repeat_newline, - ACTIONS(5638), 3, - anon_sym_SEMI, + STATE(3272), 1, + aux_sym_parameter_parens_repeat1, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [92372] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(5864), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2303), 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, - [87738] = 4, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2949), 1, + sym_comment, + STATE(3002), 1, + aux_sym__repeat_newline, + STATE(3353), 1, + aux_sym_parameter_parens_repeat1, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [92424] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2819), 1, - sym_comment, - ACTIONS(1870), 3, - ts_builtin_sym_end, - sym__space, + ACTIONS(2612), 1, anon_sym_LPAREN2, - ACTIONS(1872), 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, + ACTIONS(2614), 1, sym__unquoted_pattern, - [87764] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2820), 1, + STATE(2950), 1, sym_comment, - ACTIONS(2084), 2, + ACTIONS(1713), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2086), 13, + ACTIONS(1614), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212855,21 +217943,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, - [87790] = 6, + [92454] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, + ACTIONS(2120), 1, anon_sym_DASH2, - ACTIONS(5644), 1, + ACTIONS(5866), 1, anon_sym_DOT_DOT2, - STATE(2821), 1, + STATE(2951), 1, sym_comment, - ACTIONS(5646), 2, + ACTIONS(5868), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5640), 11, + ACTIONS(2118), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212881,15 +217967,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87820] = 4, + [92484] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2822), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2952), 1, sym_comment, - ACTIONS(5257), 2, + ACTIONS(1022), 2, + ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5259), 13, + ACTIONS(1020), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212901,21 +217991,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, - [87846] = 6, - ACTIONS(3), 1, + [92514] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - ACTIONS(5652), 1, - anon_sym_or2, - STATE(2823), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2953), 1, sym_comment, - ACTIONS(5540), 12, + ACTIONS(1030), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(994), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212927,19 +218015,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, - [87876] = 6, - ACTIONS(103), 1, + [92544] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2824), 1, + STATE(2954), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2144), 2, + ACTIONS(5755), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2146), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212951,63 +218033,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, - [87906] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92568] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5654), 1, - aux_sym__immediate_decimal_token5, - STATE(2825), 1, + STATE(2955), 1, sym_comment, - ACTIONS(1804), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 11, - anon_sym_EQ, + ACTIONS(5225), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [87934] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92592] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - anon_sym_DASH2, - STATE(2826), 1, - sym_comment, - ACTIONS(1866), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(5870), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + STATE(882), 1, + aux_sym__pipe_separator, + STATE(2956), 1, + sym_comment, + STATE(3546), 1, + aux_sym__repeat_newline, + ACTIONS(5873), 3, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [87960] = 6, + anon_sym_RBRACE, + ACTIONS(2325), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [92624] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - ACTIONS(5660), 1, - anon_sym_or2, - STATE(2827), 1, + ACTIONS(5875), 1, + anon_sym_COLON, + STATE(2957), 1, sym_comment, - ACTIONS(5548), 12, + STATE(3372), 1, + sym_param_type, + STATE(4623), 1, + aux_sym__repeat_newline, + ACTIONS(5673), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213020,46 +218106,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, - [87990] = 14, + [92654] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5662), 1, + ACTIONS(5819), 1, sym_identifier, - ACTIONS(5667), 1, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(5825), 1, anon_sym_DOLLAR, - ACTIONS(5670), 1, + ACTIONS(5827), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5673), 1, + ACTIONS(5829), 1, anon_sym_DASH_DASH, - ACTIONS(5676), 1, + ACTIONS(5831), 1, anon_sym_DASH2, - STATE(2467), 1, + ACTIONS(5877), 1, + anon_sym_PIPE, + STATE(2550), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2684), 1, sym__param_name, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, + STATE(2958), 1, + sym_comment, + STATE(3356), 1, + aux_sym_parameter_parens_repeat1, + STATE(3374), 1, sym_param_rest, - STATE(3328), 1, + STATE(3375), 1, sym_param_opt, - STATE(3582), 1, + STATE(3385), 1, + sym_param_short_flag, + STATE(3400), 1, + aux_sym__repeat_newline, + STATE(3761), 1, sym_parameter, - STATE(2828), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(5665), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [88036] = 4, + [92706] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5287), 1, + ACTIONS(5235), 1, anon_sym_EQ2, - STATE(2829), 1, + STATE(2959), 1, sym_comment, - ACTIONS(5289), 14, + ACTIONS(5879), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -213074,19 +218163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [88062] = 6, + [92732] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - STATE(2830), 1, + ACTIONS(5213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2960), 1, sym_comment, - STATE(3135), 1, - sym__flag_equals_value, - ACTIONS(4367), 2, + ACTIONS(1744), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4365), 11, + ACTIONS(1746), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213098,14 +218187,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, - [88092] = 3, - ACTIONS(3), 1, + [92762] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2831), 1, + ACTIONS(5239), 1, + anon_sym_EQ2, + STATE(2961), 1, sym_comment, - ACTIONS(4680), 15, - ts_builtin_sym_end, + ACTIONS(5883), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213116,22 +218207,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88116] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [92788] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2832), 1, + ACTIONS(5885), 1, + anon_sym_LT, + STATE(2962), 1, sym_comment, - STATE(4646), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5581), 2, + ACTIONS(5245), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(5579), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213143,15 +218230,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, - [88146] = 4, - ACTIONS(103), 1, + anon_sym_AT2, + [92814] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2833), 1, + ACTIONS(5887), 1, + anon_sym_LT, + STATE(2963), 1, sym_comment, - ACTIONS(5241), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5243), 13, + ACTIONS(5245), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213163,21 +218252,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, - [88172] = 6, - ACTIONS(103), 1, + anon_sym_AT2, + [92840] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2834), 1, + ACTIONS(5786), 1, + anon_sym_AT2, + STATE(2964), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2148), 2, + STATE(3287), 1, + sym_param_completer, + ACTIONS(5772), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2150), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213189,16 +218276,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, - [88202] = 4, - ACTIONS(103), 1, + [92868] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5253), 1, - anon_sym_EQ2, - STATE(2835), 1, + STATE(2965), 1, sym_comment, - ACTIONS(5255), 14, + ACTIONS(5603), 15, + ts_builtin_sym_end, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213209,18 +218294,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_RBRACE, - anon_sym_COLON2, - [88228] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92892] = 17, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2836), 1, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(5889), 1, + anon_sym_PIPE, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2958), 1, + aux_sym__repeat_newline, + STATE(2966), 1, + sym_comment, + STATE(3253), 1, + aux_sym_parameter_parens_repeat1, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [92944] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2967), 1, sym_comment, - ACTIONS(2501), 3, + ACTIONS(5757), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213232,20 +218350,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [88254] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92968] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2837), 1, + ACTIONS(5891), 1, + anon_sym_and2, + ACTIONS(5893), 1, + anon_sym_xor2, + ACTIONS(5895), 1, + anon_sym_or2, + STATE(2968), 1, sym_comment, - ACTIONS(994), 2, + ACTIONS(5679), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(996), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213257,19 +218377,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, - [88284] = 6, - ACTIONS(103), 1, + [92998] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2838), 1, + STATE(2969), 1, sym_comment, - ACTIONS(1018), 2, + ACTIONS(1564), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1016), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213281,16 +218396,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, - [88314] = 5, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_DOT2, + [93022] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - STATE(2839), 1, + ACTIONS(5897), 1, + anon_sym_and2, + ACTIONS(5899), 1, + anon_sym_xor2, + ACTIONS(5901), 1, + anon_sym_or2, + STATE(2970), 1, sym_comment, - STATE(2867), 1, - aux_sym_attribute_repeat1, - ACTIONS(5679), 13, + ACTIONS(5683), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213302,18 +218422,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [88342] = 5, - ACTIONS(103), 1, + [93052] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - STATE(2840), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + ACTIONS(5903), 1, + anon_sym_DOT, + STATE(2971), 1, sym_comment, - STATE(2857), 1, - aux_sym_attribute_repeat1, - ACTIONS(5681), 13, + STATE(3740), 1, + sym__immediate_decimal, + ACTIONS(5905), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5907), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3888), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1598), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [93092] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(856), 1, + sym_raw_string_begin, + ACTIONS(3130), 1, + anon_sym_DQUOTE, + ACTIONS(3132), 1, + anon_sym_SQUOTE, + ACTIONS(3134), 1, + anon_sym_BQUOTE, + ACTIONS(3136), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3138), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5909), 1, + aux_sym_env_var_token1, + STATE(2972), 1, + sym_comment, + STATE(3094), 1, + sym__inter_single_quotes, + STATE(3095), 1, + sym__inter_double_quotes, + STATE(4787), 2, + sym_val_string, + sym_val_interpolated, + STATE(2483), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [93136] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5891), 1, + anon_sym_and2, + STATE(2973), 1, + sym_comment, + ACTIONS(5755), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213325,14 +218502,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, - [88370] = 3, + anon_sym_xor2, + anon_sym_or2, + [93162] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2841), 1, + STATE(2974), 1, sym_comment, - ACTIONS(5150), 15, + ACTIONS(5225), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213348,16 +218525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88394] = 4, - ACTIONS(103), 1, + [93186] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5241), 1, - anon_sym_EQ2, - STATE(2842), 1, + STATE(2975), 1, sym_comment, - ACTIONS(5243), 14, + ACTIONS(5911), 15, + anon_sym_else, + anon_sym_catch, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213368,36 +218544,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [88420] = 4, + [93210] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2521), 1, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, anon_sym_DASH2, - STATE(2843), 1, + ACTIONS(5913), 1, + anon_sym_RBRACK, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2976), 1, sym_comment, - ACTIONS(2519), 14, - anon_sym_EQ, + STATE(3319), 1, + aux_sym_parameter_parens_repeat1, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3400), 1, + aux_sym__repeat_newline, + STATE(3761), 1, + sym_parameter, + [93262] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5915), 1, + aux_sym__immediate_decimal_token5, + STATE(2977), 1, + sym_comment, + ACTIONS(1854), 3, sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1852), 11, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [88446] = 3, + anon_sym_LPAREN2, + [93290] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2978), 1, + sym_comment, + ACTIONS(5235), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5879), 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, + [93316] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2844), 1, + STATE(2979), 1, sym_comment, - ACTIONS(5269), 15, + ACTIONS(5332), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213413,12 +218647,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88470] = 3, + [93340] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2845), 1, + STATE(2980), 1, sym_comment, - ACTIONS(5150), 15, + ACTIONS(5225), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213434,22 +218668,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88494] = 7, + [93364] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5683), 1, + STATE(2981), 1, + sym_comment, + ACTIONS(1498), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2846), 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_COLON, + anon_sym_DOT2, + [93388] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(5917), 1, + anon_sym_RPAREN, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2982), 1, sym_comment, - STATE(3365), 1, + STATE(3321), 1, + aux_sym_parameter_parens_repeat1, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3400), 1, + aux_sym__repeat_newline, + STATE(3761), 1, + sym_parameter, + [93440] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5675), 1, + anon_sym_COLON, + ACTIONS(5919), 1, + anon_sym_EQ, + STATE(2983), 1, + sym_comment, + STATE(3459), 1, + sym_param_type, + STATE(4776), 1, aux_sym__repeat_newline, - ACTIONS(5686), 3, + ACTIONS(5673), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [93472] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5294), 1, + anon_sym_EQ2, + STATE(2984), 1, + sym_comment, + ACTIONS(5921), 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, - ACTIONS(2303), 9, + anon_sym_COLON2, + [93498] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5891), 1, + anon_sym_and2, + STATE(2985), 1, + sym_comment, + ACTIONS(5603), 14, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -213459,80 +218791,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, - [88526] = 17, + anon_sym_xor2, + anon_sym_or2, + [93524] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5792), 1, + anon_sym_DOT_DOT2, + ACTIONS(5925), 1, + anon_sym_DASH2, + STATE(2986), 1, + sym_comment, + ACTIONS(5794), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5923), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(5690), 1, sym__newline, - ACTIONS(5692), 1, anon_sym_PIPE, - ACTIONS(5694), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2847), 1, - sym_comment, - STATE(2852), 1, - aux_sym__repeat_newline, - STATE(3179), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [88578] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5702), 1, - aux_sym_env_var_token1, - STATE(2848), 1, - sym_comment, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - STATE(4745), 2, - sym_val_string, - sym_val_interpolated, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [88622] = 3, - ACTIONS(3), 1, + [93554] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2849), 1, + STATE(2987), 1, sym_comment, - ACTIONS(5704), 15, - anon_sym_else, - anon_sym_catch, + ACTIONS(5239), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5883), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213546,12 +218839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88646] = 3, + [93580] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2850), 1, + STATE(2988), 1, sym_comment, - ACTIONS(5269), 15, + ACTIONS(5332), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213567,13 +218860,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88670] = 3, + [93604] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2851), 1, + ACTIONS(5927), 1, + anon_sym_AT2, + STATE(2989), 1, sym_comment, - ACTIONS(5150), 15, - ts_builtin_sym_end, + STATE(3107), 1, + sym_param_completer, + ACTIONS(5772), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213585,51 +218881,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88694] = 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93632] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(2539), 1, + anon_sym_DASH2, + STATE(2990), 1, + sym_comment, + ACTIONS(2537), 14, + anon_sym_EQ, sym_identifier, - ACTIONS(5690), 1, sym__newline, - ACTIONS(5694), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5706), 1, - anon_sym_PIPE, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2852), 1, - sym_comment, - STATE(3151), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [88746] = 3, + [93658] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2853), 1, + ACTIONS(5927), 1, + anon_sym_AT2, + STATE(2991), 1, sym_comment, - ACTIONS(5269), 15, - ts_builtin_sym_end, + STATE(3168), 1, + sym_param_completer, + ACTIONS(5776), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213641,16 +218926,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88770] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93686] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2854), 1, + ACTIONS(5927), 1, + anon_sym_AT2, + STATE(2992), 1, sym_comment, - ACTIONS(5624), 15, - ts_builtin_sym_end, + STATE(3163), 1, + sym_param_completer, + ACTIONS(5776), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213662,16 +218949,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88794] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93714] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2855), 1, + ACTIONS(5927), 1, + anon_sym_AT2, + STATE(2993), 1, sym_comment, - ACTIONS(5626), 15, - ts_builtin_sym_end, + STATE(3195), 1, + sym_param_completer, + ACTIONS(5778), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213683,18 +218972,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, - [88818] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93742] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - STATE(2856), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2994), 1, sym_comment, - ACTIONS(5624), 14, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2130), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2132), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213706,17 +218998,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_xor2, - anon_sym_or2, - [88844] = 4, + [93772] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5710), 1, - sym__space, - STATE(2857), 2, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2995), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5708), 13, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2184), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2186), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213728,17 +219022,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [88870] = 4, - ACTIONS(3), 1, + [93802] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - STATE(2858), 1, + STATE(2996), 1, sym_comment, - ACTIONS(5626), 14, - ts_builtin_sym_end, + ACTIONS(5281), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5817), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213750,18 +219042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [88896] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, + ACTIONS(5897), 1, anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - STATE(2859), 1, + STATE(2997), 1, sym_comment, - ACTIONS(5624), 13, + ACTIONS(5517), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213774,17 +219064,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, anon_sym_or2, - [88924] = 5, + [93854] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, + ACTIONS(5891), 1, anon_sym_and2, - ACTIONS(5658), 1, + ACTIONS(5893), 1, anon_sym_xor2, - STATE(2860), 1, + STATE(2998), 1, sym_comment, - ACTIONS(5626), 13, + ACTIONS(5603), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213798,12 +219089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_or2, - [88952] = 3, + [93882] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2861), 1, + STATE(2999), 1, sym_comment, - ACTIONS(5631), 15, + ACTIONS(4758), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213819,13 +219110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88976] = 3, - ACTIONS(3), 1, + [93906] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2862), 1, + ACTIONS(2088), 1, + sym__space, + ACTIONS(5929), 1, + anon_sym_LBRACK2, + STATE(3000), 1, sym_comment, - ACTIONS(5633), 15, - ts_builtin_sym_end, + ACTIONS(2090), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213837,40 +219131,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [89000] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93934] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2863), 1, - sym_comment, - ACTIONS(1556), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1558), 13, - anon_sym_EQ, + ACTIONS(5819), 1, sym_identifier, + ACTIONS(5821), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(5931), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(3001), 1, + sym_comment, + STATE(3363), 1, + aux_sym_parameter_parens_repeat1, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3400), 1, + aux_sym__repeat_newline, + STATE(3761), 1, + sym_parameter, + [93986] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(5825), 1, anon_sym_DOLLAR, + ACTIONS(5827), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [89026] = 4, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(5933), 1, + anon_sym_RPAREN, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(3002), 1, + sym_comment, + STATE(3218), 1, + aux_sym_parameter_parens_repeat1, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3400), 1, + aux_sym__repeat_newline, + STATE(3761), 1, + sym_parameter, + [94038] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - STATE(2864), 1, + ACTIONS(5675), 1, + anon_sym_COLON, + ACTIONS(5935), 1, + anon_sym_EQ, + STATE(3003), 1, sym_comment, - ACTIONS(5631), 14, - ts_builtin_sym_end, + STATE(3500), 1, + sym_param_type, + STATE(4776), 1, + aux_sym__repeat_newline, + ACTIONS(5673), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213882,17 +219228,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_xor2, - anon_sym_or2, - [89052] = 4, - ACTIONS(3), 1, + [94070] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - STATE(2865), 1, + ACTIONS(5939), 1, + sym__space, + STATE(3004), 2, sym_comment, - ACTIONS(5633), 14, - ts_builtin_sym_end, + aux_sym_attribute_repeat1, + ACTIONS(5937), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213904,42 +219248,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_xor2, - anon_sym_or2, - [89078] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94096] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - ACTIONS(5715), 1, - anon_sym_DASH2, - STATE(2866), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(3005), 1, sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5713), 11, - anon_sym_EQ, - sym_identifier, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2188), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2190), 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, - [89108] = 5, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [94126] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - STATE(2857), 1, - aux_sym_attribute_repeat1, - STATE(2867), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(3006), 1, sym_comment, - ACTIONS(5717), 13, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2178), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2180), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213951,17 +219298,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, - [89136] = 4, + [94156] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2868), 1, - sym_comment, - ACTIONS(1824), 2, + ACTIONS(1614), 1, anon_sym_DASH2, + ACTIONS(5792), 1, anon_sym_DOT_DOT2, - ACTIONS(1822), 13, + STATE(3007), 1, + sym_comment, + ACTIONS(5794), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1713), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -213973,18 +219322,43 @@ 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, - [89162] = 4, + [94186] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5897), 1, + anon_sym_and2, + ACTIONS(5899), 1, + anon_sym_xor2, + STATE(3008), 1, + sym_comment, + ACTIONS(5517), 13, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [94214] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5221), 1, + ACTIONS(5469), 1, anon_sym_EQ2, - STATE(2869), 1, - sym_comment, - ACTIONS(5223), 14, + ACTIONS(5942), 1, sym__newline, + ACTIONS(5944), 1, sym__space, + STATE(3009), 1, + sym_comment, + STATE(3115), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5946), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213995,18 +219369,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_RBRACE, - anon_sym_COLON2, - [89188] = 4, + anon_sym_RPAREN, + [94246] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_EQ2, - STATE(2870), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(3010), 1, sym_comment, - ACTIONS(5239), 14, - sym__newline, + STATE(4807), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5744), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(5742), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214017,21 +219394,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, - anon_sym_COLON2, - [89214] = 6, + [94276] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - ACTIONS(5721), 1, + ACTIONS(2156), 1, anon_sym_DASH2, - STATE(2871), 1, + ACTIONS(5948), 1, + anon_sym_DOT_DOT2, + STATE(3011), 1, sym_comment, - ACTIONS(5646), 2, + ACTIONS(5950), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5719), 11, + ACTIONS(2154), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -214043,19 +219418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89244] = 6, + [94306] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2872), 1, + ACTIONS(5641), 1, + anon_sym_EQ2, + STATE(3012), 1, sym_comment, - ACTIONS(2635), 2, + STATE(3341), 1, + sym__flag_equals_value, + ACTIONS(5765), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2637), 11, + ACTIONS(5763), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214067,19 +219442,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, - [89274] = 6, + [94336] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2873), 1, + STATE(3013), 1, sym_comment, - ACTIONS(2575), 2, - ts_builtin_sym_end, + ACTIONS(5294), 2, sym__space, - ACTIONS(2577), 11, + anon_sym_EQ2, + ACTIONS(5921), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214091,16 +219462,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, - [89304] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94362] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_EQ2, - STATE(2874), 1, + ACTIONS(5897), 1, + anon_sym_and2, + STATE(3014), 1, sym_comment, - ACTIONS(5259), 14, + ACTIONS(5757), 14, + ts_builtin_sym_end, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214111,21 +219484,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, - anon_sym_COLON2, - [89330] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [94388] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2875), 1, + ACTIONS(5891), 1, + anon_sym_and2, + ACTIONS(5893), 1, + anon_sym_xor2, + STATE(3015), 1, sym_comment, - ACTIONS(1974), 2, + ACTIONS(5755), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(1976), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214137,19 +219508,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, - [89360] = 6, - ACTIONS(103), 1, + anon_sym_or2, + [94416] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2876), 1, + ACTIONS(5952), 1, + anon_sym_LBRACK2, + STATE(3016), 1, + sym_comment, + ACTIONS(2090), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2088), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94444] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5897), 1, + anon_sym_and2, + ACTIONS(5899), 1, + anon_sym_xor2, + STATE(3017), 1, sym_comment, - ACTIONS(1706), 2, + ACTIONS(5757), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(1619), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214161,19 +219554,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, - [89390] = 6, + anon_sym_or2, + [94472] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2877), 1, + STATE(3018), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2170), 2, - ts_builtin_sym_end, + ACTIONS(2174), 2, sym__space, - ACTIONS(2172), 11, + anon_sym_LPAREN2, + ACTIONS(2176), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214185,19 +219575,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, - [89420] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94498] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2642), 1, anon_sym_LPAREN2, - STATE(2878), 1, + STATE(3019), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2072), 2, + ACTIONS(2541), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2074), 11, + ACTIONS(2543), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214209,86 +219601,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, - [89450] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5723), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2879), 1, - sym_comment, - STATE(3198), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89502] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5725), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2880), 1, - sym_comment, - STATE(3083), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89554] = 5, + [94528] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2128), 1, + ACTIONS(5653), 1, sym__space, - ACTIONS(5727), 1, - anon_sym_LBRACK2, - STATE(2881), 1, + STATE(3004), 1, + aux_sym_attribute_repeat1, + STATE(3020), 1, sym_comment, - ACTIONS(2130), 13, + ACTIONS(5954), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214302,19 +219624,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89582] = 6, + [94556] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2882), 1, - sym_comment, - ACTIONS(1736), 2, - ts_builtin_sym_end, + ACTIONS(886), 1, sym__space, - ACTIONS(1738), 11, + ACTIONS(5071), 1, + sym__unquoted_pattern, + STATE(3021), 1, + sym_comment, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214326,18 +219645,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, - [89612] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94584] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5468), 1, + ACTIONS(5587), 1, aux_sym__immediate_decimal_token5, - STATE(2883), 1, + STATE(3022), 1, sym_comment, - ACTIONS(1738), 3, + ACTIONS(1746), 3, sym_identifier, anon_sym_DASH2, sym__unquoted_pattern_in_record, - ACTIONS(1736), 11, + ACTIONS(1744), 11, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -214349,39 +219670,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [89640] = 6, + [94612] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1713), 1, + sym__space, + STATE(3023), 1, + sym_comment, + ACTIONS(1614), 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, + [94637] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, + ACTIONS(2535), 1, anon_sym_DASH2, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - STATE(2884), 1, + STATE(3024), 1, sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 11, + ACTIONS(2533), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89670] = 4, + [94662] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1968), 1, + sym__newline, + ACTIONS(5956), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3025), 1, + sym_comment, + ACTIONS(1966), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [94691] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2885), 1, + STATE(3026), 1, sym_comment, - ACTIONS(5253), 2, + ACTIONS(2174), 3, + ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5255), 13, + anon_sym_LPAREN2, + ACTIONS(2176), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214393,80 +219756,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, - [89696] = 6, + [94716] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(2242), 1, anon_sym_DASH2, - ACTIONS(5731), 1, - anon_sym_DOT_DOT2, - STATE(2886), 1, + STATE(3027), 1, sym_comment, - ACTIONS(5733), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 11, + ACTIONS(2240), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89726] = 17, + [94741] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5735), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2887), 1, - sym_comment, - STATE(2901), 1, - aux_sym__repeat_newline, - STATE(3171), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89778] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2888), 1, + ACTIONS(5959), 1, + anon_sym_AT2, + STATE(3028), 1, sym_comment, - ACTIONS(2523), 2, + STATE(3287), 1, + sym_param_completer, + ACTIONS(5772), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2525), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214478,52 +219799,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, - [89808] = 17, + [94768] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(2246), 1, + anon_sym_DASH2, + STATE(3029), 1, + sym_comment, + ACTIONS(2244), 13, + anon_sym_EQ, sym_identifier, - ACTIONS(5690), 1, sym__newline, - ACTIONS(5694), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + [94793] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2575), 1, anon_sym_DASH2, - ACTIONS(5737), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2889), 1, + STATE(3030), 1, sym_comment, - STATE(2902), 1, - aux_sym__repeat_newline, - STATE(3174), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89860] = 5, + ACTIONS(2573), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94818] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - STATE(2890), 1, + STATE(3031), 1, sym_comment, - ACTIONS(5633), 13, + ACTIONS(5255), 14, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214535,15 +219860,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, - [89888] = 3, - ACTIONS(3), 1, + anon_sym_LBRACE, + [94841] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2891), 1, + ACTIONS(5963), 1, + sym__space, + STATE(3032), 1, sym_comment, - ACTIONS(5739), 15, - anon_sym_else, - anon_sym_catch, + ACTIONS(5961), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214557,48 +219882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89912] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(5741), 1, - anon_sym_DOT, - STATE(2892), 1, - sym_comment, - STATE(3577), 1, - sym__immediate_decimal, - ACTIONS(5743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3636), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [89952] = 6, + [94866] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - STATE(2893), 1, - sym_comment, - STATE(3081), 1, - sym__flag_equals_value, - ACTIONS(5622), 2, - ts_builtin_sym_end, + ACTIONS(1912), 1, sym__space, - ACTIONS(5620), 11, + STATE(3033), 1, + sym_comment, + ACTIONS(1914), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214610,19 +219901,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, - [89982] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94891] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2894), 1, - sym_comment, - ACTIONS(2567), 2, - ts_builtin_sym_end, + ACTIONS(2581), 1, sym__space, - ACTIONS(2569), 11, + STATE(3034), 1, + sym_comment, + ACTIONS(2583), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214634,20 +219922,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, - [90012] = 7, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94916] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5747), 1, - ts_builtin_sym_end, - ACTIONS(5749), 1, - sym__space, - STATE(2895), 1, + ACTIONS(5959), 1, + anon_sym_AT2, + STATE(3035), 1, sym_comment, - STATE(3009), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 11, + STATE(3268), 1, + sym_param_completer, + ACTIONS(5776), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214659,16 +219946,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, - [90044] = 5, + [94943] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1971), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(5965), 1, + sym__newline, + STATE(3036), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1966), 11, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [94970] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(2593), 1, sym__space, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2896), 1, + STATE(3037), 1, sym_comment, - ACTIONS(868), 13, + ACTIONS(2595), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214682,16 +219989,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90072] = 4, - ACTIONS(103), 1, + [94995] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2897), 1, - sym_comment, - ACTIONS(5287), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5289), 13, + ACTIONS(5968), 1, + anon_sym_else, + ACTIONS(5970), 1, sym__newline, + STATE(3038), 1, + sym_comment, + STATE(3080), 1, + aux_sym__repeat_newline, + ACTIONS(5973), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214703,154 +220012,129 @@ static 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, - [90098] = 5, + [95024] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5751), 1, - anon_sym_LBRACK2, - STATE(2898), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(3039), 1, sym_comment, - ACTIONS(2130), 2, - anon_sym_LBRACK, - anon_sym_DASH2, - ACTIONS(2128), 12, - anon_sym_EQ, - sym_identifier, + STATE(4195), 1, + sym__immediate_decimal, + ACTIONS(5975), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5977), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(730), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1598), 4, + anon_sym_if, 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, - [90126] = 4, - ACTIONS(3), 1, + anon_sym_EQ_GT, + [95061] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DASH2, - STATE(2899), 1, + ACTIONS(4682), 1, + sym__space, + STATE(3040), 1, sym_comment, - ACTIONS(1858), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(4680), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90152] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95086] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2900), 1, + STATE(3041), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1641), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2142), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2144), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [90178] = 17, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [95111] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5979), 1, + anon_sym_catch, + ACTIONS(5981), 1, sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5753), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2901), 1, + STATE(3042), 1, sym_comment, - STATE(3202), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, + STATE(3086), 1, aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90230] = 17, + ACTIONS(5984), 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, + [95140] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5986), 1, + anon_sym_catch, + ACTIONS(5988), 1, sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5755), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2902), 1, + STATE(3043), 1, sym_comment, - STATE(3172), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, + STATE(3088), 1, aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90282] = 4, - ACTIONS(103), 1, + ACTIONS(5991), 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, + [95169] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2903), 1, + STATE(3044), 1, sym_comment, - ACTIONS(1726), 3, + ACTIONS(5281), 14, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 12, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214862,16 +220146,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, - sym__unquoted_pattern, - [90308] = 4, + anon_sym_LBRACE, + [95192] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2904), 1, - sym_comment, - ACTIONS(2092), 2, + ACTIONS(2196), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2094), 13, + STATE(3045), 1, + sym_comment, + ACTIONS(2198), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214885,62 +220168,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90334] = 5, + [95217] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, + ACTIONS(5858), 1, + ts_builtin_sym_end, + ACTIONS(5860), 1, sym__space, - STATE(2840), 1, - aux_sym_attribute_repeat1, - STATE(2905), 1, + STATE(3046), 1, sym_comment, - ACTIONS(5326), 13, + STATE(3064), 1, + aux_sym_attribute_repeat1, + ACTIONS(5465), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [95246] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5993), 1, + anon_sym_AT2, + ACTIONS(5995), 1, + anon_sym_DASH2, + STATE(3047), 1, + sym_comment, + STATE(3407), 1, + sym_param_completer, + ACTIONS(5776), 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, + [95275] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2278), 1, + anon_sym_DASH2, + STATE(3048), 1, + sym_comment, + ACTIONS(2276), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [90362] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95300] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(2278), 1, anon_sym_DASH2, - ACTIONS(5757), 1, - anon_sym_DOT_DOT2, - STATE(2906), 1, + STATE(3049), 1, sym_comment, - ACTIONS(5759), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 11, + ACTIONS(2276), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90392] = 4, + [95325] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2907), 1, - sym_comment, - ACTIONS(5221), 2, + ACTIONS(2240), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5223), 13, + STATE(3050), 1, + sym_comment, + ACTIONS(2242), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214954,15 +220277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90418] = 4, - ACTIONS(103), 1, + [95350] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2908), 1, + STATE(3051), 1, sym_comment, - ACTIONS(5237), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5239), 13, + ACTIONS(5677), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214974,81 +220296,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [90444] = 6, + anon_sym_COLON, + [95373] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2078), 1, + ACTIONS(2284), 1, anon_sym_DASH2, - ACTIONS(5761), 1, - anon_sym_DOT_DOT2, - STATE(2909), 1, + STATE(3052), 1, sym_comment, - ACTIONS(5763), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 11, + ACTIONS(2282), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90474] = 17, + [95398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(2288), 1, + anon_sym_DASH2, + STATE(3053), 1, + sym_comment, + ACTIONS(2286), 13, + anon_sym_EQ, sym_identifier, - ACTIONS(5690), 1, sym__newline, - ACTIONS(5694), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5765), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2879), 1, - aux_sym__repeat_newline, - STATE(2910), 1, - sym_comment, - STATE(3077), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90526] = 7, - ACTIONS(103), 1, + [95423] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5767), 1, + ACTIONS(5997), 1, + anon_sym_catch, + ACTIONS(5999), 1, sym__newline, - ACTIONS(5769), 1, - sym__space, - STATE(2911), 1, + STATE(3043), 1, + aux_sym__repeat_newline, + STATE(3054), 1, sym_comment, - STATE(3033), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5771), 11, + ACTIONS(6002), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215060,73 +220362,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90558] = 17, + [95452] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, + STATE(3055), 1, + sym_comment, + ACTIONS(1912), 14, + anon_sym_EQ, sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5773), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2880), 1, - aux_sym__repeat_newline, - STATE(2912), 1, + anon_sym_RBRACE, + [95475] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(3056), 1, sym_comment, - STATE(3088), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90610] = 6, + STATE(4191), 1, + sym__immediate_decimal, + ACTIONS(5975), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5977), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(748), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1651), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [95512] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, + ACTIONS(2292), 1, anon_sym_DASH2, - ACTIONS(5775), 1, - anon_sym_DOT_DOT2, - STATE(2913), 1, + STATE(3057), 1, sym_comment, - ACTIONS(5777), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 11, + ACTIONS(2290), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90640] = 4, + [95537] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2593), 1, + ACTIONS(2296), 1, anon_sym_DASH2, - STATE(2914), 1, + STATE(3058), 1, sym_comment, - ACTIONS(2591), 14, + ACTIONS(2294), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215138,20 +220449,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90666] = 5, - ACTIONS(3), 1, + [95562] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - STATE(2915), 1, - sym_comment, - ACTIONS(5631), 13, + ACTIONS(5860), 1, + sym__space, + ACTIONS(6004), 1, ts_builtin_sym_end, + STATE(3059), 1, + sym_comment, + STATE(3131), 1, + aux_sym_attribute_repeat1, + ACTIONS(5782), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215163,19 +220474,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_or2, - [90694] = 6, + [95591] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5781), 1, + ACTIONS(5993), 1, anon_sym_AT2, - ACTIONS(5783), 1, + ACTIONS(6006), 1, anon_sym_DASH2, - STATE(2916), 1, + STATE(3060), 1, sym_comment, - STATE(3241), 1, + STATE(3480), 1, sym_param_completer, - ACTIONS(5779), 11, + ACTIONS(5772), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -215187,18 +220497,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90723] = 6, + [95620] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, - sym__space, - STATE(2917), 1, + STATE(3061), 1, sym_comment, - STATE(3043), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5785), 11, + ACTIONS(5281), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5817), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215209,22 +220518,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, - [90752] = 7, + [95645] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5787), 1, + ACTIONS(5800), 1, sym__newline, - STATE(788), 1, + STATE(882), 1, aux_sym__pipe_separator, - STATE(2918), 1, + STATE(3062), 1, sym_comment, - STATE(3365), 1, + STATE(3546), 1, aux_sym__repeat_newline, - ACTIONS(5790), 2, + ACTIONS(5803), 2, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2303), 9, + ACTIONS(2325), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215234,18 +220542,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, - [90783] = 6, + [95676] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, - anon_sym_else, - ACTIONS(5794), 1, - sym__newline, - STATE(2919), 1, + STATE(3063), 1, sym_comment, - STATE(3047), 1, - aux_sym__repeat_newline, - ACTIONS(5797), 11, + ACTIONS(2537), 14, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215257,14 +220561,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90812] = 4, + anon_sym_RBRACE, + [95699] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2268), 1, + ACTIONS(5860), 1, sym__space, - STATE(2920), 1, + ACTIONS(6008), 1, + ts_builtin_sym_end, + STATE(3064), 1, sym_comment, - ACTIONS(2270), 13, + STATE(3097), 1, + aux_sym_attribute_repeat1, + ACTIONS(5954), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215276,16 +220585,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, - [90837] = 4, + [95728] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(2244), 1, sym__space, - STATE(2921), 1, + STATE(3065), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(2246), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215299,16 +220606,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90862] = 4, + [95753] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2922), 1, + STATE(3066), 1, sym_comment, - ACTIONS(5241), 3, + ACTIONS(5255), 3, ts_builtin_sym_end, sym__space, anon_sym_EQ2, - ACTIONS(5243), 11, + ACTIONS(5815), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215320,82 +220627,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, - [90887] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_DOT, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2923), 1, - sym_comment, - ACTIONS(1738), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1736), 10, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90916] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_DASH2, - STATE(2924), 1, - sym_comment, - ACTIONS(2254), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90941] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_DASH2, - STATE(2925), 1, - sym_comment, - ACTIONS(2254), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90966] = 5, + [95778] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5799), 1, - ts_builtin_sym_end, - ACTIONS(5801), 1, + ACTIONS(2573), 1, sym__space, - STATE(2926), 2, + STATE(3067), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5708), 11, + ACTIONS(2575), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215407,18 +220646,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, - [90993] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95803] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5806), 1, + ACTIONS(6010), 1, + anon_sym_LT, + ACTIONS(6012), 1, anon_sym_DASH2, - STATE(2927), 1, + STATE(3068), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5804), 11, + ACTIONS(5245), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -215428,20 +220667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91022] = 6, + [95830] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5810), 1, + ACTIONS(6012), 1, anon_sym_DASH2, - STATE(2928), 1, + ACTIONS(6014), 1, + anon_sym_LT, + STATE(3069), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5808), 11, + ACTIONS(5245), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -215451,20 +220689,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91051] = 6, + [95857] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5747), 1, - ts_builtin_sym_end, - ACTIONS(5749), 1, + ACTIONS(4718), 1, sym__space, - STATE(2929), 1, + STATE(3070), 1, sym_comment, - STATE(3009), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 11, + ACTIONS(4716), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215476,14 +220711,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91080] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95882] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(4722), 1, sym__space, - STATE(2930), 1, + STATE(3071), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(4720), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215497,14 +220734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91105] = 4, + [95907] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2202), 1, + ACTIONS(4732), 1, sym__space, - STATE(2931), 1, + STATE(3072), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(4730), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215518,14 +220755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91130] = 4, - ACTIONS(103), 1, + [95932] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, - sym__space, - STATE(2932), 1, + ACTIONS(6016), 1, + anon_sym_catch, + STATE(3073), 1, sym_comment, - ACTIONS(2593), 13, + ACTIONS(6018), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215539,14 +220776,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91155] = 4, + [95957] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4651), 1, - sym__space, - STATE(2933), 1, + ACTIONS(5160), 1, + sym__unquoted_pattern, + STATE(3074), 1, sym_comment, - ACTIONS(4649), 13, + ACTIONS(886), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215558,39 +220798,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [91180] = 4, + [95984] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - anon_sym_DASH2, - STATE(2934), 1, + ACTIONS(6020), 1, + sym__newline, + STATE(791), 1, + aux_sym__pipe_separator, + STATE(3075), 1, sym_comment, - ACTIONS(2202), 13, - anon_sym_EQ, - sym_identifier, + STATE(3546), 1, + aux_sym__repeat_newline, + ACTIONS(6023), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2325), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [96015] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6025), 1, + anon_sym_else, + ACTIONS(6027), 1, sym__newline, + STATE(3076), 1, + sym_comment, + STATE(3083), 1, + aux_sym__repeat_newline, + ACTIONS(6030), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91205] = 4, + [96044] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2935), 1, - sym_comment, - ACTIONS(2084), 3, - ts_builtin_sym_end, + ACTIONS(2204), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2086), 11, + STATE(3077), 1, + sym_comment, + ACTIONS(2206), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215602,39 +220864,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, - [91230] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96069] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2609), 1, - anon_sym_DASH2, - STATE(2936), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_DOT, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(3078), 1, sym_comment, - ACTIONS(2607), 13, - anon_sym_EQ, - sym_identifier, + STATE(3879), 1, + sym__immediate_decimal, + ACTIONS(5905), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5907), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3876), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1639), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91255] = 6, + anon_sym_EQ_GT, + [96106] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(5812), 1, + ACTIONS(6032), 1, anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2937), 1, + ACTIONS(6034), 1, + sym__newline, + STATE(3079), 1, sym_comment, - ACTIONS(1955), 11, + STATE(3090), 1, + aux_sym__repeat_newline, + ACTIONS(6037), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215646,21 +220916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91284] = 7, + [96135] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5683), 1, + ACTIONS(6039), 1, + anon_sym_else, + ACTIONS(6041), 1, sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2938), 1, + STATE(3080), 1, sym_comment, - STATE(3365), 1, + STATE(3111), 1, aux_sym__repeat_newline, - ACTIONS(5686), 2, - ts_builtin_sym_end, + ACTIONS(6044), 11, anon_sym_SEMI, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215670,15 +220938,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, - [91315] = 3, + anon_sym_RPAREN, + [96164] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2939), 1, + STATE(3081), 1, sym_comment, - ACTIONS(5704), 14, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + ACTIONS(1862), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215690,17 +220957,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, - [91338] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96187] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2940), 1, - sym_comment, - ACTIONS(5287), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5289), 11, + ACTIONS(6046), 1, + anon_sym_else, + ACTIONS(6048), 1, sym__newline, + STATE(3082), 1, + sym_comment, + STATE(3170), 1, + aux_sym__repeat_newline, + ACTIONS(6051), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215711,87 +220981,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91363] = 10, + anon_sym_RPAREN, + [96216] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(2941), 1, - sym_comment, - STATE(3635), 1, - sym__immediate_decimal, - ACTIONS(5743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3634), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 4, - anon_sym_if, + ACTIONS(6053), 1, + anon_sym_else, + ACTIONS(6055), 1, sym__newline, + STATE(3083), 1, + sym_comment, + STATE(3193), 1, + aux_sym__repeat_newline, + ACTIONS(6058), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [91400] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [96245] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2513), 1, - anon_sym_DASH2, - STATE(2942), 1, + STATE(3084), 1, sym_comment, - ACTIONS(2511), 13, + ACTIONS(2620), 14, 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_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, - [91425] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [96268] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2517), 1, - anon_sym_DASH2, - STATE(2943), 1, + ACTIONS(6062), 1, + sym__space, + STATE(3085), 1, sym_comment, - ACTIONS(2515), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(6060), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91450] = 6, + anon_sym_RBRACE, + [96293] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_else, - ACTIONS(5817), 1, + ACTIONS(6064), 1, + anon_sym_catch, + ACTIONS(6066), 1, sym__newline, - STATE(2944), 1, + STATE(3086), 1, sym_comment, - STATE(2963), 1, + STATE(3118), 1, aux_sym__repeat_newline, - ACTIONS(5820), 11, + ACTIONS(6069), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215803,18 +221069,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91479] = 6, + [96322] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5824), 1, + ACTIONS(5993), 1, + anon_sym_AT2, + ACTIONS(5995), 1, anon_sym_DASH2, - STATE(2945), 1, + STATE(3087), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5822), 11, + STATE(3437), 1, + sym_param_completer, + ACTIONS(5776), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -215826,38 +221092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91508] = 6, + [96351] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5826), 1, - anon_sym_catch, - ACTIONS(5828), 1, + ACTIONS(1968), 1, sym__newline, - STATE(2946), 1, - sym_comment, - STATE(3048), 1, + ACTIONS(6071), 1, + anon_sym_catch, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5831), 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, - [91537] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2218), 1, - sym__space, - STATE(2947), 1, + STATE(3088), 1, sym_comment, - ACTIONS(2220), 13, - sym__newline, + ACTIONS(1966), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215869,72 +221115,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [91562] = 6, + [96380] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5835), 1, + ACTIONS(866), 1, anon_sym_DASH2, - STATE(2948), 1, + STATE(3089), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5833), 11, + ACTIONS(886), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91591] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5839), 1, - anon_sym_DOT, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - STATE(2949), 1, - sym_comment, - STATE(3606), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3863), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [91634] = 6, + [96405] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5847), 1, + ACTIONS(6074), 1, anon_sym_else, - ACTIONS(5849), 1, + ACTIONS(6076), 1, sym__newline, - STATE(2950), 1, - sym_comment, - STATE(3057), 1, + STATE(3025), 1, aux_sym__repeat_newline, - ACTIONS(5852), 11, + STATE(3090), 1, + sym_comment, + ACTIONS(6079), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215946,14 +221159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91663] = 4, + [96434] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, + ACTIONS(1614), 1, anon_sym_DASH2, - STATE(2951), 1, + STATE(3091), 1, sym_comment, - ACTIONS(2218), 13, + ACTIONS(1713), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215967,14 +221180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91688] = 4, + [96459] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2260), 1, + ACTIONS(2172), 1, anon_sym_DASH2, - STATE(2952), 1, + STATE(3092), 1, sym_comment, - ACTIONS(2258), 13, + ACTIONS(2170), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215988,59 +221201,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91713] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5635), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2953), 1, - sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5638), 2, - ts_builtin_sym_end, - anon_sym_SEMI, - ACTIONS(2303), 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, - [91744] = 4, + [96484] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2264), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(6083), 1, anon_sym_DASH2, - STATE(2954), 1, + STATE(3093), 1, sym_comment, - ACTIONS(2262), 13, + STATE(5178), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6081), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91769] = 4, + [96513] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5856), 1, + ACTIONS(2276), 1, sym__space, - STATE(2955), 1, + STATE(3094), 1, sym_comment, - ACTIONS(5854), 13, + ACTIONS(2278), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216054,14 +221245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91794] = 4, + [96538] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(2276), 1, sym__space, - STATE(2956), 1, + STATE(3095), 1, sym_comment, - ACTIONS(4631), 13, + ACTIONS(2278), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216075,18 +221266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91819] = 6, - ACTIONS(103), 1, + [96563] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5749), 1, - sym__space, - ACTIONS(5858), 1, - ts_builtin_sym_end, - STATE(2926), 1, - aux_sym_attribute_repeat1, - STATE(2957), 1, + STATE(3096), 1, sym_comment, - ACTIONS(5717), 11, + ACTIONS(5294), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216098,16 +221285,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, - [91848] = 4, + anon_sym_LBRACE, + [96586] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2958), 1, - sym_comment, - ACTIONS(5253), 3, + ACTIONS(6085), 1, ts_builtin_sym_end, + ACTIONS(6087), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5255), 11, + STATE(3097), 2, + sym_comment, + aux_sym_attribute_repeat1, + ACTIONS(5937), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216119,16 +221308,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, - [91873] = 4, + [96613] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2959), 1, + STATE(3098), 1, sym_comment, - ACTIONS(5221), 3, + ACTIONS(5275), 3, ts_builtin_sym_end, sym__space, anon_sym_EQ2, - ACTIONS(5223), 11, + ACTIONS(5798), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216140,71 +221329,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, - [91898] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(5860), 1, - anon_sym_DOT, - ACTIONS(5862), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, - aux_sym__immediate_decimal_token2, - STATE(2960), 1, - sym_comment, - STATE(3598), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3872), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [91941] = 6, + [96638] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5642), 1, - anon_sym_DASH2, - STATE(2961), 1, + ACTIONS(5959), 1, + anon_sym_AT2, + STATE(3099), 1, sym_comment, - STATE(4655), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5640), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91970] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5749), 1, - sym__space, - ACTIONS(5868), 1, + STATE(3263), 1, + sym_param_completer, + ACTIONS(5776), 12, ts_builtin_sym_end, - STATE(2957), 1, - aux_sym_attribute_repeat1, - STATE(2962), 1, - sym_comment, - ACTIONS(5679), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216216,41 +221351,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, - [91999] = 6, - ACTIONS(3), 1, + [96665] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(5870), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2963), 1, + ACTIONS(2664), 1, + sym__space, + STATE(3100), 1, sym_comment, - ACTIONS(1955), 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, - [92028] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2666), 13, sym__newline, - ACTIONS(5873), 1, - anon_sym_catch, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2964), 1, - sym_comment, - ACTIONS(1955), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216262,16 +221371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92057] = 4, + anon_sym_RBRACE, + [96690] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2965), 1, + STATE(3101), 1, sym_comment, - ACTIONS(5237), 3, + ACTIONS(5294), 3, ts_builtin_sym_end, sym__space, anon_sym_EQ2, - ACTIONS(5239), 11, + ACTIONS(5921), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216283,37 +221393,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [92082] = 6, + [96715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5876), 1, - anon_sym_catch, - ACTIONS(5878), 1, + ACTIONS(2531), 1, + anon_sym_DASH2, + STATE(3102), 1, + sym_comment, + ACTIONS(2529), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(2966), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96740] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5993), 1, + anon_sym_AT2, + ACTIONS(6090), 1, + anon_sym_DASH2, + STATE(3103), 1, sym_comment, - STATE(3042), 1, - aux_sym__repeat_newline, - ACTIONS(5881), 11, - anon_sym_SEMI, + STATE(3442), 1, + sym_param_completer, + ACTIONS(5778), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [92111] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96769] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5885), 1, - sym__space, - STATE(2967), 1, + ACTIONS(5231), 1, + anon_sym_DOT, + ACTIONS(5233), 1, + aux_sym__immediate_decimal_token5, + STATE(3104), 1, sym_comment, - ACTIONS(5883), 13, + ACTIONS(1746), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(1744), 10, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96798] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2634), 1, + anon_sym_DASH2, + STATE(3105), 1, + sym_comment, + ACTIONS(2632), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96823] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3106), 1, + sym_comment, + ACTIONS(1582), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216325,16 +221500,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, - [92136] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + [96846] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__space, - STATE(2968), 1, + STATE(3107), 1, sym_comment, - ACTIONS(1860), 13, + ACTIONS(6092), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216348,18 +221521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92161] = 6, + [96869] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(5197), 1, anon_sym_LPAREN2, - ACTIONS(5715), 1, + ACTIONS(6096), 1, anon_sym_DASH2, - STATE(2969), 1, + STATE(3108), 1, sym_comment, - STATE(4655), 1, + STATE(5178), 1, sym__expr_parenthesized_immediate, - ACTIONS(5713), 11, + ACTIONS(6094), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216371,14 +221544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92190] = 4, + [96898] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5889), 1, + ACTIONS(6100), 1, sym__space, - STATE(2970), 1, + STATE(3109), 1, sym_comment, - ACTIONS(5887), 13, + ACTIONS(6098), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216392,15 +221565,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92215] = 4, + [96923] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, - sym__space, - STATE(2971), 1, + ACTIONS(1598), 1, + sym__entry_separator, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1836), 1, + anon_sym_DOLLAR, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6104), 1, + anon_sym_DOT, + ACTIONS(6106), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6108), 1, + aux_sym__immediate_decimal_token2, + STATE(3110), 1, sym_comment, - ACTIONS(5344), 13, + STATE(3752), 1, + sym__immediate_decimal, + ACTIONS(1602), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6110), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4023), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [96966] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1968), 1, sym__newline, + ACTIONS(6112), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3111), 1, + sym_comment, + ACTIONS(1966), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216412,16 +221618,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, - [92240] = 4, + [96995] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5893), 1, + ACTIONS(5942), 1, + sym__newline, + ACTIONS(5944), 1, sym__space, - STATE(2972), 1, + STATE(3112), 1, sym_comment, - ACTIONS(5891), 13, - sym__newline, + STATE(3178), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6115), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216433,15 +221641,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, - [92265] = 4, + [97024] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5897), 1, + ACTIONS(6119), 1, sym__space, - STATE(2973), 1, + STATE(3113), 1, sym_comment, - ACTIONS(5895), 13, + ACTIONS(6117), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216455,14 +221662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92290] = 4, + [97049] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5901), 1, + ACTIONS(2608), 1, sym__space, - STATE(2974), 1, + STATE(3114), 1, sym_comment, - ACTIONS(5899), 13, + ACTIONS(2610), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216476,15 +221683,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92315] = 4, + [97074] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5905), 1, + ACTIONS(5942), 1, + sym__newline, + ACTIONS(5944), 1, sym__space, - STATE(2975), 1, + STATE(3115), 1, sym_comment, - ACTIONS(5903), 13, - sym__newline, + STATE(3178), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6121), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216496,22 +221706,87 @@ static 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, - [92340] = 7, + [97103] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5907), 1, + ACTIONS(6123), 1, sym__newline, - STATE(788), 1, + STATE(791), 1, aux_sym__pipe_separator, - STATE(2976), 1, + STATE(3116), 1, sym_comment, - STATE(3365), 1, + STATE(3546), 1, + aux_sym__repeat_newline, + ACTIONS(6126), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2325), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [97134] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(5837), 1, + anon_sym_DASH2, + STATE(3117), 1, + sym_comment, + STATE(4855), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5835), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97163] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1968), 1, + sym__newline, + ACTIONS(6128), 1, + anon_sym_catch, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5910), 2, + STATE(3118), 1, + sym_comment, + ACTIONS(1966), 11, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - ACTIONS(2303), 9, + [97192] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3119), 1, + sym_comment, + ACTIONS(5813), 14, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216521,14 +221796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [92371] = 4, + [97215] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2198), 1, + ACTIONS(2154), 1, sym__space, - STATE(2977), 1, + STATE(3120), 1, sym_comment, - ACTIONS(2200), 13, + ACTIONS(2156), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216542,35 +221817,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92396] = 4, + [97240] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2978), 1, - sym_comment, - ACTIONS(2503), 2, + ACTIONS(2610), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(2501), 12, + STATE(3121), 1, + sym_comment, + ACTIONS(2608), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92421] = 4, + [97265] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2282), 1, + sym__space, + STATE(3122), 1, + sym_comment, + ACTIONS(2284), 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, + [97290] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(2286), 1, sym__space, - STATE(2979), 1, + STATE(3123), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2288), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216584,38 +221880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92446] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_DASH2, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, - STATE(2980), 1, - sym_comment, - ACTIONS(1706), 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, - [92475] = 4, + [97315] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(5942), 1, + sym__newline, + ACTIONS(5944), 1, sym__space, - STATE(2981), 1, + STATE(3112), 1, + aux_sym__command_parenthesized_repeat1, + STATE(3124), 1, sym_comment, - ACTIONS(2078), 13, - sym__newline, + ACTIONS(6131), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216627,15 +221903,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, - [92500] = 4, - ACTIONS(103), 1, + [97344] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__space, - STATE(2982), 1, + STATE(3125), 1, + sym_comment, + ACTIONS(2527), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(2525), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [97369] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3126), 1, sym_comment, - ACTIONS(2122), 13, + ACTIONS(5275), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216647,20 +221943,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, - [92525] = 6, + anon_sym_LBRACE, + [97392] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1966), 1, + ACTIONS(1614), 1, anon_sym_DASH2, - ACTIONS(1968), 1, + ACTIONS(2612), 1, anon_sym_LPAREN2, - STATE(2983), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_record, + STATE(3127), 1, sym_comment, - ACTIONS(1964), 11, + ACTIONS(1713), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216672,15 +221967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92554] = 4, + [97421] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2984), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_DASH2, + ACTIONS(1635), 1, sym__unquoted_pattern_in_record, - ACTIONS(1802), 12, + ACTIONS(1958), 1, + anon_sym_DASH2, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(3128), 1, + sym_comment, + ACTIONS(1956), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216692,15 +221990,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92579] = 4, + [97450] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5914), 1, + ACTIONS(2533), 1, sym__space, - STATE(2985), 1, + STATE(3129), 1, sym_comment, - ACTIONS(5912), 13, + ACTIONS(2535), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216714,14 +222011,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92604] = 4, - ACTIONS(3), 1, + [97475] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5916), 1, - anon_sym_catch, - STATE(2986), 1, + ACTIONS(6135), 1, + sym__space, + STATE(3130), 1, sym_comment, - ACTIONS(5918), 13, + ACTIONS(6133), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216735,14 +222032,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92629] = 4, + [97500] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2222), 1, + ACTIONS(5860), 1, sym__space, - STATE(2987), 1, + ACTIONS(6137), 1, + ts_builtin_sym_end, + STATE(3097), 1, + aux_sym_attribute_repeat1, + STATE(3131), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(5856), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216754,16 +222055,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, - [92654] = 4, + [97529] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5581), 1, + ACTIONS(2537), 1, sym__space, - STATE(2988), 1, + STATE(3132), 1, sym_comment, - ACTIONS(5579), 13, + ACTIONS(2539), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216777,18 +222076,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92679] = 6, + [97554] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1983), 1, sym__unquoted_pattern_in_record, - ACTIONS(2577), 1, + ACTIONS(2599), 1, anon_sym_DASH2, - STATE(2989), 1, + STATE(3133), 1, sym_comment, - ACTIONS(2575), 11, + ACTIONS(2597), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216800,16 +222099,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92708] = 5, + [97583] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5922), 1, - anon_sym_LT, - ACTIONS(5924), 1, + ACTIONS(1975), 1, anon_sym_DASH2, - STATE(2990), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_record, + STATE(3134), 1, sym_comment, - ACTIONS(5920), 12, + ACTIONS(1973), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216819,21 +222120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92735] = 6, + [97612] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1976), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2543), 1, anon_sym_DASH2, - ACTIONS(1978), 1, + ACTIONS(2642), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - STATE(2991), 1, + STATE(3135), 1, sym_comment, - ACTIONS(1974), 11, + ACTIONS(2541), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216845,16 +222145,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92764] = 5, + [97641] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5924), 1, + ACTIONS(2591), 1, anon_sym_DASH2, - ACTIONS(5926), 1, - anon_sym_LT, - STATE(2992), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern_in_record, + STATE(3136), 1, sym_comment, - ACTIONS(5920), 12, + ACTIONS(2589), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216864,84 +222166,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92791] = 6, - ACTIONS(3), 1, + [97670] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2525), 1, - anon_sym_DASH2, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2993), 1, + ACTIONS(5473), 1, + sym__space, + STATE(3137), 1, sym_comment, - ACTIONS(2523), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5471), 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, - [92820] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97695] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2569), 1, - anon_sym_DASH2, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, - STATE(2994), 1, + ACTIONS(6141), 1, + sym__space, + STATE(3138), 1, sym_comment, - ACTIONS(2567), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6139), 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, - [92849] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97720] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2995), 1, + ACTIONS(6145), 1, + sym__space, + STATE(3139), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6143), 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, - [92874] = 4, + anon_sym_RBRACE, + [97745] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2206), 1, + ACTIONS(6149), 1, sym__space, - STATE(2996), 1, + STATE(3140), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(6147), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216955,14 +222252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92899] = 4, + [97770] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(6153), 1, sym__space, - STATE(2997), 1, + STATE(3141), 1, sym_comment, - ACTIONS(2212), 13, + ACTIONS(6151), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216976,14 +222273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92924] = 4, + [97795] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2214), 1, + ACTIONS(6157), 1, sym__space, - STATE(2998), 1, + STATE(3142), 1, sym_comment, - ACTIONS(2216), 13, + ACTIONS(6155), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216997,66 +222294,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92949] = 11, - ACTIONS(3), 1, + [97820] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(5928), 1, - anon_sym_DOT, - STATE(2999), 1, + ACTIONS(5744), 1, + sym__space, + STATE(3143), 1, sym_comment, - STATE(3680), 1, - sym__immediate_decimal, - ACTIONS(5930), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5932), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3636), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 3, + ACTIONS(5742), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [92988] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97845] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2270), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(5790), 1, anon_sym_DASH2, - STATE(3000), 1, + STATE(3144), 1, sym_comment, - ACTIONS(2268), 13, + STATE(4855), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5788), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93013] = 5, - ACTIONS(103), 1, + [97874] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, sym__unquoted_pattern, - STATE(3001), 1, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + ACTIONS(6159), 1, + anon_sym_DOT, + STATE(3145), 1, + sym_comment, + STATE(3870), 1, + sym__immediate_decimal, + ACTIONS(6161), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6163), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3888), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1598), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [97913] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3146), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(5235), 3, ts_builtin_sym_end, sym__space, - ACTIONS(868), 11, + anon_sym_EQ2, + ACTIONS(5879), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217068,35 +222387,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, - [93040] = 4, - ACTIONS(3), 1, + [97938] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2274), 1, - anon_sym_DASH2, - STATE(3002), 1, + ACTIONS(2200), 1, + sym__space, + STATE(3147), 1, sym_comment, - ACTIONS(2272), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2202), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93065] = 4, + anon_sym_RBRACE, + [97963] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(2102), 1, sym__space, - STATE(3003), 1, + STATE(3148), 1, sym_comment, - ACTIONS(5249), 13, + ACTIONS(2104), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217110,41 +222429,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93090] = 10, + [97988] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3004), 1, - sym_comment, - STATE(3926), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [93127] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5940), 1, - sym__space, - STATE(3005), 1, + STATE(3149), 1, sym_comment, - ACTIONS(5938), 13, + ACTIONS(5669), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217156,16 +222448,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, - [93152] = 4, + anon_sym_COLON, + [98011] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2226), 1, - sym__space, - STATE(3006), 1, + STATE(3150), 1, sym_comment, - ACTIONS(2228), 13, + ACTIONS(5239), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5883), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217177,20 +222470,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, - [93177] = 6, + [98036] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2637), 1, + ACTIONS(2650), 1, anon_sym_DASH2, - ACTIONS(2639), 1, + ACTIONS(2652), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2654), 1, sym__unquoted_pattern_in_record, - STATE(3007), 1, + STATE(3151), 1, sym_comment, - ACTIONS(2635), 11, + ACTIONS(2648), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217202,14 +222493,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93206] = 4, + [98065] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2230), 1, + ACTIONS(2110), 1, sym__space, - STATE(3008), 1, + STATE(3152), 1, sym_comment, - ACTIONS(2232), 13, + ACTIONS(2112), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217223,18 +222514,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93231] = 6, - ACTIONS(103), 1, + [98090] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5749), 1, - sym__space, - ACTIONS(5942), 1, - ts_builtin_sym_end, - STATE(2926), 1, - aux_sym_attribute_repeat1, - STATE(3009), 1, + ACTIONS(5959), 1, + anon_sym_AT2, + STATE(3153), 1, sym_comment, - ACTIONS(5681), 11, + STATE(3351), 1, + sym_param_completer, + ACTIONS(5778), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217246,14 +222536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [93260] = 4, + [98117] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2238), 1, + ACTIONS(5416), 1, sym__space, - STATE(3010), 1, + STATE(3154), 1, sym_comment, - ACTIONS(2240), 13, + ACTIONS(5414), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217267,14 +222557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93285] = 4, + [98142] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2242), 1, + ACTIONS(2118), 1, sym__space, - STATE(3011), 1, + STATE(3155), 1, sym_comment, - ACTIONS(2244), 13, + ACTIONS(2120), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217288,14 +222578,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93310] = 4, + [98167] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(1598), 1, sym__space, - STATE(3012), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(6165), 1, + anon_sym_DOT, + ACTIONS(6167), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6169), 1, + aux_sym__immediate_decimal_token2, + STATE(3156), 1, + sym_comment, + STATE(3780), 1, + sym__immediate_decimal, + ACTIONS(1602), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6171), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4005), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [98210] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1020), 1, + anon_sym_DASH2, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern_in_record, + STATE(3157), 1, + sym_comment, + ACTIONS(1022), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98239] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3158), 1, sym_comment, - ACTIONS(2248), 13, + ACTIONS(5245), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217307,16 +222650,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, - [93335] = 4, + anon_sym_AT2, + [98262] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2250), 1, + ACTIONS(1862), 1, sym__space, - STATE(3013), 1, + STATE(3159), 1, sym_comment, - ACTIONS(2252), 13, + ACTIONS(1864), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217330,18 +222672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93360] = 6, + [98287] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(996), 1, + ACTIONS(994), 1, anon_sym_DASH2, - ACTIONS(2583), 1, + ACTIONS(2656), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2658), 1, sym__unquoted_pattern_in_record, - STATE(3014), 1, + STATE(3160), 1, sym_comment, - ACTIONS(994), 11, + ACTIONS(1030), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217353,37 +222695,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93389] = 6, + [98316] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_DASH2, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(3015), 1, + STATE(3161), 1, sym_comment, - ACTIONS(1018), 11, + ACTIONS(5379), 14, + ts_builtin_sym_end, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93418] = 4, - ACTIONS(103), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_AT2, + [98339] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5247), 1, - sym__space, - STATE(3016), 1, + STATE(3162), 1, + sym_comment, + ACTIONS(5424), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_AT2, + [98362] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3163), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(6173), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217397,14 +222755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93443] = 4, + [98385] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2537), 1, + ACTIONS(6177), 1, sym__space, - STATE(3017), 1, + STATE(3164), 1, sym_comment, - ACTIONS(2539), 13, + ACTIONS(6175), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217418,14 +222776,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93468] = 4, + [98410] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2607), 1, + ACTIONS(6181), 1, sym__space, - STATE(3018), 1, + STATE(3165), 1, sym_comment, - ACTIONS(2609), 13, + ACTIONS(6179), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217439,14 +222797,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93493] = 4, + [98435] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3166), 1, + sym_comment, + ACTIONS(5334), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_AT2, + [98458] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2511), 1, + ACTIONS(5420), 1, sym__space, - STATE(3019), 1, + STATE(3167), 1, sym_comment, - ACTIONS(2513), 13, + ACTIONS(5418), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217460,14 +222838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93518] = 4, - ACTIONS(103), 1, + [98483] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - STATE(3020), 1, + STATE(3168), 1, sym_comment, - ACTIONS(868), 13, + ACTIONS(6173), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217481,14 +222858,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93543] = 4, + [98506] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3169), 1, + sym_comment, + ACTIONS(1772), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1770), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [98531] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6183), 1, + anon_sym_else, + ACTIONS(6185), 1, + sym__newline, + STATE(3170), 1, + sym_comment, + STATE(3176), 1, + aux_sym__repeat_newline, + ACTIONS(6188), 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, + [98560] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(2228), 1, sym__space, - STATE(3021), 1, + STATE(3171), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(2230), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217502,14 +222923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93568] = 4, + [98585] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2515), 1, + ACTIONS(2232), 1, sym__space, - STATE(3022), 1, + STATE(3172), 1, sym_comment, - ACTIONS(2517), 13, + ACTIONS(2234), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217523,14 +222944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93593] = 4, + [98610] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2236), 1, sym__space, - STATE(3023), 1, + STATE(3173), 1, sym_comment, - ACTIONS(2114), 13, + ACTIONS(2238), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217544,38 +222965,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93618] = 6, + [98635] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5721), 1, + ACTIONS(2583), 1, anon_sym_DASH2, - STATE(3024), 1, + STATE(3174), 1, sym_comment, - STATE(4655), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5719), 11, + ACTIONS(2581), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93647] = 4, - ACTIONS(103), 1, + [98660] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2519), 1, - sym__space, - STATE(3025), 1, + ACTIONS(2595), 1, + anon_sym_DASH2, + STATE(3175), 1, sym_comment, - ACTIONS(2521), 13, + ACTIONS(2593), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98685] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1968), 1, sym__newline, + ACTIONS(6190), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3176), 1, + sym_comment, + ACTIONS(1966), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217587,19 +223030,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, - [93672] = 6, + [98714] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5946), 1, - anon_sym_DASH2, - STATE(3026), 1, + STATE(3177), 1, sym_comment, - STATE(3284), 1, - sym_param_completer, - ACTIONS(5944), 11, + ACTIONS(1854), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1852), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -217611,15 +223050,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93701] = 4, + anon_sym_LPAREN2, + [98739] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2505), 1, + ACTIONS(6193), 1, + sym__newline, + ACTIONS(6196), 1, sym__space, - STATE(3027), 1, + STATE(3178), 2, sym_comment, - ACTIONS(2507), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6199), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217631,19 +223073,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, - [93726] = 6, - ACTIONS(3), 1, + [98766] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5948), 1, - anon_sym_else, - ACTIONS(5950), 1, - sym__newline, - STATE(3028), 1, + ACTIONS(2248), 1, + sym__space, + STATE(3179), 1, sym_comment, - STATE(3044), 1, - aux_sym__repeat_newline, - ACTIONS(5953), 11, + ACTIONS(2250), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217655,15 +223093,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93755] = 3, + anon_sym_RBRACE, + [98791] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3029), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(5925), 1, + anon_sym_DASH2, + STATE(3180), 1, sym_comment, - ACTIONS(5739), 14, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + STATE(4855), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5923), 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, + [98820] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2252), 1, + sym__space, + STATE(3181), 1, + sym_comment, + ACTIONS(2254), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217675,14 +223136,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, - [93778] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98845] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2615), 1, + ACTIONS(2256), 1, sym__space, - STATE(3030), 1, + STATE(3182), 1, sym_comment, - ACTIONS(2617), 13, + ACTIONS(2258), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217696,18 +223159,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93803] = 6, + [98870] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(2260), 1, sym__space, - STATE(2917), 1, - aux_sym__command_parenthesized_repeat1, - STATE(3031), 1, + STATE(3183), 1, sym_comment, - ACTIONS(5955), 11, + ACTIONS(2262), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217719,39 +223179,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93832] = 4, + anon_sym_RBRACE, + [98895] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2224), 1, - anon_sym_DASH2, - STATE(3032), 1, + STATE(3184), 1, sym_comment, - ACTIONS(2222), 13, + ACTIONS(5338), 14, + ts_builtin_sym_end, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93857] = 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_AT2, + [98918] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(2264), 1, sym__space, - STATE(3033), 1, + STATE(3185), 1, sym_comment, - STATE(3043), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5957), 11, + ACTIONS(2266), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217763,56 +223220,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93886] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [98943] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DASH2, - STATE(3034), 1, + ACTIONS(2268), 1, + sym__space, + STATE(3186), 1, sym_comment, - ACTIONS(2537), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2270), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93911] = 4, + anon_sym_RBRACE, + [98968] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2617), 1, - anon_sym_DASH2, - STATE(3035), 1, + STATE(3187), 1, sym_comment, - ACTIONS(2615), 13, + ACTIONS(1872), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1870), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93936] = 4, + anon_sym_LPAREN2, + [98993] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5961), 1, + ACTIONS(2272), 1, sym__space, - STATE(3036), 1, + STATE(3188), 1, sym_comment, - ACTIONS(5959), 13, + ACTIONS(2274), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217826,14 +223284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93961] = 4, + [99018] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5965), 1, + ACTIONS(886), 1, sym__space, - STATE(3037), 1, + STATE(3189), 1, sym_comment, - ACTIONS(5963), 13, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217847,14 +223305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93986] = 4, + [99043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2565), 1, + ACTIONS(2198), 1, anon_sym_DASH2, - STATE(3038), 1, + STATE(3190), 1, sym_comment, - ACTIONS(2563), 13, + ACTIONS(2196), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -217868,91 +223326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94011] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3039), 1, - sym_comment, - STATE(3909), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [94048] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5967), 1, - anon_sym_else, - ACTIONS(5969), 1, - sym__newline, - STATE(2944), 1, - aux_sym__repeat_newline, - STATE(3040), 1, - sym_comment, - ACTIONS(5972), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [94077] = 6, + [99068] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5974), 1, - anon_sym_catch, - ACTIONS(5976), 1, - sym__newline, - STATE(2946), 1, - aux_sym__repeat_newline, - STATE(3041), 1, + STATE(3191), 1, sym_comment, - ACTIONS(5979), 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, - [94106] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5981), 1, - anon_sym_catch, - ACTIONS(5983), 1, + ACTIONS(5422), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, - STATE(2964), 1, - aux_sym__repeat_newline, - STATE(3042), 1, - sym_comment, - ACTIONS(5986), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217963,18 +223345,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, - [94135] = 5, + anon_sym_AT2, + [99091] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5988), 1, - sym__newline, - ACTIONS(5991), 1, + ACTIONS(2170), 1, sym__space, - STATE(3043), 2, + STATE(3192), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5994), 11, + ACTIONS(2172), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217986,18 +223366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94162] = 6, + anon_sym_RBRACE, + [99116] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_else, - ACTIONS(5998), 1, + ACTIONS(1968), 1, sym__newline, - STATE(2937), 1, + ACTIONS(6201), 1, + anon_sym_else, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3044), 1, + STATE(3193), 1, sym_comment, - ACTIONS(6001), 11, + ACTIONS(1966), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218009,16 +223390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94191] = 4, - ACTIONS(103), 1, + [99145] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3045), 1, + STATE(3194), 1, sym_comment, - ACTIONS(2092), 3, + ACTIONS(5348), 14, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2094), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218030,16 +223409,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, - [94216] = 4, - ACTIONS(103), 1, + anon_sym_AT2, + [99168] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3046), 1, + STATE(3195), 1, sym_comment, - ACTIONS(5257), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5259), 11, + ACTIONS(6204), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218051,18 +223428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [94241] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99191] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6003), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3047), 1, + STATE(3196), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(5364), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218073,19 +223449,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, - [94270] = 6, + anon_sym_AT2, + [99214] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6006), 1, - anon_sym_catch, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3048), 1, + STATE(3197), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(5377), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218096,15 +223469,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, - [94299] = 4, + anon_sym_AT2, + [99237] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2258), 1, + ACTIONS(2529), 1, sym__space, - STATE(3049), 1, + STATE(3198), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(2531), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218118,14 +223491,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94324] = 4, + [99262] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(2632), 1, sym__space, - STATE(3050), 1, + STATE(3199), 1, sym_comment, - ACTIONS(1868), 13, + ACTIONS(2634), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218139,16 +223512,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94349] = 4, - ACTIONS(103), 1, + [99287] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2563), 1, - sym__space, - STATE(3051), 1, - sym_comment, - ACTIONS(2565), 13, + ACTIONS(5870), 1, sym__newline, + STATE(882), 1, + aux_sym__pipe_separator, + STATE(3200), 1, + sym_comment, + STATE(3546), 1, + aux_sym__repeat_newline, + ACTIONS(5873), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2325), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -218158,16 +223536,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, - [94374] = 4, + [99318] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2571), 1, - sym__space, - STATE(3052), 1, + ACTIONS(6206), 1, + anon_sym_LBRACK2, + STATE(3201), 1, sym_comment, - ACTIONS(2573), 13, + ACTIONS(2088), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2090), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218179,108 +223558,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, - [94399] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(6011), 1, - anon_sym_DASH2, - STATE(3053), 1, - sym_comment, - STATE(3300), 1, - sym_param_completer, - ACTIONS(6009), 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, - [94428] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5783), 1, - anon_sym_DASH2, - STATE(3054), 1, - sym_comment, - STATE(3239), 1, - sym_param_completer, - ACTIONS(5779), 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, - [94457] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3055), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 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, - [94482] = 4, - ACTIONS(3), 1, + [99345] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_DASH2, - STATE(3056), 1, + ACTIONS(2290), 1, + sym__space, + STATE(3202), 1, sym_comment, - ACTIONS(968), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94507] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2292), 13, sym__newline, - ACTIONS(6013), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3057), 1, - sym_comment, - ACTIONS(1955), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218290,37 +223576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [94536] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_DASH2, - STATE(3058), 1, - sym_comment, - ACTIONS(2571), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94561] = 4, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99370] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2194), 1, + ACTIONS(2294), 1, sym__space, - STATE(3059), 1, + STATE(3203), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(2296), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218334,14 +223600,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94586] = 4, + [99395] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4629), 1, + ACTIONS(2620), 1, sym__space, - STATE(3060), 1, + STATE(3204), 1, sym_comment, - ACTIONS(4627), 13, + ACTIONS(2622), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218355,35 +223621,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94611] = 4, + [99420] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(6210), 1, anon_sym_DASH2, - STATE(3061), 1, + STATE(3205), 1, sym_comment, - ACTIONS(1706), 13, + STATE(5178), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6208), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94636] = 4, + [99449] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2114), 1, + ACTIONS(2206), 1, anon_sym_DASH2, - STATE(3062), 1, + STATE(3206), 1, sym_comment, - ACTIONS(2112), 13, + ACTIONS(2204), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -218397,14 +223665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94661] = 4, - ACTIONS(103), 1, + [99474] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, - sym__space, - STATE(3063), 1, + STATE(3207), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(5235), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218416,19 +223684,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, - [94686] = 5, - ACTIONS(103), 1, + anon_sym_LBRACE, + [99497] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6016), 1, - anon_sym_LBRACK2, - STATE(3064), 1, + STATE(3208), 1, sym_comment, - ACTIONS(2128), 2, + ACTIONS(5911), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(2130), 11, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218440,36 +223705,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, - [94713] = 5, + [99520] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1960), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(6018), 1, - sym__newline, - STATE(3065), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1955), 11, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [94740] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2254), 1, - sym__space, - STATE(3066), 1, + STATE(3209), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(5239), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218481,37 +223724,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, - [94765] = 4, - ACTIONS(103), 1, + anon_sym_LBRACE, + [99543] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2262), 1, - sym__space, - STATE(3067), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(6214), 1, + anon_sym_DASH2, + STATE(3210), 1, sym_comment, - ACTIONS(2264), 13, + STATE(5178), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6212), 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, - [94790] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [99572] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2507), 1, + ACTIONS(2666), 1, anon_sym_DASH2, - STATE(3068), 1, + STATE(3211), 1, sym_comment, - ACTIONS(2505), 13, + ACTIONS(2664), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -218525,37 +223769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94815] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6021), 1, - anon_sym_else, - ACTIONS(6023), 1, - sym__newline, - STATE(2919), 1, - aux_sym__repeat_newline, - STATE(3069), 1, - sym_comment, - ACTIONS(6026), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [94844] = 4, + [99597] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4625), 1, - sym__space, - STATE(3070), 1, + STATE(3212), 1, sym_comment, - ACTIONS(4623), 13, + ACTIONS(5420), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5418), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218567,20 +223789,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, - [94869] = 6, - ACTIONS(3), 1, + [99621] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6028), 1, - anon_sym_else, - ACTIONS(6030), 1, - sym__newline, - STATE(2950), 1, - aux_sym__repeat_newline, - STATE(3071), 1, + STATE(3213), 1, sym_comment, - ACTIONS(6033), 11, + ACTIONS(2286), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2288), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218591,36 +223809,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, - [94898] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_DASH2, - STATE(3072), 1, - sym_comment, - ACTIONS(2194), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94923] = 4, + [99645] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6037), 1, - sym__space, - STATE(3073), 1, + STATE(3214), 1, sym_comment, - ACTIONS(6035), 13, + ACTIONS(1912), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1914), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218632,16 +223829,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, + [99669] = 13, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__entry_separator, + ACTIONS(1602), 1, anon_sym_RBRACE, - [94948] = 4, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1836), 1, + anon_sym_DOLLAR, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6216), 1, + anon_sym_DOT, + ACTIONS(6218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6220), 1, + aux_sym__immediate_decimal_token2, + STATE(3215), 1, + sym_comment, + STATE(3853), 1, + sym__immediate_decimal, + ACTIONS(6222), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3934), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [99711] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2234), 1, - sym__space, - STATE(3074), 1, + STATE(3216), 1, sym_comment, - ACTIONS(2236), 13, + ACTIONS(2204), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2206), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218653,41 +223878,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, - [94973] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(737), 1, - sym__immediate_decimal, - STATE(3075), 1, - sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(736), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [95007] = 4, - ACTIONS(3), 1, + [99735] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_else, - STATE(3076), 1, + STATE(3217), 1, sym_comment, - ACTIONS(6043), 12, + ACTIONS(2581), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2583), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218699,47 +223898,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_RBRACE, - [95031] = 15, + [99759] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5819), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5825), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5827), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5829), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5831), 1, anon_sym_DASH2, - ACTIONS(5723), 1, - anon_sym_RBRACK, - STATE(2467), 1, + ACTIONS(6224), 1, + anon_sym_RPAREN, + STATE(2550), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2684), 1, sym__param_name, - STATE(2828), 1, + STATE(2939), 1, aux_sym_parameter_parens_repeat1, - STATE(3077), 1, + STATE(3218), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, + STATE(3374), 1, sym_param_rest, - STATE(3328), 1, + STATE(3375), 1, sym_param_opt, - STATE(3582), 1, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, sym_parameter, - [95077] = 4, - ACTIONS(103), 1, + [99805] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3078), 1, + STATE(3219), 1, sym_comment, - ACTIONS(2537), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2539), 11, + ACTIONS(6226), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218751,12 +223946,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, - [95101] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99827] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3079), 1, + STATE(3220), 1, sym_comment, - ACTIONS(4783), 13, + ACTIONS(6228), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218770,44 +223967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95123] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACK, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6045), 1, - anon_sym_DOT, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - STATE(3080), 1, - sym_comment, - STATE(3673), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [95165] = 4, + [99849] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3081), 1, + STATE(3221), 1, sym_comment, - ACTIONS(5856), 2, + ACTIONS(1862), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5854), 11, + ACTIONS(1864), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218819,71 +223987,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, - [95189] = 9, + [99873] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(722), 1, - sym__immediate_decimal, - STATE(3082), 1, + STATE(3222), 1, sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(721), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 4, - anon_sym_if, + ACTIONS(6230), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [95223] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6053), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3083), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [95269] = 4, + anon_sym_RBRACE, + [99895] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3084), 1, + STATE(3223), 1, sym_comment, - ACTIONS(2202), 2, + ACTIONS(2664), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2204), 11, + ACTIONS(2666), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218895,15 +224026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95293] = 4, + [99919] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3085), 1, + STATE(3224), 1, sym_comment, - ACTIONS(5889), 2, + ACTIONS(4682), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5887), 11, + ACTIONS(4680), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218915,15 +224046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95317] = 4, + [99943] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3086), 1, + STATE(3225), 1, sym_comment, - ACTIONS(5965), 2, + ACTIONS(2608), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5963), 11, + ACTIONS(2610), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218935,12 +224066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95341] = 3, - ACTIONS(3), 1, + [99967] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3087), 1, + STATE(3226), 1, sym_comment, - ACTIONS(4789), 13, + ACTIONS(2533), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2535), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218952,48 +224086,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [95363] = 15, - ACTIONS(3), 1, + [99991] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, + ACTIONS(1639), 1, + sym__entry_separator, + ACTIONS(1836), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5725), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3088), 1, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6106), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6108), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6233), 1, + anon_sym_DOT, + STATE(3227), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [95409] = 4, + STATE(4022), 1, + sym__immediate_decimal, + ACTIONS(1641), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6110), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4021), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100031] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3089), 1, + STATE(3228), 1, sym_comment, - ACTIONS(2505), 2, + ACTIONS(2537), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2507), 11, + ACTIONS(2539), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219005,43 +224134,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, - [95433] = 12, + [100055] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__space, ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, + sym__entry_separator, + ACTIONS(1836), 1, anon_sym_DOLLAR, - ACTIONS(6055), 1, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6233), 1, + anon_sym_DOT, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token2, - STATE(3090), 1, + STATE(3229), 1, sym_comment, - STATE(4026), 1, + STATE(3933), 1, sym__immediate_decimal, - ACTIONS(1633), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6059), 2, + ACTIONS(1641), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6239), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3013), 2, + STATE(3932), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [95473] = 4, + [100095] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3091), 1, + STATE(3230), 1, sym_comment, - ACTIONS(2254), 2, + ACTIONS(2228), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2256), 11, + ACTIONS(2230), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219053,15 +224182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95497] = 4, + [100119] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3092), 1, + STATE(3231), 1, sym_comment, - ACTIONS(5885), 2, + ACTIONS(2232), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5883), 11, + ACTIONS(2234), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219073,35 +224202,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95521] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_DASH2, - STATE(3093), 1, - sym_comment, - ACTIONS(6061), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95545] = 4, + [100143] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3094), 1, + STATE(3232), 1, sym_comment, - ACTIONS(2591), 2, + ACTIONS(2236), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2593), 11, + ACTIONS(2238), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219113,34 +224222,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, - [95569] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6067), 1, - anon_sym_DASH2, - STATE(3095), 1, - sym_comment, - ACTIONS(6065), 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, - [95593] = 4, + [100167] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3096), 1, + STATE(3233), 1, sym_comment, - STATE(3211), 1, - aux_sym__repeat_newline, - ACTIONS(5590), 12, + ACTIONS(6241), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219153,15 +224240,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95617] = 4, + anon_sym_RBRACE, + [100189] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3097), 1, + STATE(3234), 1, sym_comment, - ACTIONS(5961), 2, + ACTIONS(2593), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5959), 11, + ACTIONS(2595), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219173,63 +224261,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95641] = 4, - ACTIONS(103), 1, + [100213] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3098), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(743), 1, + sym__immediate_decimal, + STATE(3235), 1, sym_comment, - ACTIONS(2254), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2256), 11, + ACTIONS(5907), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6243), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(742), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1667), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [95665] = 12, - ACTIONS(103), 1, + anon_sym_EQ_GT, + [100247] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(745), 1, + sym__immediate_decimal, + STATE(3236), 1, + sym_comment, + ACTIONS(5907), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6243), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, aux_sym__immediate_decimal_token2, - STATE(3099), 1, - sym_comment, - STATE(3932), 1, + STATE(744), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100281] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(747), 1, sym__immediate_decimal, - ACTIONS(1633), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, + STATE(3237), 1, + sym_comment, + ACTIONS(5907), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4123), 2, + ACTIONS(6243), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(746), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [95705] = 4, + ACTIONS(1663), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100315] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6079), 1, - anon_sym_catch, - STATE(3100), 1, + STATE(3238), 1, sym_comment, - ACTIONS(5918), 12, - ts_builtin_sym_end, + STATE(3257), 1, + aux_sym__repeat_newline, + ACTIONS(5649), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219241,15 +224355,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, - [95729] = 4, + anon_sym_RPAREN, + [100339] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3101), 1, + STATE(3239), 1, sym_comment, - ACTIONS(2206), 2, + ACTIONS(2240), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2208), 11, + ACTIONS(2242), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219261,12 +224376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95753] = 3, + [100363] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3102), 1, + STATE(3240), 1, sym_comment, - ACTIONS(6081), 13, + ACTIONS(1862), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219278,17 +224395,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, - [95775] = 4, + [100385] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3103), 1, + STATE(3241), 1, sym_comment, - ACTIONS(2210), 2, + ACTIONS(5744), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2212), 11, + ACTIONS(5742), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219300,54 +224415,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, - [95799] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2098), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(3104), 1, - sym_comment, - ACTIONS(2096), 12, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - sym__newline, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [95823] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5924), 1, - anon_sym_DASH2, - STATE(3105), 1, - sym_comment, - ACTIONS(5920), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95847] = 4, + [100409] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6083), 1, + ACTIONS(6247), 1, anon_sym_else, - STATE(3106), 1, + STATE(3242), 1, sym_comment, - ACTIONS(6043), 12, + ACTIONS(6245), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -219360,15 +224435,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95871] = 4, + [100433] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3107), 1, + STATE(3243), 1, sym_comment, - ACTIONS(2258), 2, + ACTIONS(5963), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2260), 11, + ACTIONS(5961), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219380,40 +224455,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, - [95895] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4866), 1, - anon_sym_DOT, - ACTIONS(5862), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, - aux_sym__immediate_decimal_token2, - STATE(3108), 1, - sym_comment, - STATE(3870), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3869), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [95935] = 3, + [100457] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3109), 1, + STATE(3244), 1, sym_comment, - ACTIONS(6085), 13, + ACTIONS(6249), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219427,15 +224474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95957] = 4, + [100479] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3110), 1, + STATE(3245), 1, sym_comment, - ACTIONS(2226), 2, + ACTIONS(6100), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2228), 11, + ACTIONS(6098), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219447,15 +224494,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, - [95981] = 4, - ACTIONS(103), 1, + [100503] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3111), 1, + STATE(3246), 1, sym_comment, - ACTIONS(2230), 2, + ACTIONS(1912), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2232), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219467,15 +224513,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, - [96005] = 4, + [100525] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(3247), 1, + sym_comment, + STATE(4286), 1, + sym__immediate_decimal, + ACTIONS(6251), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(730), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1598), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100561] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3112), 1, + STATE(3248), 1, sym_comment, - ACTIONS(2234), 2, + ACTIONS(2632), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2236), 11, + ACTIONS(2634), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219487,12 +224559,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, - [96029] = 3, - ACTIONS(3), 1, + [100585] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3113), 1, + STATE(3249), 1, sym_comment, - ACTIONS(6087), 13, + ACTIONS(6119), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6117), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219504,14 +224579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96051] = 3, - ACTIONS(3), 1, + [100609] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3114), 1, + STATE(3250), 1, sym_comment, - ACTIONS(6089), 13, + ACTIONS(2290), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2292), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219523,14 +224599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96073] = 3, - ACTIONS(3), 1, + [100633] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3115), 1, + STATE(3251), 1, sym_comment, - ACTIONS(6091), 13, + ACTIONS(2294), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2296), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219542,55 +224619,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96095] = 4, + [100657] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6095), 1, - anon_sym_DASH2, - STATE(3116), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(3252), 1, sym_comment, - ACTIONS(6093), 12, - anon_sym_EQ, - sym_identifier, + STATE(4291), 1, + sym__immediate_decimal, + ACTIONS(6251), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(748), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1651), 3, sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96119] = 5, + anon_sym_EQ_GT, + [100693] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6099), 1, - anon_sym_QMARK, - ACTIONS(6101), 1, - anon_sym_DASH2, - STATE(3117), 1, - sym_comment, - ACTIONS(6097), 11, - anon_sym_EQ, + ACTIONS(5819), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5825), 1, anon_sym_DOLLAR, + ACTIONS(5827), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, anon_sym_DASH_DASH, - [96145] = 3, - ACTIONS(3), 1, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(5877), 1, + anon_sym_PIPE, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2939), 1, + aux_sym_parameter_parens_repeat1, + STATE(3253), 1, + sym_comment, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [100739] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3118), 1, + STATE(3254), 1, sym_comment, - ACTIONS(6103), 13, + ACTIONS(2196), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2198), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219602,65 +224696,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, - [96167] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6105), 1, - anon_sym_DOT, - STATE(3119), 1, - sym_comment, - STATE(3862), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3861), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96207] = 4, + [100763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6109), 1, - anon_sym_DASH2, - STATE(3120), 1, + STATE(3255), 1, sym_comment, - ACTIONS(6107), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(4867), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96231] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [100785] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3121), 1, + STATE(3256), 1, sym_comment, - ACTIONS(2238), 2, + ACTIONS(5796), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2240), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219672,15 +224734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96255] = 4, - ACTIONS(103), 1, + [100807] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3122), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3257), 1, sym_comment, - ACTIONS(5251), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5249), 11, + ACTIONS(5691), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219692,15 +224753,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, - [96279] = 4, + anon_sym_RPAREN, + [100831] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3123), 1, + STATE(3258), 1, sym_comment, - ACTIONS(5940), 2, + ACTIONS(6135), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5938), 11, + ACTIONS(6133), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219712,15 +224774,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, - [96303] = 4, + [100855] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3124), 1, + STATE(3259), 1, sym_comment, - ACTIONS(5247), 2, + ACTIONS(2244), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5245), 11, + ACTIONS(2246), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219732,15 +224794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96327] = 4, + [100879] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3125), 1, + STATE(3260), 1, sym_comment, - ACTIONS(2242), 2, + ACTIONS(2200), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2244), 11, + ACTIONS(2202), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219752,15 +224814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96351] = 4, + [100903] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3126), 1, + STATE(3261), 1, sym_comment, - ACTIONS(6037), 2, + ACTIONS(2573), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6035), 11, + ACTIONS(2575), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219772,84 +224834,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96375] = 12, + [100927] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1651), 1, sym__space, - ACTIONS(1615), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - ACTIONS(3212), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(6055), 1, + ACTIONS(6255), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, + ACTIONS(6257), 1, aux_sym__immediate_decimal_token2, - STATE(3127), 1, + STATE(3262), 1, sym_comment, - STATE(4013), 1, + STATE(4062), 1, sym__immediate_decimal, - ACTIONS(1598), 2, + ACTIONS(1653), 2, sym__newline, anon_sym_SEMI, - ACTIONS(6059), 2, + ACTIONS(6259), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2982), 2, + STATE(3188), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [96415] = 5, + [100967] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_DASH2, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, - STATE(3128), 1, + STATE(3263), 1, sym_comment, - ACTIONS(968), 11, + ACTIONS(6173), 13, + ts_builtin_sym_end, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96441] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [100989] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6113), 1, - anon_sym_DASH2, - STATE(3129), 1, + STATE(3264), 1, sym_comment, - ACTIONS(6111), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5473), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5471), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [96465] = 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, + [101013] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3130), 1, + STATE(3265), 1, sym_comment, - ACTIONS(2214), 2, + ACTIONS(6141), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2216), 11, + ACTIONS(6139), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219861,14 +224921,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, - [96489] = 4, + [101037] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6117), 1, + ACTIONS(6263), 1, anon_sym_DASH2, - STATE(3131), 1, + STATE(3266), 1, sym_comment, - ACTIONS(6115), 12, + ACTIONS(6261), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219878,18 +224938,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96513] = 4, + anon_sym_LPAREN2, + [101061] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3132), 1, + STATE(3267), 1, sym_comment, - ACTIONS(2246), 2, + ACTIONS(6145), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2248), 11, + ACTIONS(6143), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219901,15 +224961,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, - [96537] = 4, - ACTIONS(103), 1, + [101085] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3133), 1, + STATE(3268), 1, sym_comment, - ACTIONS(2615), 2, + ACTIONS(6173), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2617), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219921,14 +224980,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, - [96561] = 4, + [101107] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3134), 1, + STATE(3269), 1, sym_comment, - STATE(3173), 1, - aux_sym__repeat_newline, - ACTIONS(5596), 12, + ACTIONS(2620), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219940,33 +224999,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, - [96585] = 4, + [101129] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3135), 1, - sym_comment, - ACTIONS(4625), 2, - ts_builtin_sym_end, + ACTIONS(1598), 1, sym__space, - ACTIONS(4623), 11, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(6255), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6257), 1, + aux_sym__immediate_decimal_token2, + STATE(3270), 1, + sym_comment, + STATE(4165), 1, + sym__immediate_decimal, + ACTIONS(1602), 2, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [96609] = 3, - ACTIONS(3), 1, + ACTIONS(6259), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3155), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101169] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3271), 1, sym_comment, - ACTIONS(6119), 13, + ACTIONS(2154), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2156), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219978,37 +225047,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, - [96631] = 4, + [101193] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6123), 1, - anon_sym_DASH2, - STATE(3137), 1, - sym_comment, - ACTIONS(6121), 12, - anon_sym_EQ, + ACTIONS(5819), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5825), 1, anon_sym_DOLLAR, - anon_sym_AT2, + ACTIONS(5827), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, anon_sym_DASH_DASH, - [96655] = 4, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(5931), 1, + anon_sym_RBRACK, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2939), 1, + aux_sym_parameter_parens_repeat1, + STATE(3272), 1, + sym_comment, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [101239] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3138), 1, + STATE(3273), 1, sym_comment, - ACTIONS(2250), 2, + ACTIONS(2248), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2252), 11, + ACTIONS(2250), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220020,55 +225098,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, - [96679] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6127), 1, - anon_sym_DASH2, - STATE(3139), 1, - sym_comment, - ACTIONS(6125), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96703] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6131), 1, - anon_sym_DASH2, - STATE(3140), 1, - sym_comment, - ACTIONS(6129), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96727] = 4, + [101263] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3141), 1, + STATE(3274), 1, sym_comment, - ACTIONS(2262), 2, + ACTIONS(2620), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2264), 11, + ACTIONS(2622), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220080,35 +225118,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, - [96751] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6135), 1, - anon_sym_DASH2, - STATE(3142), 1, - sym_comment, - ACTIONS(6133), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96775] = 4, + [101287] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3143), 1, + STATE(3275), 1, sym_comment, - ACTIONS(1858), 2, + ACTIONS(4722), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1860), 11, + ACTIONS(4720), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220120,32 +225138,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, - [96799] = 4, - ACTIONS(3), 1, + [101311] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6139), 1, - anon_sym_DASH2, - STATE(3144), 1, + STATE(3276), 1, sym_comment, - ACTIONS(6137), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2252), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2254), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96823] = 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, + [101335] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3145), 1, + STATE(3277), 1, sym_comment, - ACTIONS(6141), 13, + ACTIONS(6062), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220159,12 +225177,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96845] = 3, + [101357] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3278), 1, sym_comment, - ACTIONS(6143), 13, + ACTIONS(6265), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220178,15 +225196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96867] = 4, + [101379] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3147), 1, + STATE(3279), 1, sym_comment, - ACTIONS(4629), 2, + ACTIONS(2256), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4627), 11, + ACTIONS(2258), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220198,15 +225216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96891] = 4, + [101403] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3148), 1, + STATE(3280), 1, sym_comment, - ACTIONS(2607), 2, + ACTIONS(6149), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2609), 11, + ACTIONS(6147), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220218,41 +225236,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, - [96915] = 10, - ACTIONS(3), 1, + [101427] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3149), 1, + STATE(3281), 1, sym_comment, - STATE(4120), 1, - sym__immediate_decimal, - ACTIONS(6145), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 3, + ACTIONS(6153), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6151), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [96951] = 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, + [101451] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3150), 1, + STATE(3282), 1, sym_comment, - ACTIONS(5581), 2, + ACTIONS(6157), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5579), 11, + ACTIONS(6155), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220264,46 +225276,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, - [96975] = 15, + [101475] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6149), 1, - anon_sym_PIPE, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3151), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97021] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3152), 1, + STATE(3283), 1, sym_comment, - ACTIONS(4633), 2, + ACTIONS(2537), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(4631), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220315,15 +225295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97045] = 4, + [101497] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3153), 1, + STATE(3284), 1, sym_comment, - ACTIONS(2563), 2, + ACTIONS(2260), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2565), 11, + ACTIONS(2262), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220335,40 +225315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97069] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(739), 1, - sym__immediate_decimal, - STATE(3154), 1, - sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(738), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97103] = 4, + [101521] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3155), 1, + STATE(3285), 1, sym_comment, - ACTIONS(2571), 2, + ACTIONS(2102), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2573), 11, + ACTIONS(2104), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220380,15 +225335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97127] = 4, + [101545] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3156), 1, + STATE(3286), 1, sym_comment, - ACTIONS(2218), 2, + ACTIONS(2110), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2220), 11, + ACTIONS(2112), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220400,54 +225355,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, - [97151] = 4, + [101569] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6153), 1, - anon_sym_DASH2, - STATE(3157), 1, + STATE(3287), 1, sym_comment, - ACTIONS(6151), 12, + ACTIONS(6092), 13, + ts_builtin_sym_end, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [97175] = 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, + [101591] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6157), 1, - anon_sym_DASH2, - STATE(3158), 1, + STATE(3288), 1, sym_comment, - ACTIONS(6155), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6267), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [97199] = 4, + anon_sym_RBRACE, + [101613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6159), 1, - anon_sym_else, - STATE(3159), 1, + STATE(3289), 1, sym_comment, - ACTIONS(6043), 12, + ACTIONS(6269), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220460,37 +225411,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97223] = 9, + anon_sym_RBRACE, + [101635] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3290), 1, + sym_comment, + ACTIONS(2264), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2266), 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, + [101659] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(741), 1, - sym__immediate_decimal, - STATE(3160), 1, + STATE(3291), 1, sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(740), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 4, - anon_sym_if, + ACTIONS(6271), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [97257] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101681] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3161), 1, + STATE(3292), 1, sym_comment, - ACTIONS(5548), 13, + ACTIONS(6273), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220504,15 +225470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97279] = 4, + [101703] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3162), 1, + STATE(3293), 1, sym_comment, - ACTIONS(2511), 2, + ACTIONS(5416), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2513), 11, + ACTIONS(5414), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220524,15 +225490,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, - [97303] = 4, + [101727] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3163), 1, + STATE(3294), 1, sym_comment, - ACTIONS(2194), 2, + ACTIONS(6181), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2196), 11, + ACTIONS(6179), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220544,41 +225510,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, - [97327] = 10, + [101751] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - STATE(3164), 1, - sym_comment, - STATE(4125), 1, + STATE(729), 1, sym__immediate_decimal, - ACTIONS(6145), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, + STATE(3295), 1, + sym_comment, + ACTIONS(5907), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + ACTIONS(6243), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(728), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1631), 3, + ACTIONS(1639), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [97363] = 4, + [101785] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3165), 1, + STATE(3296), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(2282), 2, ts_builtin_sym_end, sym__space, - ACTIONS(868), 11, + ACTIONS(2284), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220590,15 +225555,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97387] = 4, + [101809] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3166), 1, + STATE(3297), 1, sym_comment, - ACTIONS(5346), 2, + ACTIONS(2268), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5344), 11, + ACTIONS(2270), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220610,12 +225575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97411] = 3, - ACTIONS(3), 1, + [101833] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3167), 1, + STATE(3298), 1, sym_comment, - ACTIONS(6161), 13, + ACTIONS(2272), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2274), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220627,17 +225595,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, + [101857] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(5913), 1, + anon_sym_RBRACK, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2939), 1, + aux_sym_parameter_parens_repeat1, + STATE(3299), 1, + sym_comment, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [101903] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6275), 1, + anon_sym_DASH2, + STATE(3300), 1, + sym_comment, + ACTIONS(5334), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [97433] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101927] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6277), 1, + anon_sym_DASH2, + STATE(3301), 1, + sym_comment, + ACTIONS(5338), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101951] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3168), 1, + ACTIONS(6281), 1, + sym__space, + STATE(3302), 1, + sym_comment, + ACTIONS(6279), 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, + [101975] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6283), 1, + anon_sym_catch, + STATE(3303), 1, sym_comment, - ACTIONS(2515), 2, + ACTIONS(6018), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2517), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220649,12 +225706,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, - [97457] = 3, + [101999] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3169), 1, + ACTIONS(6285), 1, + anon_sym_EQ, + STATE(3304), 1, sym_comment, - ACTIONS(6163), 13, + ACTIONS(6226), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220666,17 +225725,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, - [97479] = 4, + [102023] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3170), 1, + STATE(3305), 1, sym_comment, - ACTIONS(5893), 2, + ACTIONS(2118), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5891), 11, + ACTIONS(2120), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220688,76 +225746,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, - [97503] = 15, + [102047] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(6287), 1, + anon_sym_DASH2, + STATE(3306), 1, + sym_comment, + ACTIONS(5422), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(5694), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5753), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3171), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97549] = 15, + [102071] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5819), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5825), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5827), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5829), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5831), 1, anon_sym_DASH2, - ACTIONS(6165), 1, + ACTIONS(5917), 1, anon_sym_RPAREN, - STATE(2467), 1, + STATE(2550), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2684), 1, sym__param_name, - STATE(2828), 1, + STATE(2939), 1, aux_sym_parameter_parens_repeat1, - STATE(3172), 1, + STATE(3307), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, + STATE(3374), 1, sym_param_rest, - STATE(3328), 1, + STATE(3375), 1, sym_param_opt, - STATE(3582), 1, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, sym_parameter, - [97595] = 4, + [102117] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3173), 1, + ACTIONS(6289), 1, + anon_sym_else, + STATE(3308), 1, sym_comment, - ACTIONS(5514), 12, + ACTIONS(6245), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220769,75 +225816,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, - [97619] = 15, + anon_sym_RBRACE, + [102141] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(6291), 1, + anon_sym_DASH2, + STATE(3309), 1, + sym_comment, + ACTIONS(5348), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(5694), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5755), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3174), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97665] = 12, + [102165] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1598), 1, sym__entry_separator, - ACTIONS(1615), 1, + ACTIONS(1602), 1, + anon_sym_RBRACK, + ACTIONS(1635), 1, sym__unquoted_pattern_in_list, - ACTIONS(6069), 1, + ACTIONS(1836), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token2, - STATE(3175), 1, + ACTIONS(6293), 1, + anon_sym_DOT, + STATE(3310), 1, sym_comment, - STATE(3928), 1, + STATE(3856), 1, sym__immediate_decimal, - ACTIONS(1598), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, + ACTIONS(6239), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4079), 2, + STATE(3934), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [97705] = 4, - ACTIONS(103), 1, + [102207] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3176), 1, + ACTIONS(6295), 1, + anon_sym_EQ, + STATE(3311), 1, sym_comment, - ACTIONS(5897), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5895), 11, + ACTIONS(6226), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220849,15 +225885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97729] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [102231] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3177), 1, + ACTIONS(6297), 1, + anon_sym_else, + STATE(3312), 1, sym_comment, - ACTIONS(2198), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2200), 11, + ACTIONS(6245), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220869,75 +225905,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, - [97753] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6167), 1, - anon_sym_DOT, - ACTIONS(6169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6171), 1, - aux_sym__immediate_decimal_token2, - STATE(3178), 1, - sym_comment, - STATE(3639), 1, - sym__immediate_decimal, - ACTIONS(6173), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [97795] = 15, + anon_sym_RPAREN, + [102255] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(6299), 1, + anon_sym_DASH2, + STATE(3313), 1, + sym_comment, + ACTIONS(5364), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(5694), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + [102279] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6301), 1, anon_sym_DASH2, - ACTIONS(5706), 1, - anon_sym_PIPE, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3179), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97841] = 4, - ACTIONS(103), 1, + sym_comment, + ACTIONS(5377), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102303] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3180), 1, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(3315), 1, sym_comment, - ACTIONS(1706), 2, + ACTIONS(6226), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1619), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220949,15 +225966,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, - [97865] = 4, - ACTIONS(103), 1, + [102327] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3181), 1, + ACTIONS(6305), 1, + anon_sym_DASH2, + STATE(3316), 1, sym_comment, - ACTIONS(5901), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5899), 11, + ACTIONS(5379), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102351] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6012), 1, + anon_sym_DASH2, + STATE(3317), 1, + sym_comment, + ACTIONS(5245), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102375] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6307), 1, + anon_sym_EQ, + STATE(3318), 1, + sym_comment, + ACTIONS(6226), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220969,15 +226025,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, - [97889] = 4, + anon_sym_RPAREN, + [102399] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(6309), 1, + anon_sym_RBRACK, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2939), 1, + aux_sym_parameter_parens_repeat1, + STATE(3319), 1, + sym_comment, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [102445] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3182), 1, + STATE(3320), 1, sym_comment, - ACTIONS(2100), 2, + ACTIONS(6062), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2102), 11, + ACTIONS(6060), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220989,18 +226077,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97913] = 6, + [102469] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(6311), 1, + anon_sym_RPAREN, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2939), 1, + aux_sym_parameter_parens_repeat1, + STATE(3321), 1, + sym_comment, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [102515] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1639), 1, + sym__space, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4970), 1, + anon_sym_DOT, + ACTIONS(6167), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6169), 1, + aux_sym__immediate_decimal_token2, + STATE(3322), 1, + sym_comment, + STATE(4003), 1, + sym__immediate_decimal, + ACTIONS(1641), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6171), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4002), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102555] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(866), 1, + anon_sym_DASH2, + ACTIONS(5207), 1, + sym__unquoted_pattern_in_record, + STATE(3323), 1, + sym_comment, + ACTIONS(886), 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, + [102581] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2148), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(3324), 1, + sym_comment, + ACTIONS(2146), 12, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + sym__newline, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [102605] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6315), 1, + anon_sym_DASH2, + STATE(3325), 1, + sym_comment, + ACTIONS(6313), 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, + [102629] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5969), 1, + ACTIONS(5970), 1, sym__newline, - ACTIONS(6175), 1, + ACTIONS(6317), 1, anon_sym_else, - STATE(3183), 1, + STATE(3326), 1, sym_comment, - STATE(3186), 1, + STATE(3330), 1, aux_sym__repeat_newline, - ACTIONS(5972), 10, + ACTIONS(5973), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221011,18 +226219,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, - [97941] = 6, + [102657] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6319), 1, + anon_sym_DASH2, + STATE(3327), 1, + sym_comment, + ACTIONS(5424), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102681] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6023), 1, + ACTIONS(6027), 1, sym__newline, - ACTIONS(6177), 1, + ACTIONS(6321), 1, anon_sym_else, - STATE(3184), 1, + STATE(3328), 1, sym_comment, - STATE(3188), 1, + STATE(3332), 1, aux_sym__repeat_newline, - ACTIONS(6026), 10, + ACTIONS(6030), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221033,18 +226261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97969] = 6, + [102709] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, + ACTIONS(6034), 1, sym__newline, - ACTIONS(6179), 1, + ACTIONS(6323), 1, anon_sym_else, - STATE(3185), 1, + STATE(3329), 1, sym_comment, - STATE(3189), 1, + STATE(3333), 1, aux_sym__repeat_newline, - ACTIONS(6033), 10, + ACTIONS(6037), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221055,18 +226283,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97997] = 6, + [102737] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5817), 1, + ACTIONS(6041), 1, sym__newline, - ACTIONS(6181), 1, + ACTIONS(6325), 1, anon_sym_else, - STATE(3186), 1, + STATE(3330), 1, sym_comment, - STATE(3190), 1, + STATE(3334), 1, aux_sym__repeat_newline, - ACTIONS(5820), 10, + ACTIONS(6044), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221077,18 +226305,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98025] = 6, + [102765] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5950), 1, + ACTIONS(6048), 1, sym__newline, - ACTIONS(6183), 1, + ACTIONS(6327), 1, anon_sym_else, - STATE(3187), 1, + STATE(3331), 1, sym_comment, - STATE(3191), 1, + STATE(3335), 1, aux_sym__repeat_newline, - ACTIONS(5953), 10, + ACTIONS(6051), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221099,18 +226327,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98053] = 6, + [102793] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, + ACTIONS(6055), 1, sym__newline, - ACTIONS(6185), 1, + ACTIONS(6329), 1, anon_sym_else, - STATE(3188), 1, + STATE(3332), 1, sym_comment, - STATE(3192), 1, + STATE(3336), 1, aux_sym__repeat_newline, - ACTIONS(5797), 10, + ACTIONS(6058), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221121,18 +226349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98081] = 6, + [102821] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5849), 1, + ACTIONS(6076), 1, sym__newline, - ACTIONS(6187), 1, + ACTIONS(6331), 1, anon_sym_else, - STATE(3189), 1, + STATE(3333), 1, sym_comment, - STATE(3193), 1, + STATE(3337), 1, aux_sym__repeat_newline, - ACTIONS(5852), 10, + ACTIONS(6079), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221143,18 +226371,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98109] = 6, + [102849] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1968), 1, sym__newline, - ACTIONS(6189), 1, + ACTIONS(6333), 1, anon_sym_else, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3190), 1, + STATE(3334), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(1966), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221165,18 +226393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98137] = 6, + [102877] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5998), 1, + ACTIONS(6185), 1, sym__newline, - ACTIONS(6192), 1, + ACTIONS(6336), 1, anon_sym_else, - STATE(3191), 1, + STATE(3335), 1, sym_comment, - STATE(3194), 1, + STATE(3338), 1, aux_sym__repeat_newline, - ACTIONS(6001), 10, + ACTIONS(6188), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221187,18 +226415,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98165] = 6, + [102905] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1968), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6338), 1, anon_sym_else, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3192), 1, + STATE(3336), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(1966), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221209,18 +226437,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, - [98193] = 6, + [102933] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1968), 1, sym__newline, - ACTIONS(6197), 1, + ACTIONS(6341), 1, anon_sym_else, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3193), 1, + STATE(3337), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(1966), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221231,18 +226459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98221] = 6, + [102961] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1968), 1, sym__newline, - ACTIONS(6200), 1, + ACTIONS(6344), 1, anon_sym_else, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3194), 1, + STATE(3338), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(1966), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221253,15 +226481,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, - [98249] = 4, + [102989] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3195), 1, + ACTIONS(1598), 1, + sym__entry_separator, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6347), 1, + anon_sym_DOLLAR, + ACTIONS(6349), 1, + anon_sym_LPAREN2, + ACTIONS(6351), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6353), 1, + aux_sym__immediate_decimal_token2, + STATE(3339), 1, + sym_comment, + STATE(4138), 1, + sym__immediate_decimal, + ACTIONS(1602), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6355), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4214), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103029] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3340), 1, sym_comment, - ACTIONS(2076), 2, + ACTIONS(2276), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2078), 11, + ACTIONS(2278), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221273,15 +226529,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, - [98273] = 4, + [103053] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3196), 1, + STATE(3341), 1, sym_comment, - ACTIONS(5905), 2, + ACTIONS(6177), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5903), 11, + ACTIONS(6175), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221293,15 +226549,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, - [98297] = 4, + [103077] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3197), 1, + STATE(3342), 1, sym_comment, - ACTIONS(2222), 2, + ACTIONS(2276), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2224), 11, + ACTIONS(2278), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221313,46 +226569,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, - [98321] = 15, + [103101] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6203), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3198), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3343), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [98367] = 4, + ACTIONS(5719), 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, + [103125] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3199), 1, + STATE(3344), 1, sym_comment, - ACTIONS(2120), 2, + ACTIONS(4732), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2122), 11, + ACTIONS(4730), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221364,43 +226609,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, - [98391] = 12, - ACTIONS(103), 1, + [103149] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6105), 1, - anon_sym_DOT, - STATE(3200), 1, + STATE(3343), 1, + aux_sym__repeat_newline, + STATE(3345), 1, sym_comment, - STATE(3808), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3807), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [98431] = 4, - ACTIONS(103), 1, + ACTIONS(5770), 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, + [103173] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3201), 1, + STATE(3346), 1, sym_comment, - ACTIONS(2152), 2, + ACTIONS(5784), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2154), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221412,46 +226648,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, - [98455] = 15, + [103195] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(6359), 1, + anon_sym_DASH2, + STATE(3347), 1, + sym_comment, + ACTIONS(6357), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(5694), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6205), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3202), 1, + [103219] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3348), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [98501] = 4, + ACTIONS(4873), 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, + [103241] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3203), 1, + STATE(3349), 1, sym_comment, - ACTIONS(2112), 2, + ACTIONS(886), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2114), 11, + ACTIONS(866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221463,15 +226707,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, - [98525] = 4, + [103265] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3204), 1, + STATE(3350), 1, sym_comment, - ACTIONS(4651), 2, + ACTIONS(2529), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4649), 11, + ACTIONS(2531), 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, + [103289] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3351), 1, + sym_comment, + ACTIONS(6204), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [103311] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3352), 1, + sym_comment, + ACTIONS(6361), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221483,15 +226763,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98549] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103333] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(5933), 1, + anon_sym_RPAREN, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2939), 1, + aux_sym_parameter_parens_repeat1, + STATE(3353), 1, + sym_comment, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [103379] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3205), 1, + ACTIONS(1651), 1, + sym__entry_separator, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6347), 1, + anon_sym_DOLLAR, + ACTIONS(6349), 1, + anon_sym_LPAREN2, + ACTIONS(6351), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6353), 1, + aux_sym__immediate_decimal_token2, + STATE(3354), 1, sym_comment, - ACTIONS(2268), 2, + STATE(4146), 1, + sym__immediate_decimal, + ACTIONS(1653), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6355), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4258), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103419] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3355), 1, + sym_comment, + ACTIONS(1713), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2270), 11, + ACTIONS(1614), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221503,15 +226844,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, - [98573] = 4, - ACTIONS(103), 1, + [103443] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3206), 1, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(6363), 1, + anon_sym_PIPE, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2939), 1, + aux_sym_parameter_parens_repeat1, + STATE(3356), 1, + sym_comment, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [103489] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3357), 1, sym_comment, - ACTIONS(2272), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2274), 11, + ACTIONS(6365), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221523,12 +226892,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, - [98597] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103511] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3207), 1, + STATE(3358), 1, sym_comment, - ACTIONS(6207), 13, + ACTIONS(6367), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221542,14 +226913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98619] = 4, - ACTIONS(103), 1, + [103533] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6212), 1, - sym__space, - STATE(3208), 1, + STATE(3359), 1, sym_comment, - ACTIONS(6210), 12, + ACTIONS(6369), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221562,12 +226931,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98643] = 3, + anon_sym_RBRACE, + [103555] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3209), 1, + ACTIONS(6373), 1, + anon_sym_QMARK, + ACTIONS(6375), 1, + anon_sym_DASH2, + STATE(3360), 1, + sym_comment, + ACTIONS(6371), 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, + [103581] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3361), 1, sym_comment, - ACTIONS(5885), 13, + ACTIONS(5683), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221581,15 +226972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98665] = 4, + [103603] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3210), 1, + STATE(3362), 1, sym_comment, - ACTIONS(5914), 2, + ACTIONS(2170), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5912), 11, + ACTIONS(2172), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221601,35 +226992,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, - [98689] = 4, + [103627] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3211), 1, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(6377), 1, + anon_sym_RBRACK, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2939), 1, + aux_sym_parameter_parens_repeat1, + STATE(3363), 1, sym_comment, - ACTIONS(5529), 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, - [98713] = 4, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [103673] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3212), 1, + STATE(3364), 1, sym_comment, - ACTIONS(2519), 2, + ACTIONS(4718), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2521), 11, + ACTIONS(4716), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221641,15 +227043,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, - [98737] = 4, + [103697] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3213), 1, + ACTIONS(6379), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6381), 1, + aux_sym__immediate_decimal_token5, + STATE(3365), 1, sym_comment, - ACTIONS(1866), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1868), 11, + ACTIONS(739), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [103724] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6383), 1, + anon_sym_DASH2, + STATE(3366), 1, + sym_comment, + ACTIONS(5796), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103747] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3367), 1, + sym_comment, + ACTIONS(6385), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221661,18 +227100,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, - [98761] = 6, + anon_sym_RPAREN, + [103768] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5969), 1, - sym__newline, - ACTIONS(6214), 1, - anon_sym_else, - STATE(3214), 1, + STATE(3368), 1, sym_comment, - STATE(3319), 1, - aux_sym__repeat_newline, - ACTIONS(5972), 9, + ACTIONS(6387), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221682,12 +227118,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, - [98788] = 3, + anon_sym_RPAREN, + [103789] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3215), 1, + ACTIONS(2104), 1, + anon_sym_DASH2, + STATE(3369), 1, sym_comment, - ACTIONS(6216), 12, + ACTIONS(2102), 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, + [103812] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3370), 1, + sym_comment, + ACTIONS(6389), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221700,39 +227156,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98809] = 12, - ACTIONS(103), 1, + [103833] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6218), 1, - anon_sym_RBRACK, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3216), 1, + ACTIONS(5798), 1, + anon_sym_DASH2, + STATE(3371), 1, sym_comment, - STATE(3603), 1, - sym__immediate_decimal, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3860), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [98848] = 3, + ACTIONS(5275), 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, + [103856] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3217), 1, + STATE(3372), 1, sym_comment, - ACTIONS(6224), 12, + ACTIONS(6226), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221744,13 +227193,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, - [98869] = 3, + [103877] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3218), 1, + STATE(3373), 1, sym_comment, - ACTIONS(6226), 12, + ACTIONS(6391), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221763,14 +227211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98890] = 4, + [103898] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6230), 1, + ACTIONS(6395), 1, anon_sym_DASH2, - STATE(3219), 1, + STATE(3374), 1, sym_comment, - ACTIONS(6228), 11, + ACTIONS(6393), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -221782,14 +227230,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98913] = 4, + [103921] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(6399), 1, anon_sym_DASH2, - STATE(3220), 1, + STATE(3375), 1, sym_comment, - ACTIONS(2246), 11, + ACTIONS(6397), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -221801,49 +227249,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98936] = 4, - ACTIONS(3), 1, + [103944] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2252), 1, - anon_sym_DASH2, - STATE(3221), 1, - sym_comment, - ACTIONS(2250), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1598), 1, + sym__entry_separator, + ACTIONS(1602), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6401), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [98959] = 3, - ACTIONS(3), 1, + ACTIONS(6403), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6405), 1, + aux_sym__immediate_decimal_token2, + STATE(3376), 1, + sym_comment, + STATE(4501), 1, + sym__immediate_decimal, + ACTIONS(6407), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4214), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103983] = 11, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3222), 1, + ACTIONS(1681), 1, + sym__space, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(6409), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6411), 1, + aux_sym__immediate_decimal_token2, + STATE(3183), 1, + sym__immediate_decimal, + STATE(3377), 1, sym_comment, - ACTIONS(6232), 12, + ACTIONS(1683), 2, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [98980] = 3, + ACTIONS(6171), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3182), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104020] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1663), 1, + sym__space, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(6409), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6411), 1, + aux_sym__immediate_decimal_token2, + STATE(3186), 1, + sym__immediate_decimal, + STATE(3378), 1, + sym_comment, + ACTIONS(1665), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6171), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3185), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104057] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3223), 1, + STATE(3379), 1, sym_comment, - ACTIONS(6234), 12, + ACTIONS(4873), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221855,13 +227346,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, - [99001] = 3, + [104078] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3224), 1, + STATE(3380), 1, sym_comment, - ACTIONS(6236), 12, + ACTIONS(6413), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221874,12 +227364,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99022] = 3, + [104099] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3225), 1, + STATE(3381), 1, sym_comment, - ACTIONS(6238), 12, + ACTIONS(6415), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221892,14 +227382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99043] = 4, + [104120] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, + ACTIONS(6419), 1, anon_sym_DASH2, - STATE(3226), 1, + STATE(3382), 1, sym_comment, - ACTIONS(2214), 11, + ACTIONS(6417), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -221911,18 +227401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99066] = 6, + [104143] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(3227), 1, + STATE(3383), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(2303), 9, + ACTIONS(6421), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221932,34 +227418,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, - [99093] = 6, + anon_sym_RPAREN, + [104164] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6423), 1, + anon_sym_DOT, + ACTIONS(6425), 1, + aux_sym__immediate_decimal_token5, + STATE(3384), 1, + sym_comment, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [104191] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(3228), 1, + ACTIONS(6429), 1, + anon_sym_DASH2, + STATE(3385), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(2303), 9, + ACTIONS(6427), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [99120] = 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, + [104214] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3229), 1, + STATE(3386), 1, sym_comment, - ACTIONS(6085), 12, - ts_builtin_sym_end, + ACTIONS(6431), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221971,12 +227476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99141] = 3, + anon_sym_RPAREN, + [104235] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3230), 1, + STATE(3387), 1, sym_comment, - ACTIONS(6240), 12, + ACTIONS(6433), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221989,14 +227495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99162] = 4, + [104256] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5715), 1, + ACTIONS(6437), 1, anon_sym_DASH2, - STATE(3231), 1, + STATE(3388), 1, sym_comment, - ACTIONS(5713), 11, + ACTIONS(6435), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222008,32 +227514,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99185] = 3, + [104279] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3232), 1, + ACTIONS(6441), 1, + anon_sym_DASH2, + STATE(3389), 1, sym_comment, - ACTIONS(6242), 12, + ACTIONS(6439), 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, - [99206] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104302] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6246), 1, + ACTIONS(6445), 1, anon_sym_DASH2, - STATE(3233), 1, + STATE(3390), 1, sym_comment, - ACTIONS(6244), 11, + ACTIONS(6443), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222045,14 +227552,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99229] = 4, + [104325] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, + ACTIONS(6449), 1, anon_sym_DASH2, - STATE(3234), 1, + STATE(3391), 1, sym_comment, - ACTIONS(5640), 11, + ACTIONS(6447), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222064,118 +227571,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99252] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3235), 1, - sym_comment, - STATE(4116), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4115), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99289] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3236), 1, - sym_comment, - STATE(4119), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4117), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99326] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1675), 1, - sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3237), 1, - sym_comment, - STATE(4122), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4121), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99363] = 11, - ACTIONS(103), 1, + [104348] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1667), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3008), 1, - sym__immediate_decimal, - STATE(3238), 1, + STATE(3392), 1, sym_comment, - ACTIONS(1669), 2, + ACTIONS(6451), 12, sym__newline, anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3006), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99400] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [104369] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6260), 1, + ACTIONS(2112), 1, anon_sym_DASH2, - STATE(3239), 1, + STATE(3393), 1, sym_comment, - ACTIONS(6258), 11, + ACTIONS(2110), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222187,40 +227608,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99423] = 11, - ACTIONS(103), 1, + [104392] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3010), 1, - sym__immediate_decimal, - STATE(3240), 1, + STATE(3394), 1, sym_comment, - ACTIONS(1673), 2, + ACTIONS(6453), 12, sym__newline, anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99460] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [104413] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6260), 1, + ACTIONS(5837), 1, anon_sym_DASH2, - STATE(3241), 1, + STATE(3395), 1, sym_comment, - ACTIONS(6258), 11, + ACTIONS(5835), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222232,14 +227645,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99483] = 4, + [104436] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6264), 1, + ACTIONS(5815), 1, anon_sym_DASH2, - STATE(3242), 1, + STATE(3396), 1, sym_comment, - ACTIONS(6262), 11, + ACTIONS(5255), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222251,33 +227664,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99506] = 4, + [104459] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6268), 1, + ACTIONS(6455), 1, + sym__newline, + ACTIONS(6458), 1, anon_sym_DASH2, - STATE(3243), 1, + STATE(3397), 1, sym_comment, - ACTIONS(6266), 11, + ACTIONS(2146), 2, anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4431), 8, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99529] = 4, + [104486] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6272), 1, + ACTIONS(6462), 1, anon_sym_DASH2, - STATE(3244), 1, + STATE(3398), 1, sym_comment, - ACTIONS(6270), 11, + ACTIONS(6460), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222289,48 +227704,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99552] = 3, + [104509] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3245), 1, + ACTIONS(2120), 1, + anon_sym_DASH2, + STATE(3399), 1, sym_comment, - ACTIONS(6274), 12, + ACTIONS(2118), 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, - [99573] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104532] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3246), 1, - sym_comment, - ACTIONS(6276), 12, + ACTIONS(1971), 1, + anon_sym_DASH2, + ACTIONS(6464), 1, sym__newline, - anon_sym_SEMI, + STATE(3400), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1966), 9, + anon_sym_EQ, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [99594] = 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104557] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3247), 1, + STATE(3401), 1, sym_comment, - ACTIONS(6278), 12, + ACTIONS(6467), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222343,33 +227761,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99615] = 6, - ACTIONS(3), 1, + [104578] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6280), 1, + ACTIONS(1598), 1, + sym__entry_separator, + ACTIONS(1602), 1, + anon_sym_RBRACE, + ACTIONS(1836), 1, + anon_sym_DOLLAR, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6469), 1, anon_sym_DOT, - ACTIONS(6282), 1, - aux_sym__immediate_decimal_token5, - STATE(3248), 1, + STATE(3402), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [99642] = 3, + STATE(4086), 1, + sym__immediate_decimal, + ACTIONS(6239), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3934), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104617] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3249), 1, + STATE(3403), 1, sym_comment, - ACTIONS(6284), 12, + ACTIONS(4867), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222381,13 +227806,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, - [99663] = 3, + [104638] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3250), 1, + STATE(3404), 1, sym_comment, - ACTIONS(6286), 12, + ACTIONS(6471), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222400,32 +227824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99684] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_DASH2, - STATE(3251), 1, - sym_comment, - ACTIONS(6288), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99707] = 3, + [104659] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3252), 1, + STATE(3405), 1, sym_comment, - ACTIONS(4789), 12, - ts_builtin_sym_end, + ACTIONS(6473), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222437,54 +227841,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, - [99728] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [104680] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6292), 1, + ACTIONS(1836), 1, + anon_sym_DOLLAR, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6106), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6294), 1, - aux_sym__immediate_decimal_token5, - STATE(3253), 1, + ACTIONS(6108), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6475), 1, + anon_sym_RBRACK, + ACTIONS(6477), 1, + anon_sym_DOLLAR2, + ACTIONS(6479), 1, + aux_sym__unquoted_in_list_token2, + STATE(3406), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [99755] = 6, + STATE(3774), 1, + sym__immediate_decimal, + ACTIONS(6110), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4020), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104719] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6296), 1, - sym__newline, - ACTIONS(6299), 1, + ACTIONS(6481), 1, anon_sym_DASH2, - STATE(3254), 1, + STATE(3407), 1, sym_comment, - ACTIONS(2096), 2, + ACTIONS(6173), 11, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4376), 8, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99782] = 3, + [104742] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3255), 1, + STATE(3408), 1, sym_comment, - ACTIONS(6301), 12, + ACTIONS(6483), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222497,14 +227906,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99803] = 4, + [104763] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1639), 1, + sym__entry_separator, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6401), 1, + anon_sym_DOLLAR, + ACTIONS(6485), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6487), 1, + aux_sym__immediate_decimal_token2, + STATE(3409), 1, + sym_comment, + STATE(4211), 1, + sym__immediate_decimal, + ACTIONS(1641), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6239), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4210), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104800] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6305), 1, + ACTIONS(5790), 1, anon_sym_DASH2, - STATE(3256), 1, + STATE(3410), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(5788), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222516,30 +227951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99826] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3257), 1, - sym_comment, - ACTIONS(6307), 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, - [99847] = 3, + [104823] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3258), 1, + STATE(3411), 1, sym_comment, - ACTIONS(6163), 12, + ACTIONS(6241), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222552,32 +227969,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, - [99868] = 3, - ACTIONS(3), 1, + [104844] = 11, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3259), 1, + ACTIONS(1639), 1, + sym__space, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(6409), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6411), 1, + aux_sym__immediate_decimal_token2, + STATE(3152), 1, + sym__immediate_decimal, + STATE(3412), 1, sym_comment, - ACTIONS(6309), 12, + ACTIONS(1641), 2, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99889] = 4, + ACTIONS(6171), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3148), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104881] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5721), 1, + ACTIONS(2250), 1, anon_sym_DASH2, - STATE(3260), 1, + STATE(3413), 1, sym_comment, - ACTIONS(5719), 11, + ACTIONS(2248), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222589,30 +228014,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99912] = 3, + [104904] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3261), 1, + ACTIONS(6489), 1, + anon_sym_DOT, + ACTIONS(6491), 1, + aux_sym__immediate_decimal_token5, + STATE(3414), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 8, + anon_sym_if, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99933] = 3, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [104931] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3262), 1, + STATE(3415), 1, sym_comment, - ACTIONS(6313), 12, + ACTIONS(6493), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222625,12 +228053,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99954] = 3, + [104952] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1651), 1, + sym__entry_separator, + ACTIONS(1653), 1, + anon_sym_RBRACK, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6401), 1, + anon_sym_DOLLAR, + ACTIONS(6403), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6405), 1, + aux_sym__immediate_decimal_token2, + STATE(3416), 1, + sym_comment, + STATE(4323), 1, + sym__immediate_decimal, + ACTIONS(6407), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4258), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104991] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3263), 1, + STATE(3417), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6269), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222642,39 +228098,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99975] = 11, - ACTIONS(103), 1, + [105012] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1675), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(1598), 1, + anon_sym_LBRACE, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(6254), 1, + ACTIONS(6495), 1, + anon_sym_DOT, + STATE(3418), 1, + sym_comment, + STATE(4202), 1, + sym__immediate_decimal, + ACTIONS(6497), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, aux_sym__immediate_decimal_token2, - STATE(3012), 1, - sym__immediate_decimal, - STATE(3264), 1, - sym_comment, - ACTIONS(1677), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, + ACTIONS(6499), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3011), 2, + STATE(4509), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100012] = 3, + [105049] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3265), 1, + ACTIONS(6501), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6503), 1, + aux_sym__immediate_decimal_token5, + STATE(3419), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105076] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3420), 1, sym_comment, - ACTIONS(6317), 12, + ACTIONS(6365), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222686,13 +228163,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, + [105097] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2254), 1, + anon_sym_DASH2, + STATE(3421), 1, + sym_comment, + ACTIONS(2252), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [100033] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105120] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3266), 1, + STATE(3422), 1, sym_comment, - ACTIONS(6081), 12, + ACTIONS(6249), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222705,57 +228200,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, - [100054] = 6, + [105141] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2234), 1, + anon_sym_DASH2, + STATE(3423), 1, + sym_comment, + ACTIONS(2232), 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, + [105164] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6319), 1, + ACTIONS(6505), 1, anon_sym_DOT, - ACTIONS(6321), 1, + ACTIONS(6507), 1, aux_sym__immediate_decimal_token5, - STATE(3267), 1, + STATE(3424), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(747), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 6, + ACTIONS(749), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [100081] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1452), 1, - anon_sym_BANG, - ACTIONS(6323), 1, - anon_sym_QMARK2, - STATE(351), 1, - sym__path_suffix, - STATE(3268), 1, - sym_comment, - ACTIONS(1448), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1446), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [100110] = 4, + [105191] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6327), 1, + ACTIONS(2258), 1, anon_sym_DASH2, - STATE(3269), 1, + STATE(3425), 1, sym_comment, - ACTIONS(6325), 11, + ACTIONS(2256), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222767,35 +228259,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100133] = 6, - ACTIONS(103), 1, + [105214] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6329), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6331), 1, - aux_sym__immediate_decimal_token5, - STATE(3270), 1, + ACTIONS(5817), 1, + anon_sym_DASH2, + STATE(3426), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(5281), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [100160] = 4, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105237] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, + ACTIONS(2262), 1, anon_sym_DASH2, - STATE(3271), 1, + STATE(3427), 1, sym_comment, - ACTIONS(2206), 11, + ACTIONS(2260), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222807,12 +228297,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100183] = 3, + [105260] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3272), 1, + ACTIONS(2907), 1, + sym__newline, + STATE(882), 1, + aux_sym__pipe_separator, + STATE(3428), 1, + sym_comment, + STATE(3546), 1, + aux_sym__repeat_newline, + ACTIONS(2325), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [105287] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3429), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6265), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222824,42 +228336,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [100204] = 12, + [105308] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6509), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6511), 1, + aux_sym__immediate_decimal_token5, + STATE(3430), 1, + sym_comment, + ACTIONS(739), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105335] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, ACTIONS(1598), 1, + sym__entry_separator, + ACTIONS(1602), 1, anon_sym_RBRACE, - ACTIONS(1615), 1, + ACTIONS(1635), 1, sym__unquoted_pattern_in_record, - ACTIONS(5837), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(6401), 1, anon_sym_DOLLAR, - ACTIONS(6335), 1, + ACTIONS(6513), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, + ACTIONS(6515), 1, aux_sym__immediate_decimal_token2, - STATE(3273), 1, + STATE(3431), 1, sym_comment, - STATE(4177), 1, + STATE(4442), 1, sym__immediate_decimal, - ACTIONS(6339), 2, + ACTIONS(6517), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4079), 2, + STATE(4214), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100243] = 4, + [105374] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2212), 1, + ACTIONS(5879), 1, anon_sym_DASH2, - STATE(3274), 1, + STATE(3432), 1, sym_comment, - ACTIONS(2210), 11, + ACTIONS(5235), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222871,14 +228403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100266] = 4, + [105397] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, + ACTIONS(5883), 1, anon_sym_DASH2, - STATE(3275), 1, + STATE(3433), 1, sym_comment, - ACTIONS(2226), 11, + ACTIONS(5239), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222890,79 +228422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100289] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6341), 1, - anon_sym_DOT, - ACTIONS(6343), 1, - aux_sym__immediate_decimal_token5, - STATE(3276), 1, - sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [100316] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3277), 1, - sym_comment, - STATE(4075), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100353] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3278), 1, - sym_comment, - ACTIONS(6143), 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, - [100374] = 4, + [105420] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2232), 1, + ACTIONS(2266), 1, anon_sym_DASH2, - STATE(3279), 1, + STATE(3434), 1, sym_comment, - ACTIONS(2230), 11, + ACTIONS(2264), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222974,12 +228441,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100397] = 3, + [105443] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3280), 1, + STATE(3435), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6519), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222992,13 +228459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100418] = 3, + [105464] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3281), 1, + STATE(3436), 1, sym_comment, - ACTIONS(6087), 12, - ts_builtin_sym_end, + ACTIONS(4885), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223010,13 +228476,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, - [100439] = 3, + anon_sym_RPAREN, + [105485] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3282), 1, + ACTIONS(6481), 1, + anon_sym_DASH2, + STATE(3437), 1, sym_comment, - ACTIONS(6089), 12, - ts_builtin_sym_end, + ACTIONS(6173), 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, + [105508] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3438), 1, + sym_comment, + ACTIONS(6521), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223028,12 +228513,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, - [100460] = 3, + anon_sym_RPAREN, + [105529] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3283), 1, + STATE(3439), 1, sym_comment, - ACTIONS(6091), 12, + ACTIONS(5683), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223046,14 +228532,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, - [100481] = 4, + [105550] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6349), 1, + ACTIONS(2230), 1, anon_sym_DASH2, - STATE(3284), 1, + STATE(3440), 1, sym_comment, - ACTIONS(6347), 11, + ACTIONS(2228), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223065,14 +228551,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100504] = 4, + [105573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2236), 1, + STATE(3441), 1, + sym_comment, + ACTIONS(6361), 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, + [105594] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6523), 1, anon_sym_DASH2, - STATE(3285), 1, + STATE(3442), 1, sym_comment, - ACTIONS(2234), 11, + ACTIONS(6204), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223084,40 +228588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100527] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACE, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6335), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, - aux_sym__immediate_decimal_token2, - STATE(3286), 1, - sym_comment, - STATE(4208), 1, - sym__immediate_decimal, - ACTIONS(6339), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100566] = 3, + [105617] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3287), 1, + STATE(3443), 1, sym_comment, - ACTIONS(5548), 12, - ts_builtin_sym_end, + ACTIONS(6525), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223129,12 +228605,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, - [100587] = 3, + anon_sym_RPAREN, + [105638] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3288), 1, + STATE(3444), 1, sym_comment, - ACTIONS(6103), 12, + ACTIONS(6369), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223147,12 +228624,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, - [100608] = 3, + [105659] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3289), 1, + ACTIONS(5921), 1, + anon_sym_DASH2, + STATE(3445), 1, + sym_comment, + ACTIONS(5294), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105682] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3446), 1, sym_comment, - ACTIONS(6351), 12, + ACTIONS(6271), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223164,15 +228661,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, + [105703] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2202), 1, + anon_sym_DASH2, + STATE(3447), 1, + sym_comment, + ACTIONS(2200), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [100629] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105726] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(6527), 1, anon_sym_DASH2, - STATE(3290), 1, + STATE(3448), 1, sym_comment, - ACTIONS(2152), 11, + ACTIONS(5784), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223184,12 +228699,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100652] = 3, + [105749] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3291), 1, + STATE(3449), 1, + sym_comment, + ACTIONS(6529), 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, + [105770] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3450), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6531), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223202,79 +228735,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100673] = 11, + [105791] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(1639), 1, + sym__entry_separator, + ACTIONS(6347), 1, + anon_sym_DOLLAR, + ACTIONS(6349), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(6351), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6353), 1, + aux_sym__immediate_decimal_token2, + STATE(3451), 1, + sym_comment, + STATE(4211), 1, + sym__immediate_decimal, + ACTIONS(1641), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6355), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4210), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105828] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + sym__entry_separator, + ACTIONS(6347), 1, anon_sym_DOLLAR, - ACTIONS(6254), 1, + ACTIONS(6349), 1, + anon_sym_LPAREN2, + ACTIONS(6351), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, + ACTIONS(6353), 1, aux_sym__immediate_decimal_token2, - STATE(2981), 1, + STATE(3452), 1, + sym_comment, + STATE(4253), 1, sym__immediate_decimal, - STATE(3292), 1, + ACTIONS(1669), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6355), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4252), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105865] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1681), 1, + sym__entry_separator, + ACTIONS(6347), 1, + anon_sym_DOLLAR, + ACTIONS(6349), 1, + anon_sym_LPAREN2, + ACTIONS(6351), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6353), 1, + aux_sym__immediate_decimal_token2, + STATE(3453), 1, sym_comment, - ACTIONS(1586), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, + STATE(4255), 1, + sym__immediate_decimal, + ACTIONS(1683), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6355), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2979), 2, + STATE(4254), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100710] = 8, + [105902] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(368), 1, - sym_cell_path, - STATE(3293), 1, + ACTIONS(1663), 1, + sym__entry_separator, + ACTIONS(6347), 1, + anon_sym_DOLLAR, + ACTIONS(6349), 1, + anon_sym_LPAREN2, + ACTIONS(6351), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6353), 1, + aux_sym__immediate_decimal_token2, + STATE(3454), 1, sym_comment, - STATE(3378), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + STATE(4257), 1, + sym__immediate_decimal, + ACTIONS(1665), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6355), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4256), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105939] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1667), 1, sym__entry_separator, - ACTIONS(1432), 5, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6401), 1, + anon_sym_DOLLAR, + ACTIONS(6485), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6487), 1, + aux_sym__immediate_decimal_token2, + STATE(3455), 1, + sym_comment, + STATE(4253), 1, + sym__immediate_decimal, + ACTIONS(1669), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [100741] = 3, - ACTIONS(3), 1, + ACTIONS(6239), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4252), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105976] = 11, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3294), 1, + ACTIONS(1681), 1, + sym__entry_separator, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6401), 1, + anon_sym_DOLLAR, + ACTIONS(6485), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6487), 1, + aux_sym__immediate_decimal_token2, + STATE(3456), 1, sym_comment, - ACTIONS(6357), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [100762] = 3, + STATE(4255), 1, + sym__immediate_decimal, + ACTIONS(1683), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6239), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4254), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106013] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1651), 1, + sym__entry_separator, + ACTIONS(1653), 1, + anon_sym_RBRACE, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6401), 1, + anon_sym_DOLLAR, + ACTIONS(6513), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6515), 1, + aux_sym__immediate_decimal_token2, + STATE(3457), 1, + sym_comment, + STATE(4449), 1, + sym__immediate_decimal, + ACTIONS(6517), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4258), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106052] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3295), 1, + STATE(3458), 1, sym_comment, - ACTIONS(4803), 12, + ACTIONS(6273), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223286,13 +228936,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, - [100783] = 3, + [106073] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3296), 1, + ACTIONS(6533), 1, + anon_sym_EQ, + STATE(3459), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6226), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223304,15 +228955,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, - [100804] = 3, + [106096] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3297), 1, - sym_comment, - ACTIONS(6361), 12, + ACTIONS(5970), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6535), 1, + anon_sym_else, + STATE(3460), 1, + sym_comment, + STATE(3465), 1, + aux_sym__repeat_newline, + ACTIONS(5973), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223322,19 +228976,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, - [100825] = 6, + [106123] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6363), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6365), 1, + ACTIONS(6537), 1, + anon_sym_DOT, + ACTIONS(6539), 1, aux_sym__immediate_decimal_token5, - STATE(3298), 1, + STATE(3461), 1, sym_comment, ACTIONS(747), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, ACTIONS(749), 6, @@ -223344,14 +228997,44 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [100852] = 3, - ACTIONS(3), 1, + [106150] = 11, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3299), 1, + ACTIONS(1663), 1, + sym__entry_separator, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6401), 1, + anon_sym_DOLLAR, + ACTIONS(6485), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6487), 1, + aux_sym__immediate_decimal_token2, + STATE(3462), 1, sym_comment, - ACTIONS(6367), 12, + STATE(4257), 1, + sym__immediate_decimal, + ACTIONS(1665), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6239), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4256), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106187] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6027), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6541), 1, + anon_sym_else, + STATE(3463), 1, + sym_comment, + STATE(3467), 1, + aux_sym__repeat_newline, + ACTIONS(6030), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223361,35 +229044,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, - [100873] = 4, + [106214] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6371), 1, - anon_sym_DASH2, - STATE(3300), 1, - sym_comment, - ACTIONS(6369), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6034), 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, - [100896] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3301), 1, + ACTIONS(6543), 1, + anon_sym_else, + STATE(3464), 1, sym_comment, - ACTIONS(6161), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + STATE(3468), 1, + aux_sym__repeat_newline, + ACTIONS(6037), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223399,15 +229065,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, - [100917] = 3, + [106241] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3302), 1, - sym_comment, - ACTIONS(6119), 12, - ts_builtin_sym_end, + ACTIONS(6041), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6545), 1, + anon_sym_else, + STATE(3465), 1, + sym_comment, + STATE(3469), 1, + aux_sym__repeat_newline, + ACTIONS(6044), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223417,15 +229086,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, - [100938] = 3, + [106268] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3303), 1, - sym_comment, - ACTIONS(6207), 12, - ts_builtin_sym_end, + ACTIONS(6048), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6547), 1, + anon_sym_else, + STATE(3466), 1, + sym_comment, + STATE(3470), 1, + aux_sym__repeat_newline, + ACTIONS(6051), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223435,72 +229107,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100959] = 4, + [106295] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_DASH2, - STATE(3304), 1, - sym_comment, - ACTIONS(2238), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6055), 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, - [100982] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2244), 1, - anon_sym_DASH2, - STATE(3305), 1, + ACTIONS(6549), 1, + anon_sym_else, + STATE(3467), 1, sym_comment, - ACTIONS(2242), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(3471), 1, + aux_sym__repeat_newline, + ACTIONS(6058), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [101005] = 5, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [106322] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1960), 1, - anon_sym_DASH2, - ACTIONS(6373), 1, + ACTIONS(6076), 1, sym__newline, - STATE(3306), 2, - aux_sym__repeat_newline, + ACTIONS(6551), 1, + anon_sym_else, + STATE(3468), 1, sym_comment, - ACTIONS(1955), 9, - anon_sym_EQ, - sym_identifier, + STATE(3472), 1, + aux_sym__repeat_newline, + ACTIONS(6079), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [101030] = 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, + [106349] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3307), 1, - sym_comment, - ACTIONS(6376), 12, + ACTIONS(1968), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6553), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3469), 1, + sym_comment, + ACTIONS(1966), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223510,15 +229170,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, - [101051] = 3, + [106376] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3308), 1, - sym_comment, - ACTIONS(6378), 12, + ACTIONS(6185), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6556), 1, + anon_sym_else, + STATE(3470), 1, + sym_comment, + STATE(3473), 1, + aux_sym__repeat_newline, + ACTIONS(6188), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223528,15 +229191,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, - [101072] = 3, + [106403] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3309), 1, - sym_comment, - ACTIONS(6380), 12, + ACTIONS(1968), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6558), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3471), 1, + sym_comment, + ACTIONS(1966), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223546,16 +229212,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, - [101093] = 3, + [106430] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3310), 1, - sym_comment, - ACTIONS(5885), 12, - ts_builtin_sym_end, + ACTIONS(1968), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6561), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3472), 1, + sym_comment, + ACTIONS(1966), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223565,14 +229233,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, - [101114] = 3, + [106457] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3311), 1, - sym_comment, - ACTIONS(6382), 12, + ACTIONS(1968), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6564), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3473), 1, + sym_comment, + ACTIONS(1966), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223582,13 +229254,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, - [101135] = 3, + [106484] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3312), 1, + STATE(3474), 1, sym_comment, - ACTIONS(6141), 12, + ACTIONS(6228), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223601,12 +229272,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, - [101156] = 3, + [106505] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3313), 1, + STATE(3475), 1, sym_comment, - ACTIONS(6384), 12, + ACTIONS(6567), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223619,14 +229290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101177] = 4, + [106526] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6388), 1, + ACTIONS(5925), 1, anon_sym_DASH2, - STATE(3314), 1, + STATE(3476), 1, sym_comment, - ACTIONS(6386), 11, + ACTIONS(5923), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223638,12 +229309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101200] = 3, + [106549] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3315), 1, + STATE(3477), 1, sym_comment, - ACTIONS(6390), 12, + ACTIONS(4887), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223656,12 +229327,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101221] = 3, + [106570] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3316), 1, + ACTIONS(2270), 1, + anon_sym_DASH2, + STATE(3478), 1, + sym_comment, + ACTIONS(2268), 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, + [106593] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2274), 1, + anon_sym_DASH2, + STATE(3479), 1, + sym_comment, + ACTIONS(2272), 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, + [106616] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6569), 1, + anon_sym_DASH2, + STATE(3480), 1, + sym_comment, + ACTIONS(6092), 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, + [106639] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3481), 1, sym_comment, - ACTIONS(6392), 12, + ACTIONS(6571), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223674,18 +229402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101242] = 6, + [106660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6023), 1, - sym__newline, - ACTIONS(6394), 1, - anon_sym_else, - STATE(3317), 1, + STATE(3482), 1, sym_comment, - STATE(3321), 1, - aux_sym__repeat_newline, - ACTIONS(6026), 9, + ACTIONS(6573), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223695,18 +229419,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, - [101269] = 6, + anon_sym_RPAREN, + [106681] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, - sym__newline, - ACTIONS(6396), 1, - anon_sym_else, - STATE(3318), 1, + STATE(3483), 1, sym_comment, - STATE(3322), 1, - aux_sym__repeat_newline, - ACTIONS(6033), 9, + ACTIONS(6575), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223716,18 +229437,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101296] = 6, + anon_sym_RPAREN, + [106702] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5817), 1, - sym__newline, - ACTIONS(6398), 1, - anon_sym_else, - STATE(3319), 1, + STATE(3484), 1, sym_comment, - STATE(3323), 1, - aux_sym__repeat_newline, - ACTIONS(5820), 9, + ACTIONS(6577), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223737,18 +229455,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, - [101323] = 6, + anon_sym_RPAREN, + [106723] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5950), 1, + ACTIONS(6581), 1, + anon_sym_DASH2, + STATE(3485), 1, + sym_comment, + ACTIONS(6579), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6400), 1, - anon_sym_else, - STATE(3320), 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, + [106746] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3486), 1, sym_comment, - STATE(3324), 1, - aux_sym__repeat_newline, - ACTIONS(5953), 9, + ACTIONS(6583), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223758,18 +229492,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, - [101350] = 6, + anon_sym_RPAREN, + [106767] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, - sym__newline, - ACTIONS(6402), 1, - anon_sym_else, - STATE(3321), 1, + STATE(3487), 1, sym_comment, - STATE(3325), 1, - aux_sym__repeat_newline, - ACTIONS(5797), 9, + ACTIONS(6585), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223779,18 +229510,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, - [101377] = 6, + anon_sym_RPAREN, + [106788] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5849), 1, - sym__newline, - ACTIONS(6404), 1, - anon_sym_else, - STATE(3322), 1, + STATE(3488), 1, sym_comment, - STATE(3326), 1, - aux_sym__repeat_newline, - ACTIONS(5852), 9, + ACTIONS(6230), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223800,18 +229529,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, - [101404] = 6, + [106809] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6406), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3323), 1, + STATE(3489), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6587), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223821,18 +229546,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, - [101431] = 6, + anon_sym_RPAREN, + [106830] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5998), 1, - sym__newline, - ACTIONS(6409), 1, - anon_sym_else, - STATE(3324), 1, + STATE(3490), 1, sym_comment, - STATE(3327), 1, - aux_sym__repeat_newline, - ACTIONS(6001), 9, + ACTIONS(6589), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223842,18 +229564,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, - [101458] = 6, + anon_sym_RPAREN, + [106851] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6411), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3325), 1, + STATE(3491), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6591), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223863,18 +229582,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, - [101485] = 6, + anon_sym_RPAREN, + [106872] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1836), 1, + anon_sym_DOLLAR, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6106), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6108), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6477), 1, + anon_sym_DOLLAR2, + ACTIONS(6479), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6593), 1, + anon_sym_RBRACK, + STATE(3492), 1, + sym_comment, + STATE(3774), 1, + sym__immediate_decimal, + ACTIONS(6110), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4020), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106911] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6414), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3326), 1, + STATE(3493), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6595), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223884,18 +229627,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, - [101512] = 6, + anon_sym_RPAREN, + [106932] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6417), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3327), 1, + STATE(3494), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6267), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223905,31 +229646,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, - [101539] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6422), 1, - anon_sym_DASH2, - STATE(3328), 1, - sym_comment, - ACTIONS(6420), 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, - [101562] = 3, + [106953] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3329), 1, + STATE(3495), 1, sym_comment, - ACTIONS(6424), 12, + ACTIONS(6597), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223942,12 +229664,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101583] = 3, + [106974] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6599), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6601), 1, + aux_sym__immediate_decimal_token5, + STATE(3496), 1, + sym_comment, + ACTIONS(739), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [107001] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3330), 1, + STATE(3497), 1, sym_comment, - ACTIONS(6426), 12, + ACTIONS(6603), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223960,38 +229703,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101604] = 11, - ACTIONS(3), 1, + [107022] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1667), 1, + sym__space, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(1596), 1, - anon_sym_LBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(6428), 1, - anon_sym_DOT, - STATE(3331), 1, - sym_comment, - STATE(3892), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, + ACTIONS(6409), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6411), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, + STATE(3181), 1, + sym__immediate_decimal, + STATE(3498), 1, + sym_comment, + ACTIONS(1669), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6171), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4186), 2, + STATE(3179), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101641] = 3, + [107059] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3332), 1, + STATE(3499), 1, sym_comment, - ACTIONS(4791), 12, + ACTIONS(6605), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224004,12 +229747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101662] = 3, + [107080] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3333), 1, + ACTIONS(6607), 1, + anon_sym_EQ, + STATE(3500), 1, sym_comment, - ACTIONS(6434), 12, + ACTIONS(6226), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224021,13 +229766,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, - [101683] = 3, + [107103] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3334), 1, + STATE(3501), 1, sym_comment, - ACTIONS(4783), 12, + ACTIONS(6367), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -224040,143 +229784,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, - [101704] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3335), 1, - sym_comment, - STATE(4075), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101741] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3336), 1, - sym_comment, - STATE(4116), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4115), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101778] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3337), 1, - sym_comment, - STATE(4119), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4117), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101815] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1675), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3338), 1, - sym_comment, - STATE(4122), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4121), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101852] = 12, - ACTIONS(103), 1, + [107124] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6436), 1, - anon_sym_RBRACK, - STATE(3339), 1, + STATE(3502), 1, sym_comment, - STATE(3603), 1, - sym__immediate_decimal, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3860), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101891] = 3, + ACTIONS(6062), 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, + [107145] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3340), 1, + STATE(3503), 1, sym_comment, - ACTIONS(6438), 12, + ACTIONS(6609), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224189,12 +229820,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101912] = 3, + [107166] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3341), 1, + STATE(3504), 1, sym_comment, - ACTIONS(6440), 12, + ACTIONS(6611), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224207,106 +229838,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101933] = 12, - ACTIONS(103), 1, + [107187] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACK, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, - aux_sym__immediate_decimal_token2, - STATE(3342), 1, + ACTIONS(2907), 1, + sym__newline, + STATE(791), 1, + aux_sym__pipe_separator, + STATE(3505), 1, sym_comment, - STATE(4286), 1, - sym__immediate_decimal, - ACTIONS(6446), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101972] = 4, + STATE(3546), 1, + aux_sym__repeat_newline, + ACTIONS(2325), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [107214] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2200), 1, - anon_sym_DASH2, - STATE(3343), 1, + STATE(3506), 1, sym_comment, - ACTIONS(2198), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6613), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [101995] = 12, + [107235] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6615), 1, + anon_sym_else, + STATE(3507), 1, + sym_comment, + ACTIONS(6245), 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, + [107258] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1466), 1, + anon_sym_BANG, + ACTIONS(6617), 1, + anon_sym_QMARK2, + STATE(367), 1, + sym__path_suffix, + STATE(3508), 1, + sym_comment, + ACTIONS(1458), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1598), 1, + ACTIONS(1456), 6, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6448), 1, - anon_sym_DOT, - STATE(3344), 1, - sym_comment, - STATE(3937), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102034] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [107287] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2102), 1, - anon_sym_DASH2, - STATE(3345), 1, + ACTIONS(6619), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(372), 1, + sym_cell_path, + STATE(3509), 1, sym_comment, - ACTIONS(2100), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + STATE(3538), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1444), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1442), 5, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102057] = 4, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [107318] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6450), 1, - anon_sym_else, - STATE(3346), 1, + STATE(3510), 1, sym_comment, - ACTIONS(6043), 11, + ACTIONS(6621), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224318,14 +229958,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, - [102080] = 4, + anon_sym_RPAREN, + [107339] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2078), 1, + ACTIONS(2156), 1, anon_sym_DASH2, - STATE(3347), 1, + STATE(3511), 1, sym_comment, - ACTIONS(2076), 11, + ACTIONS(2154), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224337,33 +229978,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102103] = 6, - ACTIONS(103), 1, + [107362] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6452), 1, - anon_sym_DOT, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - STATE(3348), 1, + STATE(3512), 1, sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [102130] = 3, + ACTIONS(6623), 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, + [107383] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3349), 1, + STATE(3513), 1, sym_comment, - ACTIONS(6456), 12, + ACTIONS(6625), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224376,52 +230014,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102151] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6460), 1, - aux_sym__immediate_decimal_token5, - STATE(3350), 1, - sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [102178] = 4, + [107404] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, - anon_sym_DASH2, - STATE(3351), 1, + STATE(3514), 1, sym_comment, - ACTIONS(2120), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6627), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102201] = 3, + [107425] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3352), 1, + STATE(3515), 1, sym_comment, - ACTIONS(6462), 12, + ACTIONS(6629), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224434,39 +230050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102222] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACK, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, - aux_sym__immediate_decimal_token2, - STATE(3353), 1, - sym_comment, - STATE(4145), 1, - sym__immediate_decimal, - ACTIONS(6446), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102261] = 3, + [107446] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3354), 1, + STATE(3516), 1, sym_comment, - ACTIONS(6464), 12, + ACTIONS(6631), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224479,37 +230068,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102282] = 9, + [107467] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(73), 1, - aux_sym_expr_unary_token1, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(3355), 1, + STATE(3517), 1, sym_comment, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(1305), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [102314] = 4, + ACTIONS(6633), 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, + [107488] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2098), 1, + ACTIONS(2238), 1, anon_sym_DASH2, - STATE(3356), 1, + STATE(3518), 1, sym_comment, - ACTIONS(2096), 10, + ACTIONS(2236), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224517,40 +230101,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102336] = 11, - ACTIONS(103), 1, + [107511] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(6468), 1, - anon_sym_DOT_DOT2, - ACTIONS(6472), 1, - sym_filesize_unit, - ACTIONS(6474), 1, - sym_duration_unit, - STATE(3357), 1, + ACTIONS(1639), 1, + anon_sym_LBRACE, + ACTIONS(1643), 1, + anon_sym_DOT, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(3519), 1, sym_comment, - STATE(4728), 1, + STATE(4508), 1, + sym__immediate_decimal, + ACTIONS(6497), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6499), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4507), 2, sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6470), 2, + sym_val_variable, + [107545] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6635), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3520), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [102372] = 5, + sym__entry_separator, + ACTIONS(1508), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [107571] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6476), 1, + ACTIONS(6638), 1, aux_sym__immediate_decimal_token5, - STATE(3358), 1, + STATE(3521), 1, sym_comment, ACTIONS(771), 4, sym__newline, @@ -224564,105 +230168,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102396] = 9, + [107595] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4819), 1, + ACTIONS(5481), 1, anon_sym_DASH2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - ACTIONS(5168), 1, - anon_sym_LPAREN, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(3359), 1, + STATE(3522), 1, sym_comment, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(1305), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [102428] = 5, - ACTIONS(103), 1, + STATE(3564), 1, + aux_sym_parameter_repeat2, + ACTIONS(1480), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5479), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107621] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6343), 1, + ACTIONS(6640), 1, aux_sym__immediate_decimal_token5, - STATE(3360), 1, + STATE(3523), 1, sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(771), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(773), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [102452] = 10, - ACTIONS(3), 1, + [107645] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1598), 1, + sym__entry_separator, + ACTIONS(1602), 1, + anon_sym_RBRACE, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(1631), 1, - anon_sym_LBRACE, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(6401), 1, anon_sym_DOLLAR, - STATE(3361), 1, - sym_comment, - STATE(4787), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, + ACTIONS(6485), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6487), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, + STATE(3524), 1, + sym_comment, + STATE(4878), 1, + sym__immediate_decimal, + ACTIONS(6239), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(4214), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [102486] = 6, + [107681] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6482), 1, - anon_sym_DOT, - ACTIONS(6484), 1, - aux_sym__immediate_decimal_token5, - STATE(3362), 1, + ACTIONS(1788), 1, + anon_sym_LPAREN, + ACTIONS(2702), 1, + aux_sym_expr_unary_token1, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + ACTIONS(4879), 1, + anon_sym_DASH2, + STATE(948), 1, + sym__expr_unary_minus, + STATE(3525), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102512] = 6, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(955), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [107713] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(6644), 1, anon_sym_DASH2, - STATE(3363), 1, + STATE(3526), 1, sym_comment, - STATE(3371), 1, + STATE(3564), 1, aux_sym_parameter_repeat2, - ACTIONS(1494), 2, + ACTIONS(1480), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5332), 7, + ACTIONS(6642), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -224670,198 +230275,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102538] = 6, + [107739] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6486), 1, - anon_sym_DOT, - ACTIONS(6488), 1, + ACTIONS(6646), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6648), 1, aux_sym__immediate_decimal_token5, - STATE(3364), 1, + STATE(3527), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, ACTIONS(741), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + 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, - [102564] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3365), 1, - sym_comment, - ACTIONS(2531), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [102588] = 11, + [107765] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(886), 1, sym__space, - ACTIONS(1752), 1, + ACTIONS(1724), 1, anon_sym_LPAREN2, - ACTIONS(4969), 1, + ACTIONS(5071), 1, sym__unquoted_pattern, - ACTIONS(6490), 1, + ACTIONS(6650), 1, anon_sym_DOT_DOT2, - ACTIONS(6494), 1, + ACTIONS(6654), 1, sym_filesize_unit, - ACTIONS(6496), 1, + ACTIONS(6656), 1, sym_duration_unit, - STATE(3366), 1, + STATE(3528), 1, sym_comment, - STATE(4625), 1, + STATE(4929), 1, sym__expr_parenthesized_immediate, - ACTIONS(868), 2, + ACTIONS(866), 2, sym__newline, anon_sym_SEMI, - ACTIONS(6492), 2, + ACTIONS(6652), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [102624] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6500), 1, - anon_sym_DASH2, - STATE(3367), 1, - sym_comment, - STATE(3371), 1, - aux_sym_parameter_repeat2, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(6498), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102650] = 5, - ACTIONS(3), 1, + [107801] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6507), 1, aux_sym__immediate_decimal_token5, - STATE(3368), 1, + STATE(3529), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(747), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(749), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102674] = 8, + [107825] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(173), 1, + aux_sym_expr_unary_token1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(4877), 1, + anon_sym_LPAREN, + ACTIONS(4879), 1, + anon_sym_DASH2, + STATE(948), 1, + sym__expr_unary_minus, + STATE(3530), 1, + sym_comment, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(955), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [107857] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6619), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(360), 1, sym_path, - STATE(3369), 1, + STATE(3531), 1, sym_comment, - STATE(3378), 1, + STATE(3538), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3663), 1, + STATE(3786), 1, sym_cell_path, - ACTIONS(1641), 3, + ACTIONS(1657), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1643), 4, + ACTIONS(1659), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [102704] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6504), 1, - aux_sym__immediate_decimal_token5, - STATE(3370), 1, - sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [102728] = 5, + [107887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6511), 1, + ACTIONS(2148), 1, anon_sym_DASH2, - ACTIONS(6508), 2, - sym__newline, - anon_sym_COMMA, - STATE(3371), 2, + STATE(3532), 1, sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(6506), 7, + ACTIONS(2146), 10, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102752] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3372), 1, - sym_comment, - ACTIONS(1480), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1478), 8, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102774] = 5, + [107909] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6491), 1, aux_sym__immediate_decimal_token5, - STATE(3373), 1, + STATE(3533), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 8, + ACTIONS(749), 8, anon_sym_if, sym__newline, anon_sym_PIPE, @@ -224870,117 +230421,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102798] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5378), 1, - anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, - STATE(3374), 1, - sym_comment, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5376), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102824] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3375), 1, - sym_comment, - STATE(4183), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4178), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102858] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3376), 1, - sym_comment, - ACTIONS(1545), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1543), 8, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102880] = 4, + [107933] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3377), 1, + ACTIONS(6425), 1, + aux_sym__immediate_decimal_token5, + STATE(3534), 1, sym_comment, - ACTIONS(1468), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1466), 8, + ACTIONS(747), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102902] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3378), 1, - sym_comment, - STATE(3380), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 3, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1458), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [102930] = 4, + [107957] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3379), 1, + STATE(3535), 1, sym_comment, - ACTIONS(1472), 3, + ACTIONS(1541), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1470), 8, + ACTIONS(1539), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -224989,98 +230458,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [102952] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3380), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1524), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [102978] = 9, + [107979] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(173), 1, + ACTIONS(2786), 1, aux_sym_expr_unary_token1, - ACTIONS(1584), 1, + ACTIONS(3894), 1, anon_sym_DOLLAR, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4901), 1, anon_sym_DASH2, - STATE(945), 1, + ACTIONS(5269), 1, + anon_sym_LPAREN, + STATE(1290), 1, sym__expr_unary_minus, - STATE(3381), 1, + STATE(3536), 1, sym_comment, - ACTIONS(1937), 2, + ACTIONS(2208), 2, anon_sym_true, anon_sym_false, - STATE(953), 4, + STATE(1302), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [103010] = 4, + [108011] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6658), 1, + anon_sym_else, + STATE(3537), 1, + sym_comment, + ACTIONS(6245), 10, + sym__newline, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [108033] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3382), 1, + ACTIONS(6619), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3520), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3538), 1, sym_comment, - ACTIONS(1476), 3, + ACTIONS(1506), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1474), 8, + ACTIONS(1504), 5, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [103032] = 4, + [108061] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6662), 1, + anon_sym_DASH2, + STATE(3539), 1, + sym_comment, + STATE(3564), 1, + aux_sym_parameter_repeat2, + ACTIONS(1480), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(6660), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108087] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3383), 1, + ACTIONS(6619), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3538), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3540), 1, sym_comment, - ACTIONS(1516), 3, + STATE(3810), 1, + sym_cell_path, + ACTIONS(1645), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1514), 8, + ACTIONS(1647), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [103054] = 6, + [108117] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6518), 1, + ACTIONS(5505), 1, anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, - STATE(3384), 1, + STATE(3541), 1, sym_comment, - ACTIONS(1494), 2, + STATE(3564), 1, + aux_sym_parameter_repeat2, + ACTIONS(1480), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6516), 7, + ACTIONS(5503), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -225088,129 +230582,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103080] = 10, + [108143] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1596), 1, + ACTIONS(1598), 1, anon_sym_LBRACE, - ACTIONS(1615), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - STATE(3385), 1, + STATE(3542), 1, sym_comment, - STATE(4713), 1, + STATE(4942), 1, sym__immediate_decimal, - ACTIONS(6478), 2, + ACTIONS(6664), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, + ACTIONS(6666), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(730), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103114] = 8, + [108177] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3378), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3386), 1, + ACTIONS(6668), 1, + aux_sym__immediate_decimal_token5, + STATE(3543), 1, sym_comment, - STATE(3661), 1, - sym_cell_path, - ACTIONS(1679), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1681), 4, + ACTIONS(771), 4, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [103144] = 11, + sym__unquoted_pattern_in_list, + ACTIONS(773), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [108201] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(886), 1, sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(5837), 1, + ACTIONS(6479), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6670), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3387), 1, + ACTIONS(6672), 1, + anon_sym_DOT_DOT2, + ACTIONS(6676), 1, + sym_filesize_unit, + ACTIONS(6678), 1, + sym_duration_unit, + STATE(3544), 1, sym_comment, - STATE(4753), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4079), 2, + STATE(4803), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [103180] = 5, + ACTIONS(866), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6674), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108237] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6321), 1, + ACTIONS(6680), 1, + anon_sym_DOT, + ACTIONS(6682), 1, aux_sym__immediate_decimal_token5, - STATE(3388), 1, + STATE(3545), 1, sym_comment, - ACTIONS(739), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(747), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, + sym__unquoted_pattern_in_record, + ACTIONS(749), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103204] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACE, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3389), 1, + [108263] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3546), 1, sym_comment, - STATE(4790), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103240] = 6, + ACTIONS(2549), 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, + [108287] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6520), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6522), 1, + ACTIONS(6684), 1, + anon_sym_DOT, + ACTIONS(6686), 1, aux_sym__immediate_decimal_token5, - STATE(3390), 1, + STATE(3547), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, @@ -225223,34 +230709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103266] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5318), 1, - anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, - STATE(3391), 1, - sym_comment, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5316), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [103292] = 6, + [108313] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - ACTIONS(6526), 1, + ACTIONS(6688), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6690), 1, aux_sym__immediate_decimal_token5, - STATE(3392), 1, + STATE(3548), 1, sym_comment, ACTIONS(739), 3, anon_sym_RBRACE, @@ -225263,1424 +230729,1382 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [103318] = 9, + [108339] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1774), 1, + ACTIONS(6692), 1, + anon_sym_DOT, + ACTIONS(6694), 1, + aux_sym__immediate_decimal_token5, + STATE(3549), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 7, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(2690), 1, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108365] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3550), 1, + sym_comment, + ACTIONS(1521), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1519), 8, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [108387] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(73), 1, aux_sym_expr_unary_token1, - ACTIONS(2878), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(4797), 1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4901), 1, anon_sym_DASH2, - STATE(945), 1, + STATE(1290), 1, sym__expr_unary_minus, - STATE(3393), 1, + STATE(3551), 1, sym_comment, - ACTIONS(1937), 2, + ACTIONS(2208), 2, anon_sym_true, anon_sym_false, - STATE(953), 4, + STATE(1302), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [103350] = 6, + [108419] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6530), 1, - anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, - STATE(3394), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1651), 1, + anon_sym_LBRACE, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(3552), 1, sym_comment, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(6528), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(4790), 1, + sym__immediate_decimal, + ACTIONS(6664), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6666), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(748), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108453] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1651), 1, + sym__entry_separator, + ACTIONS(1653), 1, + anon_sym_RBRACE, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6401), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [103376] = 4, + ACTIONS(6485), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6487), 1, + aux_sym__immediate_decimal_token2, + STATE(3553), 1, + sym_comment, + STATE(4800), 1, + sym__immediate_decimal, + ACTIONS(6239), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4258), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108489] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6532), 1, - anon_sym_else, - STATE(3395), 1, + ACTIONS(6696), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6698), 1, + aux_sym__immediate_decimal_token5, + STATE(3554), 1, sym_comment, - ACTIONS(6043), 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, - [103398] = 9, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108515] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3555), 1, + sym_comment, + ACTIONS(1525), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1523), 8, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [108537] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(2406), 1, + ACTIONS(2430), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4879), 1, anon_sym_DASH2, - STATE(945), 1, + STATE(948), 1, sym__expr_unary_minus, - STATE(3396), 1, + STATE(3556), 1, sym_comment, - ACTIONS(2398), 2, + ACTIONS(2422), 2, anon_sym_true, anon_sym_false, - STATE(953), 4, + STATE(955), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [103430] = 6, + [108569] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6534), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6536), 1, - aux_sym__immediate_decimal_token5, - STATE(3397), 1, + STATE(3557), 1, sym_comment, - ACTIONS(747), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 6, - anon_sym_LPAREN2, + ACTIONS(1529), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [103456] = 5, + ACTIONS(1527), 8, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [108591] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6454), 1, + ACTIONS(6700), 1, aux_sym__immediate_decimal_token5, - STATE(3398), 1, + STATE(3558), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(771), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + ACTIONS(773), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [103480] = 5, + [108615] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6539), 1, aux_sym__immediate_decimal_token5, - STATE(3399), 1, + STATE(3559), 1, sym_comment, - ACTIONS(771), 4, + ACTIONS(747), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(773), 6, + ACTIONS(749), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [103504] = 6, + [108639] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6540), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6542), 1, - aux_sym__immediate_decimal_token5, - STATE(3400), 1, + ACTIONS(5452), 1, + anon_sym_DASH2, + STATE(3560), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103530] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6069), 1, + STATE(3564), 1, + aux_sym_parameter_repeat2, + ACTIONS(1480), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5450), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3401), 1, - sym_comment, - STATE(3922), 1, - sym__immediate_decimal, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4234), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103563] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(6544), 1, - anon_sym_DQUOTE, - ACTIONS(6546), 1, - anon_sym_SQUOTE, - ACTIONS(6548), 1, - anon_sym_BQUOTE, - ACTIONS(6550), 1, - aux_sym_path_token1, - STATE(2374), 1, - sym_val_string, - STATE(3402), 1, - sym_comment, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103594] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(6552), 1, - anon_sym_DQUOTE, - ACTIONS(6554), 1, - anon_sym_SQUOTE, - ACTIONS(6556), 1, - anon_sym_BQUOTE, - ACTIONS(6558), 1, - aux_sym_path_token1, - STATE(3403), 1, - sym_comment, - STATE(3610), 1, - sym_val_string, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103625] = 9, - ACTIONS(103), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108665] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DQUOTE, - ACTIONS(6562), 1, - anon_sym_SQUOTE, - ACTIONS(6564), 1, - anon_sym_BQUOTE, - ACTIONS(6566), 1, - aux_sym_path_token1, - ACTIONS(6568), 1, - sym_raw_string_begin, - STATE(336), 1, - sym_val_string, - STATE(3404), 1, + ACTIONS(6704), 1, + anon_sym_DASH2, + STATE(3561), 1, sym_comment, - STATE(365), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103656] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + STATE(3564), 1, + aux_sym_parameter_repeat2, + ACTIONS(1480), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(6702), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(5743), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6570), 1, - aux_sym__immediate_decimal_token2, - STATE(3405), 1, - sym_comment, - STATE(3600), 1, - sym__immediate_decimal, - ACTIONS(6572), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3625), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103689] = 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108691] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(5934), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6574), 1, - aux_sym__immediate_decimal_token2, - STATE(3406), 1, + STATE(3562), 1, sym_comment, - STATE(3914), 1, - sym__immediate_decimal, - ACTIONS(6576), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(888), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103722] = 4, + ACTIONS(1533), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1531), 8, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [108713] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3407), 1, + STATE(3563), 1, sym_comment, - ACTIONS(771), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(1537), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103743] = 9, - ACTIONS(103), 1, + sym__entry_separator, + ACTIONS(1535), 8, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [108735] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6578), 1, - anon_sym_DQUOTE, - ACTIONS(6580), 1, - anon_sym_SQUOTE, - ACTIONS(6582), 1, - anon_sym_BQUOTE, - ACTIONS(6584), 1, - aux_sym_path_token1, - ACTIONS(6586), 1, - sym_raw_string_begin, - STATE(374), 1, - sym_val_string, - STATE(3408), 1, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6708), 2, + sym__newline, + anon_sym_COMMA, + STATE(3564), 2, sym_comment, - STATE(391), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103774] = 10, + aux_sym_parameter_repeat2, + ACTIONS(6706), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108759] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(6047), 1, + ACTIONS(1820), 1, + aux_sym_unquoted_token2, + ACTIONS(3422), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, + ACTIONS(6713), 1, + anon_sym_DOLLAR, + ACTIONS(6715), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3409), 1, - sym_comment, - STATE(3719), 1, + STATE(1456), 1, sym__immediate_decimal, - ACTIONS(6051), 2, + STATE(3565), 1, + sym_comment, + ACTIONS(6717), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + STATE(950), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103807] = 10, + [108792] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5837), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6442), 1, + ACTIONS(1734), 1, + aux_sym_unquoted_token2, + ACTIONS(3790), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, + ACTIONS(6719), 1, + anon_sym_DOLLAR, + ACTIONS(6721), 1, aux_sym__immediate_decimal_token2, - STATE(3410), 1, - sym_comment, - STATE(4350), 1, + STATE(1856), 1, sym__immediate_decimal, - ACTIONS(6446), 2, + STATE(3566), 1, + sym_comment, + ACTIONS(6723), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(700), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103840] = 10, + [108825] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(6478), 1, + ACTIONS(3956), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6719), 1, + anon_sym_DOLLAR, + ACTIONS(6725), 1, aux_sym__immediate_decimal_token2, - STATE(3411), 1, - sym_comment, - STATE(4660), 1, + STATE(1978), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + STATE(3567), 1, + sym_comment, + ACTIONS(6727), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103873] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6484), 1, - aux_sym__immediate_decimal_token5, - STATE(3412), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103896] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6592), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6594), 1, - aux_sym__immediate_decimal_token5, - STATE(3413), 1, - sym_comment, - ACTIONS(1726), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [103921] = 4, + [108858] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3414), 1, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(6729), 1, + anon_sym_DQUOTE, + ACTIONS(6731), 1, + anon_sym_SQUOTE, + ACTIONS(6733), 1, + anon_sym_BQUOTE, + ACTIONS(6735), 1, + aux_sym_path_token1, + STATE(3508), 1, + sym_val_string, + STATE(3568), 1, sym_comment, - ACTIONS(849), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103942] = 9, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [108889] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(6596), 1, + ACTIONS(6737), 1, anon_sym_DQUOTE, - ACTIONS(6598), 1, + ACTIONS(6739), 1, anon_sym_SQUOTE, - ACTIONS(6600), 1, + ACTIONS(6741), 1, anon_sym_BQUOTE, - ACTIONS(6602), 1, + ACTIONS(6743), 1, aux_sym_path_token1, - STATE(406), 1, + STATE(409), 1, sym_val_string, - STATE(3415), 1, + STATE(3569), 1, sym_comment, - STATE(415), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [103973] = 6, - ACTIONS(103), 1, + [108920] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6604), 1, + ACTIONS(6745), 1, anon_sym_DOT, - ACTIONS(6606), 1, + ACTIONS(6747), 1, aux_sym__immediate_decimal_token5, - STATE(3416), 1, + STATE(3570), 1, sym_comment, - ACTIONS(1736), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(1746), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [103998] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6299), 1, - anon_sym_DASH2, - STATE(3417), 1, - sym_comment, - ACTIONS(4376), 9, - sym_identifier, + sym__unquoted_pattern, + ACTIONS(1744), 6, + anon_sym_if, 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, - [104019] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(6608), 1, - anon_sym_DOT_DOT2, - ACTIONS(6612), 1, - sym_filesize_unit, - ACTIONS(6614), 1, - sym_duration_unit, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - STATE(3418), 1, - sym_comment, - STATE(4630), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6610), 2, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [104054] = 5, - ACTIONS(3), 1, + [108945] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6488), 1, - aux_sym__immediate_decimal_token5, - STATE(3419), 1, + STATE(3571), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(739), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104077] = 10, + [108966] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4969), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(5862), 1, + ACTIONS(5322), 1, + anon_sym_DOLLAR, + ACTIONS(5905), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, + ACTIONS(6749), 1, aux_sym__immediate_decimal_token2, - STATE(3420), 1, + STATE(3572), 1, sym_comment, - STATE(3608), 1, + STATE(3771), 1, sym__immediate_decimal, - ACTIONS(5866), 2, + ACTIONS(6751), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3853), 2, + STATE(3825), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104110] = 10, + [108999] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4969), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(6055), 1, + ACTIONS(5322), 1, + anon_sym_DOLLAR, + ACTIONS(5975), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, + ACTIONS(6753), 1, aux_sym__immediate_decimal_token2, - STATE(3421), 1, + STATE(3573), 1, sym_comment, - STATE(3961), 1, + STATE(4181), 1, sym__immediate_decimal, - ACTIONS(6059), 2, + ACTIONS(6755), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2930), 2, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104143] = 9, + [109032] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3022), 1, - sym_raw_string_begin, - ACTIONS(6550), 1, - aux_sym_path_token1, - ACTIONS(6618), 1, + ACTIONS(6757), 1, anon_sym_DQUOTE, - ACTIONS(6620), 1, + ACTIONS(6759), 1, anon_sym_SQUOTE, - ACTIONS(6622), 1, + ACTIONS(6761), 1, anon_sym_BQUOTE, - STATE(2374), 1, + ACTIONS(6763), 1, + aux_sym_path_token1, + ACTIONS(6765), 1, + sym_raw_string_begin, + STATE(369), 1, sym_val_string, - STATE(3422), 1, + STATE(3574), 1, sym_comment, - STATE(2548), 4, + STATE(396), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104174] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6624), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6626), 1, - aux_sym__immediate_decimal_token5, - STATE(3423), 1, - sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1728), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [104199] = 4, + [109063] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3424), 1, + STATE(3575), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(739), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(749), 6, + ACTIONS(741), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104220] = 4, - ACTIONS(3), 1, + [109084] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3425), 1, + STATE(3576), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(771), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_list, + ACTIONS(773), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104241] = 6, - ACTIONS(3), 1, + sym__entry_separator, + [109105] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6628), 1, + ACTIONS(6767), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6630), 1, + ACTIONS(6769), 1, aux_sym__immediate_decimal_token5, - STATE(3426), 1, + STATE(3577), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1770), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [104266] = 9, - ACTIONS(3), 1, + ACTIONS(1772), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [109130] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(1667), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - STATE(737), 1, - sym__immediate_decimal, - STATE(3427), 1, + ACTIONS(5071), 1, + aux_sym_unquoted_token2, + ACTIONS(6167), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6169), 1, + aux_sym__immediate_decimal_token2, + STATE(3578), 1, sym_comment, - ACTIONS(6432), 2, + STATE(3751), 1, + sym__immediate_decimal, + ACTIONS(6171), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(736), 2, + STATE(3988), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104297] = 9, - ACTIONS(3), 1, + [109163] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(1671), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - STATE(739), 1, - sym__immediate_decimal, - STATE(3428), 1, + ACTIONS(5071), 1, + aux_sym_unquoted_token2, + ACTIONS(6255), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6257), 1, + aux_sym__immediate_decimal_token2, + STATE(3579), 1, sym_comment, - ACTIONS(6432), 2, + STATE(4147), 1, + sym__immediate_decimal, + ACTIONS(6259), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(738), 2, + STATE(3120), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104328] = 4, + [109196] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3429), 1, + ACTIONS(3806), 1, + sym_raw_string_begin, + ACTIONS(6771), 1, + anon_sym_DQUOTE, + ACTIONS(6773), 1, + anon_sym_SQUOTE, + ACTIONS(6775), 1, + anon_sym_BQUOTE, + ACTIONS(6777), 1, + aux_sym_path_token1, + STATE(2597), 1, + sym_val_string, + STATE(3580), 1, sym_comment, - ACTIONS(849), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + STATE(2379), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [109227] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3581), 1, + sym_comment, + ACTIONS(771), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(851), 6, + sym__unquoted_pattern, + ACTIONS(773), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [104349] = 10, + [109248] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(6401), 1, anon_sym_DOLLAR, - ACTIONS(4850), 1, + ACTIONS(6513), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, + ACTIONS(6515), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - STATE(2505), 1, - sym__immediate_decimal, - STATE(3430), 1, + ACTIONS(6779), 1, + aux_sym__unquoted_in_record_token2, + STATE(3582), 1, sym_comment, - ACTIONS(4854), 2, + STATE(4428), 1, + sym__immediate_decimal, + ACTIONS(6517), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2605), 2, + STATE(4413), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104382] = 10, + [109281] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4884), 1, + ACTIONS(4940), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, + ACTIONS(4942), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4969), 1, + ACTIONS(5071), 1, aux_sym_unquoted_token2, - STATE(2699), 1, + STATE(2559), 1, sym__immediate_decimal, - STATE(3431), 1, + STATE(3583), 1, sym_comment, - ACTIONS(4888), 2, + ACTIONS(4944), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2930), 2, + STATE(2655), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104415] = 9, - ACTIONS(3), 1, + [109314] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(1675), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - STATE(741), 1, + ACTIONS(4964), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4966), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5071), 1, + aux_sym_unquoted_token2, + STATE(2801), 1, sym__immediate_decimal, - STATE(3432), 1, + STATE(3584), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(4968), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(740), 2, + STATE(3120), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104446] = 9, + [109347] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6634), 1, + ACTIONS(3012), 1, + sym_raw_string_begin, + ACTIONS(6781), 1, anon_sym_DQUOTE, - ACTIONS(6636), 1, + ACTIONS(6783), 1, anon_sym_SQUOTE, - ACTIONS(6638), 1, + ACTIONS(6785), 1, anon_sym_BQUOTE, - ACTIONS(6640), 1, + ACTIONS(6787), 1, aux_sym_path_token1, - ACTIONS(6642), 1, - sym_raw_string_begin, - STATE(1772), 1, + STATE(2388), 1, sym_val_string, - STATE(3433), 1, + STATE(3585), 1, sym_comment, - STATE(1780), 4, + STATE(2568), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104477] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(722), 1, - sym__immediate_decimal, - STATE(3434), 1, - sym_comment, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(721), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104508] = 5, + [109378] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1442), 1, - anon_sym_BANG, - STATE(3435), 1, + STATE(3586), 1, sym_comment, - ACTIONS(1440), 3, + ACTIONS(860), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(862), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1438), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [104531] = 10, + sym_filesize_unit, + sym_duration_unit, + [109399] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1592), 1, + ACTIONS(1608), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1762), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(6644), 1, + ACTIONS(6719), 1, anon_sym_DOLLAR, - ACTIONS(6646), 1, + ACTIONS(6789), 1, aux_sym__immediate_decimal_token2, - STATE(642), 1, + STATE(526), 1, sym__immediate_decimal, - STATE(3436), 1, + STATE(3587), 1, sym_comment, - ACTIONS(6648), 2, + ACTIONS(6791), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(700), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104564] = 10, + [109432] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1635), 1, + ACTIONS(1675), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1762), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(6644), 1, + ACTIONS(6719), 1, anon_sym_DOLLAR, - ACTIONS(6650), 1, + ACTIONS(6793), 1, aux_sym__immediate_decimal_token2, - STATE(941), 1, + STATE(945), 1, sym__immediate_decimal, - STATE(3437), 1, + STATE(3588), 1, sym_comment, - ACTIONS(6652), 2, + ACTIONS(6795), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104597] = 9, + [109465] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(6654), 1, + ACTIONS(6797), 1, anon_sym_DQUOTE, - ACTIONS(6656), 1, + ACTIONS(6799), 1, anon_sym_SQUOTE, - ACTIONS(6658), 1, + ACTIONS(6801), 1, anon_sym_BQUOTE, - ACTIONS(6660), 1, + ACTIONS(6803), 1, aux_sym_path_token1, - STATE(502), 1, + ACTIONS(6805), 1, + sym_raw_string_begin, + STATE(1766), 1, sym_val_string, - STATE(3438), 1, + STATE(3589), 1, sym_comment, - STATE(480), 4, + STATE(1806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104628] = 6, + [109496] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6662), 1, - anon_sym_DOT, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token5, - STATE(3439), 1, + STATE(3590), 1, sym_comment, - ACTIONS(1736), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, + ACTIONS(860), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [104653] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6666), 1, - aux_sym__immediate_decimal_token5, - STATE(3440), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(862), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104676] = 9, + sym__entry_separator, + [109517] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6668), 1, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(6807), 1, anon_sym_DQUOTE, - ACTIONS(6670), 1, + ACTIONS(6809), 1, anon_sym_SQUOTE, - ACTIONS(6672), 1, + ACTIONS(6811), 1, anon_sym_BQUOTE, - ACTIONS(6674), 1, + ACTIONS(6813), 1, aux_sym_path_token1, - ACTIONS(6676), 1, - sym_raw_string_begin, - STATE(3441), 1, - sym_comment, - STATE(3677), 1, + STATE(490), 1, sym_val_string, - STATE(3791), 4, + STATE(3591), 1, + sym_comment, + STATE(502), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104707] = 10, + [109548] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, ACTIONS(1820), 1, aux_sym_unquoted_token2, - ACTIONS(4836), 1, + ACTIONS(4918), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, + ACTIONS(5271), 1, anon_sym_DOLLAR, - ACTIONS(6678), 1, + ACTIONS(6815), 1, aux_sym__immediate_decimal_token2, - STATE(2433), 1, + STATE(2479), 1, sym__immediate_decimal, - STATE(3442), 1, + STATE(3592), 1, sym_comment, - ACTIONS(6680), 2, + ACTIONS(6817), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2576), 2, + STATE(2629), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104740] = 10, + [109581] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, ACTIONS(1820), 1, aux_sym_unquoted_token2, - ACTIONS(4844), 1, + ACTIONS(4934), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, + ACTIONS(5271), 1, anon_sym_DOLLAR, - ACTIONS(6682), 1, + ACTIONS(6819), 1, aux_sym__immediate_decimal_token2, - STATE(2626), 1, + STATE(2712), 1, sym__immediate_decimal, - STATE(3443), 1, + STATE(3593), 1, sym_comment, - ACTIONS(6684), 2, + ACTIONS(6821), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(1333), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104773] = 9, + [109614] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6686), 1, + ACTIONS(6823), 1, anon_sym_DQUOTE, - ACTIONS(6688), 1, + ACTIONS(6825), 1, anon_sym_SQUOTE, - ACTIONS(6690), 1, + ACTIONS(6827), 1, anon_sym_BQUOTE, - ACTIONS(6692), 1, + ACTIONS(6829), 1, aux_sym_path_token1, - ACTIONS(6694), 1, + ACTIONS(6831), 1, sym_raw_string_begin, - STATE(3268), 1, - sym_val_string, - STATE(3444), 1, + STATE(3594), 1, sym_comment, - STATE(3372), 4, + STATE(3801), 1, + sym_val_string, + STATE(3944), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104804] = 5, - ACTIONS(3), 1, + [109645] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6696), 1, - aux_sym__immediate_decimal_token5, - STATE(3445), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1734), 1, + aux_sym_unquoted_token2, + ACTIONS(5322), 1, + anon_sym_DOLLAR, + ACTIONS(6664), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6833), 1, + aux_sym__immediate_decimal_token2, + STATE(3595), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104827] = 10, + STATE(4860), 1, + sym__immediate_decimal, + ACTIONS(6835), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(890), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109678] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(4825), 1, + ACTIONS(4909), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5164), 1, + ACTIONS(5322), 1, anon_sym_DOLLAR, - ACTIONS(6698), 1, + ACTIONS(6837), 1, aux_sym__immediate_decimal_token2, - STATE(2406), 1, + STATE(2443), 1, sym__immediate_decimal, - STATE(3446), 1, + STATE(3596), 1, sym_comment, - ACTIONS(6700), 2, + ACTIONS(6839), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2500), 2, + STATE(2552), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104860] = 10, + [109711] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(4840), 1, + ACTIONS(4922), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5164), 1, + ACTIONS(5322), 1, anon_sym_DOLLAR, - ACTIONS(6702), 1, + ACTIONS(6841), 1, aux_sym__immediate_decimal_token2, - STATE(2523), 1, + STATE(2634), 1, sym__immediate_decimal, - STATE(3447), 1, + STATE(3597), 1, sym_comment, - ACTIONS(6704), 2, + ACTIONS(6843), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104893] = 4, - ACTIONS(3), 1, + [109744] = 9, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3448), 1, + ACTIONS(6735), 1, + aux_sym_path_token1, + ACTIONS(6845), 1, + anon_sym_DQUOTE, + ACTIONS(6847), 1, + anon_sym_SQUOTE, + ACTIONS(6849), 1, + anon_sym_BQUOTE, + ACTIONS(6851), 1, + sym_raw_string_begin, + STATE(3508), 1, + sym_val_string, + STATE(3598), 1, sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104914] = 10, + STATE(3550), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [109775] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5837), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(1734), 1, + aux_sym_unquoted_token2, + ACTIONS(5322), 1, anon_sym_DOLLAR, - ACTIONS(6335), 1, + ACTIONS(6161), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, + ACTIONS(6853), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - STATE(3449), 1, + STATE(3599), 1, sym_comment, - STATE(4159), 1, + STATE(3836), 1, sym__immediate_decimal, - ACTIONS(6339), 2, + ACTIONS(6855), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(3825), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104947] = 5, + [109808] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6706), 1, - aux_sym__immediate_decimal_token5, - STATE(3450), 1, - sym_comment, - ACTIONS(771), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [104970] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(5322), 1, anon_sym_DOLLAR, - ACTIONS(5930), 1, + ACTIONS(6251), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6708), 1, + ACTIONS(6857), 1, aux_sym__immediate_decimal_token2, - STATE(3451), 1, + STATE(3600), 1, sym_comment, - STATE(3687), 1, + STATE(4280), 1, sym__immediate_decimal, - ACTIONS(6710), 2, + ACTIONS(6859), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3625), 2, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105003] = 4, + [109841] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3452), 1, + ACTIONS(6861), 1, + anon_sym_DQUOTE, + ACTIONS(6863), 1, + anon_sym_SQUOTE, + ACTIONS(6865), 1, + anon_sym_BQUOTE, + ACTIONS(6867), 1, + aux_sym_path_token1, + ACTIONS(6869), 1, + sym_raw_string_begin, + STATE(336), 1, + sym_val_string, + STATE(3601), 1, sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [105024] = 10, + STATE(346), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [109872] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1820), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(6145), 1, + ACTIONS(3448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(6713), 1, + anon_sym_DOLLAR, + ACTIONS(6871), 1, aux_sym__immediate_decimal_token2, - STATE(3453), 1, - sym_comment, - STATE(4112), 1, + STATE(1497), 1, sym__immediate_decimal, - ACTIONS(6714), 2, + STATE(3602), 1, + sym_comment, + ACTIONS(6873), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(1333), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105057] = 9, + [109905] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(942), 1, + ACTIONS(958), 1, anon_sym_DQUOTE, - ACTIONS(944), 1, + ACTIONS(960), 1, anon_sym_SQUOTE, - ACTIONS(946), 1, + ACTIONS(962), 1, anon_sym_BQUOTE, - ACTIONS(958), 1, + ACTIONS(974), 1, sym_raw_string_begin, - ACTIONS(6716), 1, + ACTIONS(6875), 1, aux_sym_path_token1, - STATE(2455), 1, + STATE(2464), 1, sym_val_string, - STATE(3454), 1, + STATE(3603), 1, sym_comment, - STATE(2472), 4, + STATE(2554), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105088] = 10, + [109936] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(3374), 1, + ACTIONS(3996), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6718), 1, + ACTIONS(6719), 1, anon_sym_DOLLAR, - ACTIONS(6720), 1, + ACTIONS(6877), 1, aux_sym__immediate_decimal_token2, - STATE(1441), 1, + STATE(1907), 1, sym__immediate_decimal, - STATE(3455), 1, + STATE(3604), 1, sym_comment, - ACTIONS(6722), 2, + ACTIONS(6879), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + STATE(1969), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105121] = 11, + [109969] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACK, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(6724), 1, - anon_sym_DOT_DOT2, - ACTIONS(6728), 1, - sym_filesize_unit, - ACTIONS(6730), 1, - sym_duration_unit, - STATE(3456), 1, + ACTIONS(1734), 1, + aux_sym_unquoted_token2, + ACTIONS(4010), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6719), 1, + anon_sym_DOLLAR, + ACTIONS(6881), 1, + aux_sym__immediate_decimal_token2, + STATE(2085), 1, + sym__immediate_decimal, + STATE(3605), 1, sym_comment, - STATE(4728), 1, + ACTIONS(6883), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(890), 2, sym__expr_parenthesized_immediate, - ACTIONS(6726), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [105156] = 10, + sym_val_variable, + [110002] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6885), 1, + anon_sym_DQUOTE, + ACTIONS(6887), 1, + anon_sym_SQUOTE, + ACTIONS(6889), 1, + anon_sym_BQUOTE, + ACTIONS(6891), 1, + aux_sym_path_token1, + ACTIONS(6893), 1, + sym_raw_string_begin, + STATE(1914), 1, + sym_val_string, + STATE(3606), 1, + sym_comment, + STATE(1953), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [110033] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(6169), 1, + ACTIONS(1734), 1, + aux_sym_unquoted_token2, + ACTIONS(3372), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6171), 1, + ACTIONS(6719), 1, + anon_sym_DOLLAR, + ACTIONS(6895), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - STATE(3457), 1, - sym_comment, - STATE(3693), 1, + STATE(1445), 1, sym__immediate_decimal, - ACTIONS(6173), 2, + STATE(3607), 1, + sym_comment, + ACTIONS(6897), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + STATE(700), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105189] = 10, + [110066] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(3450), 1, + ACTIONS(3394), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6718), 1, + ACTIONS(6719), 1, anon_sym_DOLLAR, - ACTIONS(6732), 1, + ACTIONS(6899), 1, aux_sym__immediate_decimal_token2, - STATE(1495), 1, + STATE(1469), 1, sym__immediate_decimal, - STATE(3458), 1, + STATE(3608), 1, sym_comment, - ACTIONS(6734), 2, + ACTIONS(6901), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105222] = 9, + [110099] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_SQUOTE, + ACTIONS(842), 1, + anon_sym_BQUOTE, + ACTIONS(856), 1, + sym_raw_string_begin, + ACTIONS(6903), 1, + aux_sym_path_token1, + STATE(2445), 1, + sym_val_string, + STATE(3609), 1, + sym_comment, + STATE(2483), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [110130] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6736), 1, + ACTIONS(6905), 1, anon_sym_DQUOTE, - ACTIONS(6738), 1, + ACTIONS(6907), 1, anon_sym_SQUOTE, - ACTIONS(6740), 1, + ACTIONS(6909), 1, anon_sym_BQUOTE, - ACTIONS(6742), 1, + ACTIONS(6911), 1, aux_sym_path_token1, - ACTIONS(6744), 1, + ACTIONS(6913), 1, sym_raw_string_begin, - STATE(1882), 1, + STATE(3610), 1, + sym_comment, + STATE(4174), 1, sym_val_string, - STATE(3459), 1, + STATE(4306), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [110161] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6787), 1, + aux_sym_path_token1, + ACTIONS(6915), 1, + anon_sym_DQUOTE, + ACTIONS(6917), 1, + anon_sym_SQUOTE, + ACTIONS(6919), 1, + anon_sym_BQUOTE, + ACTIONS(6921), 1, + sym_raw_string_begin, + STATE(2388), 1, + sym_val_string, + STATE(3611), 1, sym_comment, - STATE(1953), 4, + STATE(2576), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105253] = 5, + [110192] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token5, - STATE(3460), 1, + ACTIONS(6923), 1, + anon_sym_DQUOTE, + ACTIONS(6925), 1, + anon_sym_SQUOTE, + ACTIONS(6927), 1, + anon_sym_BQUOTE, + ACTIONS(6929), 1, + aux_sym_path_token1, + ACTIONS(6931), 1, + sym_raw_string_begin, + STATE(1735), 1, + sym_val_string, + STATE(3612), 1, sym_comment, - ACTIONS(739), 3, - anon_sym_RBRACE, + STATE(1754), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [110223] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3613), 1, + sym_comment, + ACTIONS(739), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, + sym__unquoted_pattern_in_list, ACTIONS(741), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -226688,520 +232112,752 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [105276] = 10, + [110244] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(6787), 1, + aux_sym_path_token1, + ACTIONS(6933), 1, + anon_sym_DQUOTE, + ACTIONS(6935), 1, + anon_sym_SQUOTE, + ACTIONS(6937), 1, + anon_sym_BQUOTE, + STATE(2388), 1, + sym_val_string, + STATE(3614), 1, + sym_comment, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [110275] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3012), 1, + sym_raw_string_begin, + ACTIONS(6781), 1, + anon_sym_DQUOTE, + ACTIONS(6783), 1, + anon_sym_SQUOTE, + ACTIONS(6785), 1, + anon_sym_BQUOTE, + ACTIONS(6939), 1, + aux_sym_path_token1, + STATE(2515), 1, + sym_val_string, + STATE(3615), 1, + sym_comment, + STATE(2568), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [110306] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(6729), 1, + anon_sym_DQUOTE, + ACTIONS(6731), 1, + anon_sym_SQUOTE, + ACTIONS(6733), 1, + anon_sym_BQUOTE, + ACTIONS(6941), 1, + aux_sym_path_token1, + STATE(3616), 1, + sym_comment, + STATE(3758), 1, + sym_val_string, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [110337] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6943), 1, + anon_sym_DQUOTE, + ACTIONS(6945), 1, + anon_sym_SQUOTE, + ACTIONS(6947), 1, + anon_sym_BQUOTE, + ACTIONS(6949), 1, + aux_sym_path_token1, + ACTIONS(6951), 1, + sym_raw_string_begin, + STATE(337), 1, + sym_val_string, + STATE(3617), 1, + sym_comment, + STATE(353), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [110368] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(5003), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5005), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5116), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6746), 1, + ACTIONS(1639), 1, + anon_sym_LBRACE, + ACTIONS(2873), 1, anon_sym_DOLLAR, - STATE(2612), 1, + STATE(729), 1, sym__immediate_decimal, - STATE(3461), 1, + STATE(3618), 1, sym_comment, - ACTIONS(6748), 2, + ACTIONS(6499), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2886), 2, + ACTIONS(6953), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(728), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105309] = 10, + [110399] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3619), 1, + sym_comment, + ACTIONS(860), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(862), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [110420] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(5011), 1, + ACTIONS(5045), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5013), 1, + ACTIONS(5047), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5116), 1, + ACTIONS(5207), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(6746), 1, + ACTIONS(6955), 1, anon_sym_DOLLAR, - STATE(2983), 1, + STATE(2702), 1, sym__immediate_decimal, - STATE(3462), 1, + STATE(3620), 1, sym_comment, - ACTIONS(6750), 2, + ACTIONS(6957), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3290), 2, + STATE(3011), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105342] = 10, + [110453] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(866), 1, + anon_sym_RBRACK, + ACTIONS(886), 1, + sym__entry_separator, + ACTIONS(6479), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6670), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(3940), 1, + ACTIONS(6959), 1, + anon_sym_DOT_DOT2, + ACTIONS(6963), 1, + sym_filesize_unit, + ACTIONS(6965), 1, + sym_duration_unit, + STATE(3621), 1, + sym_comment, + STATE(4803), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6961), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110488] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(5141), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5143), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(5207), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(6955), 1, anon_sym_DOLLAR, - ACTIONS(6752), 1, - aux_sym__immediate_decimal_token2, - STATE(1850), 1, + STATE(3128), 1, sym__immediate_decimal, - STATE(3463), 1, + STATE(3622), 1, sym_comment, - ACTIONS(6754), 2, + ACTIONS(6967), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1960), 2, + STATE(3511), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105375] = 10, + [110521] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6686), 1, + aux_sym__immediate_decimal_token5, + STATE(3623), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110544] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(6969), 1, + anon_sym_DOT, + ACTIONS(6971), 1, + aux_sym__immediate_decimal_token5, + STATE(3624), 1, + sym_comment, + ACTIONS(1744), 4, anon_sym_LPAREN2, - ACTIONS(3681), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1746), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [110569] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1452), 1, + anon_sym_BANG, + STATE(3625), 1, + sym_comment, + ACTIONS(1450), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1448), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [110592] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3323), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(4870), 1, + ACTIONS(4974), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, + ACTIONS(4976), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5048), 1, + ACTIONS(5160), 1, aux_sym_unquoted_token2, - STATE(2565), 1, + STATE(2589), 1, sym__immediate_decimal, - STATE(3464), 1, + STATE(3626), 1, sym_comment, - ACTIONS(4874), 2, + ACTIONS(4978), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2682), 2, + STATE(2799), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105408] = 10, - ACTIONS(103), 1, + [110625] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(3954), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(1663), 1, + anon_sym_LBRACE, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(6756), 1, - aux_sym__immediate_decimal_token2, - STATE(1974), 1, + STATE(747), 1, sym__immediate_decimal, - STATE(3465), 1, + STATE(3627), 1, sym_comment, - ACTIONS(6758), 2, + ACTIONS(6499), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + ACTIONS(6953), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(746), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105441] = 10, + [110656] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6682), 1, + aux_sym__immediate_decimal_token5, + STATE(3628), 1, + sym_comment, + ACTIONS(747), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 6, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [110679] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1667), 1, + anon_sym_LBRACE, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, - STATE(3466), 1, - sym_comment, - STATE(3977), 1, + STATE(743), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + STATE(3629), 1, + sym_comment, + ACTIONS(6499), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4135), 2, + ACTIONS(6953), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(742), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105474] = 9, + [110710] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(827), 1, - anon_sym_DQUOTE, - ACTIONS(829), 1, - anon_sym_SQUOTE, - ACTIONS(831), 1, - anon_sym_BQUOTE, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(6764), 1, - aux_sym_path_token1, - STATE(2404), 1, - sym_val_string, - STATE(3467), 1, + ACTIONS(6973), 1, + anon_sym_DOT, + ACTIONS(6975), 1, + aux_sym__immediate_decimal_token5, + STATE(3630), 1, sym_comment, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [105505] = 10, - ACTIONS(103), 1, + ACTIONS(1744), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1746), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [110735] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1655), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(6718), 1, + ACTIONS(1681), 1, + anon_sym_LBRACE, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(6766), 1, - aux_sym__immediate_decimal_token2, - STATE(693), 1, + STATE(745), 1, sym__immediate_decimal, - STATE(3468), 1, + STATE(3631), 1, sym_comment, - ACTIONS(6768), 2, + ACTIONS(6499), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + ACTIONS(6953), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(744), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105538] = 10, + [110766] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(3323), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(6718), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(6770), 1, + ACTIONS(4988), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4990), 1, aux_sym__immediate_decimal_token2, - STATE(1047), 1, + ACTIONS(5160), 1, + aux_sym_unquoted_token2, + STATE(2946), 1, sym__immediate_decimal, - STATE(3469), 1, + STATE(3632), 1, sym_comment, - ACTIONS(6772), 2, + ACTIONS(4992), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(3271), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105571] = 6, + [110799] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, + ACTIONS(6977), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6979), 1, aux_sym__immediate_decimal_token5, - STATE(3470), 1, + STATE(3633), 1, sym_comment, - ACTIONS(1736), 4, - sym__space, + ACTIONS(1770), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 4, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1772), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [105596] = 10, + sym__unquoted_pattern_in_list, + [110824] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(1836), 1, anon_sym_DOLLAR, - ACTIONS(4916), 1, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6106), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, + ACTIONS(6108), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5048), 1, - aux_sym_unquoted_token2, - STATE(2816), 1, - sym__immediate_decimal, - STATE(3471), 1, + ACTIONS(6479), 1, + aux_sym__unquoted_in_list_token2, + STATE(3634), 1, sym_comment, - ACTIONS(4920), 2, + STATE(3774), 1, + sym__immediate_decimal, + ACTIONS(6110), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3201), 2, + STATE(4020), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105629] = 10, + [110857] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(3347), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(5322), 1, anon_sym_DOLLAR, - ACTIONS(6778), 1, + ACTIONS(6497), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token2, - STATE(1436), 1, - sym__immediate_decimal, - STATE(3472), 1, + STATE(3635), 1, sym_comment, - ACTIONS(6780), 2, + STATE(4071), 1, + sym__immediate_decimal, + ACTIONS(6983), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(4450), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105662] = 10, + [110890] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1734), 1, + sym__unquoted_pattern, + ACTIONS(6985), 1, + anon_sym_DOT_DOT2, + ACTIONS(6989), 1, + sym_filesize_unit, + ACTIONS(6991), 1, + sym_duration_unit, + STATE(3636), 1, + sym_comment, + ACTIONS(6987), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(886), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110919] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6347), 1, + anon_sym_DOLLAR, + ACTIONS(6349), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(3378), 1, + ACTIONS(6351), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, - anon_sym_DOLLAR, - ACTIONS(6782), 1, + ACTIONS(6353), 1, aux_sym__immediate_decimal_token2, - STATE(1470), 1, - sym__immediate_decimal, - STATE(3473), 1, + ACTIONS(6479), 1, + aux_sym__unquoted_in_list_token2, + STATE(3637), 1, sym_comment, - ACTIONS(6784), 2, + STATE(4111), 1, + sym__immediate_decimal, + ACTIONS(6355), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(4413), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105695] = 10, + [110952] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6993), 1, + anon_sym_DOT, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token5, + STATE(3638), 1, + sym_comment, + ACTIONS(1744), 4, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(3762), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, - anon_sym_DOLLAR, - ACTIONS(6786), 1, - aux_sym__immediate_decimal_token2, - STATE(1827), 1, - sym__immediate_decimal, - STATE(3474), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1746), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [110977] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6997), 1, + aux_sym__immediate_decimal_token5, + STATE(3639), 1, sym_comment, - ACTIONS(6788), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(704), 2, + ACTIONS(771), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(773), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [111000] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(866), 1, + anon_sym_RBRACE, + ACTIONS(886), 1, + sym__entry_separator, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(6779), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6999), 1, + anon_sym_DOT_DOT2, + ACTIONS(7003), 1, + sym_filesize_unit, + ACTIONS(7005), 1, + sym_duration_unit, + STATE(3640), 1, + sym_comment, + STATE(4903), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [105728] = 10, + ACTIONS(7001), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111035] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(3900), 1, + ACTIONS(1691), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(1820), 1, + aux_sym_unquoted_token2, + ACTIONS(6713), 1, anon_sym_DOLLAR, - ACTIONS(6790), 1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token2, - STATE(1952), 1, + STATE(682), 1, sym__immediate_decimal, - STATE(3475), 1, + STATE(3641), 1, sym_comment, - ACTIONS(6792), 2, + ACTIONS(7009), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(950), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105761] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6794), 1, - anon_sym_DQUOTE, - ACTIONS(6796), 1, - anon_sym_SQUOTE, - ACTIONS(6798), 1, - anon_sym_BQUOTE, - ACTIONS(6800), 1, - aux_sym_path_token1, - ACTIONS(6802), 1, - sym_raw_string_begin, - STATE(3476), 1, - sym_comment, - STATE(3934), 1, - sym_val_string, - STATE(4140), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [105792] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(6544), 1, - anon_sym_DQUOTE, - ACTIONS(6546), 1, - anon_sym_SQUOTE, - ACTIONS(6548), 1, - anon_sym_BQUOTE, - ACTIONS(6804), 1, - aux_sym_path_token1, - STATE(2263), 1, - sym_val_string, - STATE(3477), 1, - sym_comment, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [105823] = 10, + [111068] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(5841), 1, + ACTIONS(1697), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, + ACTIONS(1820), 1, + aux_sym_unquoted_token2, + ACTIONS(6713), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3478), 1, - sym_comment, - STATE(3603), 1, + STATE(1053), 1, sym__immediate_decimal, - ACTIONS(5845), 2, + STATE(3642), 1, + sym_comment, + ACTIONS(7013), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3860), 2, + STATE(1333), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105856] = 9, + [111101] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6458), 1, + anon_sym_DASH2, + STATE(3643), 1, + sym_comment, + ACTIONS(4431), 9, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [111122] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1426), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(6552), 1, + ACTIONS(6933), 1, anon_sym_DQUOTE, - ACTIONS(6554), 1, + ACTIONS(6935), 1, anon_sym_SQUOTE, - ACTIONS(6556), 1, + ACTIONS(6937), 1, anon_sym_BQUOTE, - ACTIONS(6692), 1, + ACTIONS(7015), 1, aux_sym_path_token1, - STATE(3268), 1, + STATE(2296), 1, sym_val_string, - STATE(3479), 1, + STATE(3644), 1, sym_comment, - STATE(3505), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105887] = 6, + [111153] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6806), 1, - anon_sym_DOT, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token5, - STATE(3480), 1, + STATE(3645), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 6, + ACTIONS(741), 8, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [105912] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3481), 1, - sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [105933] = 6, + [111174] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6810), 1, + ACTIONS(7017), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6812), 1, + ACTIONS(7019), 1, aux_sym__immediate_decimal_token5, - STATE(3482), 1, + STATE(3646), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(1770), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1728), 4, + ACTIONS(1772), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [105958] = 9, + [111199] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6814), 1, - anon_sym_DQUOTE, - ACTIONS(6816), 1, - anon_sym_SQUOTE, - ACTIONS(6818), 1, - anon_sym_BQUOTE, - ACTIONS(6820), 1, - aux_sym_path_token1, - ACTIONS(6822), 1, - sym_raw_string_begin, - STATE(1733), 1, - sym_val_string, - STATE(3483), 1, + ACTIONS(1836), 1, + anon_sym_DOLLAR, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6220), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6779), 1, + aux_sym__unquoted_in_record_token2, + STATE(3647), 1, sym_comment, - STATE(1749), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [105989] = 4, + STATE(3788), 1, + sym__immediate_decimal, + ACTIONS(6222), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3925), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111232] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3484), 1, + ACTIONS(1836), 1, + anon_sym_DOLLAR, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6479), 1, + aux_sym__unquoted_in_list_token2, + STATE(3648), 1, + sym_comment, + STATE(3816), 1, + sym__immediate_decimal, + ACTIONS(6239), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3925), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111265] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3649), 1, sym_comment, ACTIONS(771), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, ACTIONS(773), 6, @@ -227211,76 +232867,92 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [106010] = 4, + [111286] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3485), 1, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6401), 1, + anon_sym_DOLLAR, + ACTIONS(6403), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6405), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6479), 1, + aux_sym__unquoted_in_list_token2, + STATE(3650), 1, sym_comment, - ACTIONS(849), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + STATE(4391), 1, + sym__immediate_decimal, + ACTIONS(6407), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4413), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111319] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3651), 1, + sym_comment, + ACTIONS(771), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(851), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(773), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [106031] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6824), 1, - anon_sym_DQUOTE, - ACTIONS(6826), 1, - anon_sym_SQUOTE, - ACTIONS(6828), 1, - anon_sym_BQUOTE, - ACTIONS(6830), 1, - aux_sym_path_token1, - ACTIONS(6832), 1, - sym_raw_string_begin, - STATE(2359), 1, - sym_val_string, - STATE(3486), 1, - sym_comment, - STATE(2420), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106062] = 8, + [111340] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(6834), 1, + ACTIONS(6694), 1, + aux_sym__immediate_decimal_token5, + STATE(3652), 1, + sym_comment, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - ACTIONS(6838), 1, + sym__unquoted_pattern, + ACTIONS(749), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(6840), 1, sym_duration_unit, - STATE(3487), 1, + [111363] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3653), 1, sym_comment, - ACTIONS(6836), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 4, + ACTIONS(860), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(862), 8, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [106091] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111384] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3488), 1, + ACTIONS(7021), 1, + aux_sym__immediate_decimal_token5, + STATE(3654), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, + ACTIONS(773), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -227288,316 +232960,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106112] = 4, - ACTIONS(103), 1, + [111407] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3489), 1, + ACTIONS(7023), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token5, + STATE(3655), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 6, + anon_sym_if, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111432] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7027), 1, + aux_sym__immediate_decimal_token5, + STATE(3656), 1, + sym_comment, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(773), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106133] = 9, + [111455] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6842), 1, + ACTIONS(3806), 1, + sym_raw_string_begin, + ACTIONS(6771), 1, anon_sym_DQUOTE, - ACTIONS(6844), 1, + ACTIONS(6773), 1, anon_sym_SQUOTE, - ACTIONS(6846), 1, + ACTIONS(6775), 1, anon_sym_BQUOTE, - ACTIONS(6848), 1, + ACTIONS(7029), 1, aux_sym_path_token1, - ACTIONS(6850), 1, - sym_raw_string_begin, - STATE(337), 1, + STATE(2391), 1, sym_val_string, - STATE(3490), 1, + STATE(3657), 1, sym_comment, - STATE(343), 4, + STATE(2379), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [106164] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3491), 1, - sym_comment, - ACTIONS(771), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [106184] = 4, + [111486] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3492), 1, + ACTIONS(7031), 1, + anon_sym_DOT, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token5, + STATE(3658), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(1746), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 7, + ACTIONS(1744), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106204] = 7, + [111510] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2843), 1, - sym_cell_path, - STATE(3493), 1, - sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1866), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [106230] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3494), 1, - sym_comment, - STATE(3919), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106258] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(7035), 1, anon_sym_DOLLAR, - STATE(2997), 1, + STATE(2809), 1, sym__immediate_decimal, - STATE(3495), 1, + STATE(3659), 1, sym_comment, - ACTIONS(4912), 2, + ACTIONS(4964), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6856), 2, + ACTIONS(7037), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2996), 2, + STATE(3173), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106286] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2914), 1, - sym_cell_path, - STATE(3496), 1, - sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1858), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [106312] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3497), 1, - sym_comment, - ACTIONS(849), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(851), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [106332] = 8, + [111538] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR, - STATE(3498), 1, - sym_comment, - STATE(4020), 1, + STATE(3423), 1, sym__immediate_decimal, - ACTIONS(6055), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6858), 2, + STATE(3660), 1, + sym_comment, + ACTIONS(5049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106360] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - STATE(3499), 1, - sym_comment, - STATE(4106), 1, - sym__immediate_decimal, - ACTIONS(6073), 2, + ACTIONS(5191), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6860), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4105), 2, + STATE(3440), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106388] = 5, + [111566] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6862), 1, + ACTIONS(6971), 1, aux_sym__immediate_decimal_token5, - STATE(3500), 1, + STATE(3661), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1744), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1804), 4, + ACTIONS(1746), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [106410] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(6864), 1, - anon_sym_DOT_DOT2, - ACTIONS(6868), 1, - sym_filesize_unit, - ACTIONS(6870), 1, - sym_duration_unit, - STATE(3501), 1, - sym_comment, - ACTIONS(6866), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [106438] = 8, + [111588] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(1313), 1, + STATE(960), 1, sym__immediate_decimal, - STATE(3502), 1, + STATE(3662), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1675), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1306), 2, + ACTIONS(1677), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106466] = 8, + [111616] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - STATE(2710), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(736), 1, sym__immediate_decimal, - STATE(3503), 1, + STATE(3663), 1, sym_comment, - ACTIONS(4884), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6872), 2, + ACTIONS(4012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2998), 2, + STATE(735), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106494] = 8, + [111644] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(3948), 1, anon_sym_DOLLAR, - STATE(727), 1, - sym__immediate_decimal, - STATE(3504), 1, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + STATE(3664), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + STATE(4447), 1, + sym__immediate_decimal, + ACTIONS(6513), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + ACTIONS(7039), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4235), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106522] = 4, + [111672] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1480), 1, + ACTIONS(1521), 1, sym__entry_separator, - STATE(3505), 1, + STATE(3665), 1, sym_comment, - ACTIONS(1478), 8, + ACTIONS(1519), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -227606,110 +233170,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [106542] = 8, + [111692] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(958), 1, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + STATE(2687), 1, sym__immediate_decimal, - STATE(3506), 1, + STATE(3666), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(4934), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1637), 2, + ACTIONS(4936), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(1283), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106570] = 8, + [111720] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - STATE(3274), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(723), 1, sym__immediate_decimal, - STATE(3507), 1, + STATE(3667), 1, sym_comment, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(5081), 2, + ACTIONS(1608), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(3271), 2, + ACTIONS(1610), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(700), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106598] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1476), 1, - sym__entry_separator, - STATE(3508), 1, - sym_comment, - ACTIONS(1474), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [106618] = 8, + [111748] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3948), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - STATE(3509), 1, + STATE(3668), 1, sym_comment, - STATE(4200), 1, + STATE(4233), 1, sym__immediate_decimal, - ACTIONS(6335), 2, + ACTIONS(6485), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6874), 2, + ACTIONS(7041), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(4232), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106646] = 8, + [111776] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(727), 1, + STATE(914), 1, sym__immediate_decimal, - STATE(3510), 1, + STATE(3669), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(737), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111804] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3942), 1, + anon_sym_DOLLAR, + ACTIONS(6349), 1, + anon_sym_LPAREN2, + STATE(3670), 1, + sym_comment, + STATE(4144), 1, + sym__immediate_decimal, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7043), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(726), 2, + STATE(4235), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106674] = 4, + [111832] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1516), 1, + ACTIONS(7045), 1, + aux_sym__immediate_decimal_token5, + STATE(3671), 1, + sym_comment, + ACTIONS(1852), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - STATE(3511), 1, + ACTIONS(1854), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [111854] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1525), 1, + sym__entry_separator, + STATE(3672), 1, sym_comment, - ACTIONS(1514), 8, + ACTIONS(1523), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -227718,927 +233303,1007 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [106694] = 8, + [111874] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - STATE(2614), 1, + STATE(2563), 1, sym__immediate_decimal, - STATE(3512), 1, + STATE(3673), 1, sym_comment, - ACTIONS(4844), 2, + ACTIONS(4922), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, + ACTIONS(4924), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106722] = 8, + [111902] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3830), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(3513), 1, - sym_comment, - STATE(3930), 1, + STATE(1961), 1, sym__immediate_decimal, - ACTIONS(6073), 2, + STATE(3674), 1, + sym_comment, + ACTIONS(3956), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6860), 2, + ACTIONS(3958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106750] = 6, + [111930] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6876), 1, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3858), 1, + anon_sym_DOLLAR, + STATE(3135), 1, + sym__immediate_decimal, + STATE(3675), 1, + sym_comment, + ACTIONS(5143), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6878), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5145), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3518), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111958] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6975), 1, aux_sym__immediate_decimal_token5, - STATE(3514), 1, + STATE(3676), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1744), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [106774] = 8, + ACTIONS(1746), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [111980] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - STATE(2534), 1, - sym__immediate_decimal, - STATE(3515), 1, + STATE(3677), 1, sym_comment, - ACTIONS(4840), 2, + STATE(4289), 1, + sym__immediate_decimal, + ACTIONS(6251), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106802] = 8, + [112008] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(6880), 1, + ACTIONS(7035), 1, anon_sym_DOLLAR, - STATE(2888), 1, + STATE(3172), 1, sym__immediate_decimal, - STATE(3516), 1, + STATE(3678), 1, sym_comment, - ACTIONS(4916), 2, + ACTIONS(6409), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6882), 2, + ACTIONS(7047), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3130), 2, + STATE(3171), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106830] = 8, + [112036] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(3517), 1, - sym_comment, - STATE(4229), 1, + STATE(1496), 1, sym__immediate_decimal, - ACTIONS(6442), 2, + STATE(3679), 1, + sym_comment, + ACTIONS(3448), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6884), 2, + ACTIONS(3450), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(1283), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106858] = 6, + [112064] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6886), 1, - anon_sym_DOT, - ACTIONS(6888), 1, - aux_sym__immediate_decimal_token5, - STATE(3518), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(2000), 1, + sym__immediate_decimal, + STATE(3680), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106882] = 8, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(737), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112092] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - STATE(2993), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(1488), 1, sym__immediate_decimal, - STATE(3519), 1, + STATE(3681), 1, sym_comment, - ACTIONS(5013), 2, + ACTIONS(3394), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5015), 2, + ACTIONS(3396), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3226), 2, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106910] = 8, + [112120] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1529), 1, + sym__entry_separator, + STATE(3682), 1, + sym_comment, + ACTIONS(1527), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [112140] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - STATE(3520), 1, - sym_comment, - STATE(4124), 1, + STATE(736), 1, sym__immediate_decimal, - ACTIONS(6145), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, + STATE(3683), 1, + sym_comment, + ACTIONS(6499), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + ACTIONS(6953), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(735), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106938] = 8, + [112168] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2925), 1, + sym_cell_path, + STATE(3684), 1, + sym_comment, + ACTIONS(1862), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [112194] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7049), 1, + aux_sym__immediate_decimal_token5, + STATE(3685), 1, + sym_comment, + ACTIONS(1852), 4, anon_sym_LPAREN2, - ACTIONS(2878), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1854), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [112216] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3948), 1, anon_sym_DOLLAR, - STATE(3521), 1, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + STATE(3686), 1, sym_comment, - STATE(4723), 1, + STATE(4897), 1, sym__immediate_decimal, - ACTIONS(6478), 2, + ACTIONS(6485), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, + ACTIONS(7041), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(4413), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106966] = 8, + [112244] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(7051), 1, + aux_sym__immediate_decimal_token5, + STATE(3687), 1, + sym_comment, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112266] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(1502), 1, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + STATE(1300), 1, sym__immediate_decimal, - STATE(3522), 1, + STATE(3688), 1, sym_comment, - ACTIONS(3450), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, + ACTIONS(1693), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + ACTIONS(1758), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1303), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106994] = 8, + [112294] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(2084), 1, + STATE(957), 1, sym__immediate_decimal, - STATE(3523), 1, + STATE(3689), 1, sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(1610), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + ACTIONS(1655), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107022] = 8, + [112322] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(1487), 1, + STATE(953), 1, sym__immediate_decimal, - STATE(3524), 1, + STATE(3690), 1, sym_comment, - ACTIONS(3378), 2, + ACTIONS(1691), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, + ACTIONS(1693), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(950), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107050] = 8, + [112350] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(956), 1, + STATE(1300), 1, sym__immediate_decimal, - STATE(3525), 1, + STATE(3691), 1, sym_comment, - ACTIONS(1655), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1657), 2, + ACTIONS(1693), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + ACTIONS(1758), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1303), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107078] = 9, - ACTIONS(103), 1, + [112378] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4139), 1, + STATE(3692), 1, + sym_comment, + ACTIONS(860), 2, anon_sym_DOT_DOT2, - ACTIONS(4969), 1, sym__unquoted_pattern, - ACTIONS(6494), 1, - sym_filesize_unit, - ACTIONS(6496), 1, - sym_duration_unit, - STATE(3526), 1, - sym_comment, - ACTIONS(868), 2, + ACTIONS(862), 7, sym__newline, - anon_sym_SEMI, - ACTIONS(4141), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107108] = 8, + sym_filesize_unit, + sym_duration_unit, + [112398] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(6880), 1, + ACTIONS(3948), 1, anon_sym_DOLLAR, - STATE(3103), 1, - sym__immediate_decimal, - STATE(3527), 1, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + STATE(3693), 1, sym_comment, - ACTIONS(4938), 2, + STATE(4218), 1, + sym__immediate_decimal, + ACTIONS(6403), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6890), 2, + ACTIONS(7053), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3101), 2, + STATE(4235), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107136] = 4, - ACTIONS(103), 1, + [112426] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1468), 1, - sym__entry_separator, - STATE(3528), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2990), 1, + sym_cell_path, + STATE(3694), 1, sym_comment, - ACTIONS(1466), 8, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(1912), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [107156] = 8, + anon_sym_DASH_DASH, + [112452] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(3529), 1, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(3695), 1, sym_comment, - STATE(4676), 1, + STATE(4205), 1, sym__immediate_decimal, - ACTIONS(6250), 2, + ACTIONS(5975), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(5977), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107184] = 8, + [112480] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - STATE(1300), 1, + STATE(736), 1, sym__immediate_decimal, - STATE(3530), 1, + STATE(3696), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1610), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1655), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1298), 2, + STATE(735), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107212] = 8, + [112508] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - STATE(3531), 1, - sym_comment, - STATE(4106), 1, + ACTIONS(7035), 1, + anon_sym_DOLLAR, + STATE(3172), 1, sym__immediate_decimal, - ACTIONS(6250), 2, + STATE(3697), 1, + sym_comment, + ACTIONS(4984), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(7055), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4105), 2, + STATE(3171), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107240] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3532), 1, - sym_comment, - ACTIONS(6894), 9, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [107258] = 8, + [112536] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(2674), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - STATE(904), 1, - sym__immediate_decimal, - STATE(3533), 1, + STATE(3698), 1, sym_comment, - ACTIONS(3954), 2, + STATE(4196), 1, + sym__immediate_decimal, + ACTIONS(6235), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(7041), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(3925), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107286] = 5, - ACTIONS(3), 1, + [112564] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6896), 1, - aux_sym__immediate_decimal_token5, - STATE(3534), 1, + STATE(3699), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(739), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [112584] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(886), 1, + sym__space, + ACTIONS(4203), 1, anon_sym_DOT_DOT2, + ACTIONS(5071), 1, sym__unquoted_pattern, - ACTIONS(1802), 6, - anon_sym_if, + ACTIONS(6654), 1, + sym_filesize_unit, + ACTIONS(6656), 1, + sym_duration_unit, + STATE(3700), 1, + sym_comment, + ACTIONS(866), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + anon_sym_SEMI, + ACTIONS(4205), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107308] = 8, + [112614] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(904), 1, + STATE(1958), 1, sym__immediate_decimal, - STATE(3535), 1, + STATE(3701), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(3996), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3998), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + STATE(1969), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112642] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(3702), 1, + sym_comment, + STATE(4880), 1, + sym__immediate_decimal, + ACTIONS(6664), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(728), 2, + ACTIONS(6666), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107336] = 5, + [112670] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token5, - STATE(3536), 1, + STATE(3703), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 6, - anon_sym_if, + ACTIONS(773), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107358] = 8, + sym_filesize_unit, + sym_duration_unit, + [112690] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(709), 1, + STATE(957), 1, sym__immediate_decimal, - STATE(3537), 1, + STATE(3704), 1, sym_comment, - ACTIONS(1592), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1594), 2, + ACTIONS(4012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107386] = 4, + [112718] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3538), 1, + ACTIONS(7057), 1, + anon_sym_DOT, + ACTIONS(7059), 1, + aux_sym__immediate_decimal_token5, + STATE(3705), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(749), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107406] = 8, + [112742] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - STATE(3539), 1, - sym_comment, - STATE(3911), 1, - sym__immediate_decimal, - ACTIONS(6047), 2, + ACTIONS(7061), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3780), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107434] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - STATE(3540), 1, + ACTIONS(7063), 1, + aux_sym__immediate_decimal_token5, + STATE(3706), 1, sym_comment, - STATE(4750), 1, - sym__immediate_decimal, - ACTIONS(6250), 2, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112766] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7065), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4234), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107462] = 4, + ACTIONS(7067), 1, + aux_sym__immediate_decimal_token5, + STATE(3707), 1, + sym_comment, + ACTIONS(1772), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1770), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [112790] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3541), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2914), 1, + sym_cell_path, + STATE(3708), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, + ACTIONS(1900), 5, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_GT2, anon_sym_DASH_DASH, + [112816] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3709), 1, + sym_comment, + ACTIONS(771), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(773), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107482] = 4, + sym__entry_separator, + [112836] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3542), 1, + ACTIONS(7069), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + aux_sym__immediate_decimal_token5, + STATE(3710), 1, sym_comment, - ACTIONS(747), 3, + ACTIONS(1746), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 6, + ACTIONS(1744), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [107502] = 8, + [112860] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(727), 1, + STATE(1329), 1, sym__immediate_decimal, - STATE(3543), 1, + STATE(3711), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1693), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1758), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + STATE(1283), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107530] = 8, + [112888] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3712), 1, + sym_comment, + ACTIONS(860), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(862), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [112908] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3713), 1, + sym_comment, + ACTIONS(7073), 9, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112926] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(4203), 1, anon_sym_DOT_DOT2, - ACTIONS(6898), 1, + ACTIONS(7075), 1, sym_filesize_unit, - ACTIONS(6900), 1, + ACTIONS(7077), 1, sym_duration_unit, - ACTIONS(6902), 1, + ACTIONS(7079), 1, sym__unquoted_pattern, - STATE(3544), 1, + STATE(3714), 1, sym_comment, - ACTIONS(4141), 2, + ACTIONS(4205), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 3, + ACTIONS(886), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [107558] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(727), 1, - sym__immediate_decimal, - STATE(3545), 1, - sym_comment, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(726), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107586] = 4, + [112954] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3546), 1, + STATE(3715), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(741), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107606] = 8, + [112974] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - STATE(955), 1, - sym__immediate_decimal, - STATE(3547), 1, + ACTIONS(7035), 1, + anon_sym_DOLLAR, + STATE(3716), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + STATE(4049), 1, + sym__immediate_decimal, + ACTIONS(6255), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(888), 2, + ACTIONS(7081), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3173), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107634] = 5, + [113002] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6776), 1, + ACTIONS(7083), 1, aux_sym__immediate_decimal_token5, - STATE(3548), 1, + STATE(3717), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(1852), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 4, + ACTIONS(1854), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [107656] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3549), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107676] = 8, + [113024] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(3942), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(6349), 1, anon_sym_LPAREN2, - STATE(1083), 1, - sym__immediate_decimal, - STATE(3550), 1, + STATE(3718), 1, sym_comment, - ACTIONS(1683), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1685), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1306), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107704] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1300), 1, + STATE(4233), 1, sym__immediate_decimal, - STATE(3551), 1, - sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1298), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107732] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(727), 1, - sym__immediate_decimal, - STATE(3552), 1, - sym_comment, - ACTIONS(5745), 2, + ACTIONS(7043), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(726), 2, + STATE(4232), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107760] = 5, - ACTIONS(103), 1, + [113052] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token5, - STATE(3553), 1, + STATE(3719), 1, sym_comment, - ACTIONS(1736), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, + ACTIONS(7085), 9, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [107782] = 6, + [113070] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6904), 1, - anon_sym_DOT, - ACTIONS(6906), 1, - aux_sym__immediate_decimal_token5, - STATE(3554), 1, + STATE(3720), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(860), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(862), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107806] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6468), 1, - anon_sym_DOT_DOT2, - ACTIONS(6472), 1, sym_filesize_unit, - ACTIONS(6474), 1, sym_duration_unit, - STATE(3555), 1, - sym_comment, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6470), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107836] = 8, + [113090] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(3323), 1, anon_sym_LPAREN2, - STATE(1956), 1, + ACTIONS(7087), 1, + anon_sym_DOLLAR, + STATE(3231), 1, sym__immediate_decimal, - STATE(3556), 1, + STATE(3721), 1, sym_comment, - ACTIONS(3940), 2, + ACTIONS(5059), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, + ACTIONS(7089), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1960), 2, + STATE(3230), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107864] = 8, + [113118] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(3948), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - STATE(955), 1, - sym__immediate_decimal, - STATE(3557), 1, + STATE(3722), 1, sym_comment, - ACTIONS(3954), 2, + STATE(4941), 1, + sym__immediate_decimal, + ACTIONS(6485), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(7041), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(4235), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107892] = 8, + [113146] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6747), 1, + aux_sym__immediate_decimal_token5, + STATE(3723), 1, + sym_comment, + ACTIONS(1746), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113168] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(1266), 1, + STATE(736), 1, sym__immediate_decimal, - STATE(3558), 1, + STATE(3724), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1610), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1655), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1264), 2, + STATE(735), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107920] = 6, - ACTIONS(103), 1, + [113196] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6908), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6910), 1, - aux_sym__immediate_decimal_token5, - STATE(3559), 1, - sym_comment, - ACTIONS(1728), 3, - anon_sym_RBRACE, + ACTIONS(1734), 1, + sym__unquoted_pattern, + ACTIONS(7091), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 4, - anon_sym_LPAREN2, + ACTIONS(7095), 1, + sym_filesize_unit, + ACTIONS(7097), 1, + sym_duration_unit, + STATE(3725), 1, + sym_comment, + ACTIONS(7093), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [107944] = 4, + ACTIONS(886), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [113224] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1472), 1, + ACTIONS(1533), 1, sym__entry_separator, - STATE(3560), 1, + STATE(3726), 1, sym_comment, - ACTIONS(1470), 8, + ACTIONS(1531), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -228647,407 +234312,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [107964] = 4, - ACTIONS(3), 1, + [113244] = 9, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3561), 1, - sym_comment, - ACTIONS(747), 2, + ACTIONS(886), 1, + sym__entry_separator, + ACTIONS(6479), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6672), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(6676), 1, sym_filesize_unit, + ACTIONS(6678), 1, sym_duration_unit, - [107984] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2899), 1, - sym_cell_path, - STATE(3562), 1, - sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1882), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108010] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6912), 1, - aux_sym__immediate_decimal_token5, - STATE(3563), 1, + STATE(3727), 1, sym_comment, - ACTIONS(1802), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(866), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6674), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108032] = 6, + [113274] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6914), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6916), 1, - aux_sym__immediate_decimal_token5, - STATE(3564), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(914), 1, + sym__immediate_decimal, + STATE(3728), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108056] = 5, + ACTIONS(1610), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1655), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(737), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113302] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6606), 1, + ACTIONS(6995), 1, aux_sym__immediate_decimal_token5, - STATE(3565), 1, + STATE(3729), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(1744), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1738), 4, + ACTIONS(1746), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [108078] = 8, + [113324] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1537), 1, + sym__entry_separator, + STATE(3730), 1, + sym_comment, + ACTIONS(1535), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [113344] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1541), 1, + sym__entry_separator, + STATE(3731), 1, + sym_comment, + ACTIONS(1539), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [113364] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(1924), 1, + STATE(1284), 1, sym__immediate_decimal, - STATE(3566), 1, + STATE(3732), 1, sym_comment, - ACTIONS(3900), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, + ACTIONS(1693), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + ACTIONS(1758), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1333), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108106] = 8, + [113392] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(3323), 1, anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(7087), 1, anon_sym_DOLLAR, - STATE(2997), 1, + STATE(3019), 1, sym__immediate_decimal, - STATE(3567), 1, + STATE(3733), 1, sym_comment, - ACTIONS(6254), 2, + ACTIONS(4988), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6918), 2, + ACTIONS(7099), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2996), 2, + STATE(3232), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108134] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1545), 1, - sym__entry_separator, - STATE(3568), 1, - sym_comment, - ACTIONS(1543), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [108154] = 5, - ACTIONS(103), 1, + [113420] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6920), 1, - aux_sym__immediate_decimal_token5, - STATE(3569), 1, + STATE(3734), 1, sym_comment, - ACTIONS(1802), 4, - anon_sym_LPAREN2, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108176] = 3, + sym_filesize_unit, + sym_duration_unit, + [113440] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3570), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(736), 1, + sym__immediate_decimal, + STATE(3735), 1, sym_comment, - ACTIONS(6922), 9, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [108194] = 6, - ACTIONS(103), 1, + ACTIONS(5907), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6243), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(735), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113468] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6924), 1, - anon_sym_DOT, - ACTIONS(6926), 1, + ACTIONS(7101), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7103), 1, aux_sym__immediate_decimal_token5, - STATE(3571), 1, + STATE(3736), 1, sym_comment, - ACTIONS(1738), 3, - anon_sym_RBRACE, + ACTIONS(739), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 4, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(741), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [108218] = 7, + sym_filesize_unit, + sym_duration_unit, + [113492] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2258), 1, - sym_cell_path, - STATE(2511), 1, - sym_path, - STATE(3572), 1, + STATE(3737), 1, sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 5, - anon_sym_EQ, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 7, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_GT2, anon_sym_DASH_DASH, - [108244] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6930), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(3133), 1, - sym_cell_path, - STATE(3573), 1, - sym_comment, - ACTIONS(6928), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108269] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113512] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_DOT2, - STATE(518), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, - sym_path, - STATE(1333), 1, - sym_cell_path, - STATE(3574), 1, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + STATE(1074), 1, + sym__immediate_decimal, + STATE(3738), 1, sym_comment, - ACTIONS(6932), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108294] = 5, + ACTIONS(1697), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1699), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1283), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113540] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6934), 1, + ACTIONS(7105), 1, + anon_sym_DOT, + ACTIONS(7107), 1, aux_sym__immediate_decimal_token5, - STATE(3575), 1, + STATE(3739), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_record, + ACTIONS(749), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108315] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(3035), 1, - sym_cell_path, - STATE(3576), 1, - sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(6936), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108340] = 6, + sym_filesize_unit, + sym_duration_unit, + [113563] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(1983), 1, sym__unquoted_pattern, - ACTIONS(6938), 1, + ACTIONS(7109), 1, anon_sym_DOT_DOT2, - STATE(3577), 1, - sym_comment, - ACTIONS(6940), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [108363] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3578), 1, + STATE(3740), 1, sym_comment, - ACTIONS(1802), 4, - anon_sym_LPAREN2, + ACTIONS(7111), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108382] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3579), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 6, + ACTIONS(1973), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108401] = 7, + [113586] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(5010), 1, anon_sym_DOT2, - STATE(423), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(458), 1, sym_path, - STATE(951), 1, - sym_cell_path, - STATE(3580), 1, - sym_comment, - ACTIONS(6942), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108426] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1884), 1, - sym__table_head_separator, - ACTIONS(6947), 1, - anon_sym_DOT_DOT, - ACTIONS(6949), 1, - anon_sym_DOT2, - STATE(3581), 1, - sym_comment, - STATE(3755), 1, + STATE(2323), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, - sym_path, - STATE(4368), 1, - sym_cell_path, - ACTIONS(6944), 2, - anon_sym_RBRACK, - sym__entry_separator, - [108455] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6953), 1, - anon_sym_DASH2, - STATE(3582), 1, + STATE(3741), 1, sym_comment, - ACTIONS(6951), 7, - sym_identifier, + STATE(4270), 1, + sym_cell_path, + ACTIONS(7113), 4, + anon_sym_if, + sym__newline, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [108474] = 4, + anon_sym_EQ_GT, + [113611] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3583), 1, + STATE(3742), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(1770), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1728), 4, + ACTIONS(1772), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [108493] = 4, + [113630] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3584), 1, + STATE(3743), 1, sym_comment, ACTIONS(1870), 4, anon_sym_LPAREN2, @@ -229059,462 +234614,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [108512] = 4, + [113649] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3585), 1, + ACTIONS(7115), 1, + aux_sym__immediate_decimal_token5, + STATE(3744), 1, + sym_comment, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113670] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3745), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1872), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 6, + ACTIONS(1870), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108531] = 7, + [113689] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6957), 1, + ACTIONS(1866), 1, anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3586), 1, - sym_comment, - STATE(3778), 1, + STATE(427), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4556), 1, + STATE(458), 1, + sym_path, + STATE(954), 1, sym_cell_path, - ACTIONS(6955), 4, + STATE(3746), 1, + sym_comment, + ACTIONS(7117), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108556] = 7, + [113714] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6961), 1, + ACTIONS(5010), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(458), 1, sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3035), 1, + STATE(954), 1, sym_cell_path, - STATE(3587), 1, + STATE(2323), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3747), 1, sym_comment, - ACTIONS(6959), 4, + ACTIONS(7119), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108581] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3588), 1, - sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108600] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6888), 1, - aux_sym__immediate_decimal_token5, - STATE(3589), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108621] = 5, + [113739] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6926), 1, + ACTIONS(7071), 1, aux_sym__immediate_decimal_token5, - STATE(3590), 1, + STATE(3748), 1, sym_comment, - ACTIONS(1738), 3, + ACTIONS(1746), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1736), 4, + ACTIONS(1744), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [108642] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3591), 1, - sym_comment, - STATE(4217), 1, - sym_cell_path, - ACTIONS(6963), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [108667] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(3592), 1, - sym_comment, - STATE(3593), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108690] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6965), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(3593), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108711] = 7, + [113760] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(7123), 1, anon_sym_DOT2, - STATE(423), 1, + STATE(2622), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(2871), 1, sym_path, - STATE(951), 1, + STATE(3105), 1, sym_cell_path, - STATE(3594), 1, + STATE(3749), 1, sym_comment, - ACTIONS(6968), 4, + ACTIONS(7121), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108736] = 5, + [113785] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6906), 1, + ACTIONS(7059), 1, aux_sym__immediate_decimal_token5, - STATE(3595), 1, + STATE(3750), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108757] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3596), 1, - sym_comment, - ACTIONS(1870), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(749), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108776] = 4, + sym_filesize_unit, + sym_duration_unit, + [113806] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3597), 1, - sym_comment, - ACTIONS(1726), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, + ACTIONS(1635), 1, sym__unquoted_pattern, - [108795] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(1956), 1, sym__space, - ACTIONS(1978), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(6970), 1, + ACTIONS(7125), 1, anon_sym_DOT_DOT2, - STATE(3598), 1, + STATE(3751), 1, sym_comment, - ACTIONS(1976), 2, + ACTIONS(1958), 2, sym__newline, anon_sym_SEMI, - ACTIONS(6972), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108822] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(6974), 1, - anon_sym_alias, - ACTIONS(6976), 1, - anon_sym_const, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - STATE(3599), 1, - sym_comment, - [108853] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(6986), 1, - anon_sym_DOT_DOT2, - STATE(3600), 1, - sym_comment, - ACTIONS(6988), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [108876] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6990), 1, - aux_sym__immediate_decimal_token5, - STATE(3601), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 5, - anon_sym_LBRACE, + ACTIONS(7127), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108897] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6994), 1, - anon_sym_DOT2, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2183), 1, - sym_cell_path, - STATE(3602), 1, - sym_comment, - ACTIONS(6992), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108922] = 8, + [113833] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, + ACTIONS(1973), 1, sym__entry_separator, - ACTIONS(1968), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(6996), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7129), 1, anon_sym_DOT_DOT2, - STATE(3603), 1, + STATE(3752), 1, sym_comment, - ACTIONS(1966), 2, + ACTIONS(1975), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6998), 2, + ACTIONS(7131), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108949] = 5, + [113860] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7000), 1, - aux_sym__immediate_decimal_token5, - STATE(3604), 1, + ACTIONS(1902), 1, + sym__table_head_separator, + ACTIONS(7135), 1, + anon_sym_DOT2, + STATE(3753), 1, sym_comment, - ACTIONS(1804), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + STATE(4261), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4812), 1, + sym_path, + STATE(5000), 1, + sym_cell_path, + ACTIONS(7133), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, sym__entry_separator, - [108970] = 7, + [113887] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(7139), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2689), 1, sym_path, - STATE(951), 1, + STATE(3248), 1, sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3605), 1, + STATE(3754), 1, sym_comment, - ACTIONS(7002), 4, + ACTIONS(7137), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108995] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7004), 1, - anon_sym_DOT_DOT2, - STATE(3606), 1, - sym_comment, - ACTIONS(1976), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7006), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109022] = 7, + [113912] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(2280), 1, anon_sym_DOT2, - STATE(423), 1, + STATE(622), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(720), 1, sym_path, - STATE(951), 1, + STATE(1318), 1, sym_cell_path, - STATE(3607), 1, + STATE(3755), 1, sym_comment, - ACTIONS(7008), 4, + ACTIONS(7141), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109047] = 8, + [113937] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, + STATE(3756), 1, + sym_comment, + ACTIONS(1770), 4, sym__space, - ACTIONS(1968), 1, anon_sym_LPAREN2, - ACTIONS(7010), 1, - anon_sym_DOT_DOT2, - STATE(3608), 1, - sym_comment, - ACTIONS(1966), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7012), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109074] = 6, + ACTIONS(1772), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [113956] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7014), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7016), 1, - aux_sym__immediate_decimal_token5, - STATE(3609), 1, + STATE(3757), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1854), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + sym__unquoted_pattern, + ACTIONS(1852), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109097] = 7, + [113975] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1448), 1, + ACTIONS(1458), 1, sym__entry_separator, - ACTIONS(7018), 1, + ACTIONS(7143), 1, anon_sym_QMARK2, - ACTIONS(7020), 1, + ACTIONS(7145), 1, anon_sym_BANG, - STATE(3610), 1, + STATE(3758), 1, sym_comment, - STATE(3947), 1, + STATE(4192), 1, sym__path_suffix, - ACTIONS(1446), 4, + ACTIONS(1456), 4, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, anon_sym_DOT2, - [109122] = 6, + [114000] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3759), 1, + sym_comment, + ACTIONS(1852), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1854), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [114019] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3760), 1, + sym_comment, + ACTIONS(1870), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1872), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [114038] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7022), 1, - anon_sym_DOT, - ACTIONS(7024), 1, + ACTIONS(7149), 1, + anon_sym_DASH2, + STATE(3761), 1, + sym_comment, + ACTIONS(7147), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [114057] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_DOT2, + STATE(427), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(458), 1, + sym_path, + STATE(954), 1, + sym_cell_path, + STATE(3762), 1, + sym_comment, + ACTIONS(7151), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [114082] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7153), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7155), 1, aux_sym__immediate_decimal_token5, - STATE(3611), 1, + STATE(3763), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -229524,3995 +234952,4060 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109145] = 7, + [114105] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7028), 1, + ACTIONS(1866), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(427), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(458), 1, sym_path, - STATE(3030), 1, + STATE(954), 1, sym_cell_path, - STATE(3612), 1, + STATE(3764), 1, sym_comment, - ACTIONS(7026), 4, + ACTIONS(7157), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109170] = 7, + [114130] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7159), 1, + aux_sym__immediate_decimal_token5, + STATE(3765), 1, + sym_comment, + ACTIONS(1854), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1852), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [114151] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(5010), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(458), 1, sym_path, - STATE(2290), 1, + STATE(2323), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3613), 1, + STATE(3766), 1, sym_comment, - STATE(4297), 1, + STATE(4341), 1, sym_cell_path, - ACTIONS(7030), 4, + ACTIONS(7161), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109195] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3614), 1, - sym_comment, - ACTIONS(1802), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [109214] = 7, + [114176] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1333), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3615), 1, - sym_comment, - ACTIONS(7032), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [109239] = 4, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token5, + STATE(3767), 1, + sym_comment, + ACTIONS(1746), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114197] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3616), 1, + STATE(3768), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(1870), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1728), 4, + ACTIONS(1872), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [109258] = 4, + [114216] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3617), 1, + STATE(3769), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1770), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1804), 4, + ACTIONS(1772), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [109277] = 4, + [114235] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3618), 1, + STATE(3770), 1, sym_comment, - ACTIONS(1870), 4, + ACTIONS(1852), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1872), 4, + ACTIONS(1854), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [109296] = 7, + [114254] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(7163), 1, + anon_sym_DOT_DOT2, + STATE(3771), 1, + sym_comment, + ACTIONS(7165), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1956), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [114277] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2280), 1, anon_sym_DOT2, - STATE(518), 1, + STATE(622), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, + STATE(720), 1, sym_path, - STATE(1333), 1, + STATE(1318), 1, sym_cell_path, - STATE(3619), 1, + STATE(3772), 1, sym_comment, - ACTIONS(7034), 4, + ACTIONS(7167), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109321] = 8, + [114302] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1884), 1, + ACTIONS(1902), 1, sym__table_head_separator, - ACTIONS(7036), 1, + ACTIONS(7133), 1, + anon_sym_DOT_DOT, + ACTIONS(7172), 1, anon_sym_DOT2, - STATE(3620), 1, + STATE(3773), 1, sym_comment, - STATE(4059), 1, + STATE(3910), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, + STATE(4272), 1, sym_path, - STATE(4963), 1, + STATE(4655), 1, sym_cell_path, - ACTIONS(6947), 3, + ACTIONS(7169), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, sym__entry_separator, - [109348] = 8, + [114331] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1434), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1956), 1, sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(7174), 1, + anon_sym_DOT_DOT2, + STATE(3774), 1, + sym_comment, + ACTIONS(1958), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7176), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114358] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7180), 1, anon_sym_DOT2, - STATE(3621), 1, + STATE(1990), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2158), 1, + sym_path, + STATE(2211), 1, + sym_cell_path, + STATE(3775), 1, sym_comment, - STATE(3640), 1, + ACTIONS(7178), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [114383] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7184), 1, + anon_sym_DOT2, + STATE(2466), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3884), 1, + STATE(2583), 1, sym_path, - STATE(4318), 1, + STATE(3199), 1, sym_cell_path, - ACTIONS(1432), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [109375] = 6, + STATE(3776), 1, + sym_comment, + ACTIONS(7182), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [114408] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7040), 1, - anon_sym_DOT, - ACTIONS(7042), 1, + ACTIONS(7186), 1, aux_sym__immediate_decimal_token5, - STATE(3622), 1, + STATE(3777), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 3, + ACTIONS(773), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109397] = 9, + sym_filesize_unit, + sym_duration_unit, + [114429] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(3105), 1, + sym_cell_path, + STATE(3778), 1, + sym_comment, + ACTIONS(7188), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [114454] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, + ACTIONS(2682), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2684), 1, anon_sym_COLON2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3623), 1, + ACTIONS(7190), 1, + anon_sym_alias, + ACTIONS(7192), 1, + anon_sym_const, + ACTIONS(7194), 1, + anon_sym_def, + ACTIONS(7196), 1, + anon_sym_use, + ACTIONS(7198), 1, + anon_sym_extern, + ACTIONS(7200), 1, + anon_sym_module, + STATE(3779), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, - sym__assignment_pattern, - [109425] = 6, + [114485] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1973), 1, + sym__space, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(7202), 1, + anon_sym_DOT_DOT2, + STATE(3780), 1, + sym_comment, + ACTIONS(1975), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7204), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114512] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1444), 1, sym__entry_separator, - ACTIONS(7048), 1, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(3884), 1, - sym_path, - STATE(3624), 2, + STATE(3781), 1, sym_comment, + STATE(3813), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + STATE(4188), 1, + sym_path, + STATE(4248), 1, + sym_cell_path, + ACTIONS(1442), 3, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, - [109447] = 5, + [114539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7051), 1, - anon_sym_DOT_DOT2, - STATE(3625), 1, + STATE(3782), 1, sym_comment, - ACTIONS(7053), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 4, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109467] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3626), 1, - sym_comment, - ACTIONS(1804), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 4, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [109485] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1513), 1, - sym_parameter_parens, - STATE(1514), 1, - sym_parameter_bracks, - STATE(3627), 1, - sym_comment, - STATE(3724), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109513] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1542), 1, - sym_parameter_parens, - STATE(1543), 1, - sym_parameter_bracks, - STATE(3628), 1, - sym_comment, - STATE(3651), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109541] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1544), 1, - sym_parameter_parens, - STATE(1545), 1, - sym_parameter_bracks, - STATE(3629), 1, - sym_comment, - STATE(3659), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109569] = 6, + [114558] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7061), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7063), 1, - aux_sym__immediate_decimal_token5, - STATE(3630), 1, + STATE(3783), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1852), 4, sym__space, anon_sym_LPAREN2, - ACTIONS(1728), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1854), 4, sym__newline, anon_sym_SEMI, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - [109591] = 6, + [114577] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7065), 1, - anon_sym_DOT, - ACTIONS(7067), 1, - aux_sym__immediate_decimal_token5, - STATE(3631), 1, - sym_comment, - ACTIONS(1736), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109613] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1866), 1, - sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7210), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(360), 1, sym_path, - STATE(3632), 1, + STATE(3784), 1, sym_comment, - STATE(3778), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4102), 1, + STATE(4572), 1, + sym_cell_path, + ACTIONS(7208), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [114602] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5237), 1, + anon_sym_DOT2, + STATE(720), 1, + sym_path, + STATE(1318), 1, sym_cell_path, - ACTIONS(1868), 2, + STATE(2414), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3785), 1, + sym_comment, + ACTIONS(7212), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [114627] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3786), 1, + sym_comment, + ACTIONS(1645), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1647), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [109639] = 9, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [114645] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1523), 1, + STATE(1562), 1, sym_parameter_parens, - STATE(1524), 1, + STATE(1563), 1, sym_parameter_bracks, - STATE(3633), 1, + STATE(3787), 1, sym_comment, - STATE(3713), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4582), 1, sym_long_flag, - [109667] = 5, - ACTIONS(3), 1, + [114673] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7071), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1956), 1, + sym__entry_separator, + ACTIONS(1958), 1, + anon_sym_RBRACE, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(7220), 1, anon_sym_DOT_DOT2, - STATE(3634), 1, + STATE(3788), 1, sym_comment, - ACTIONS(7073), 2, + ACTIONS(7222), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109687] = 5, + [114699] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7075), 1, - anon_sym_DOT_DOT2, - STATE(3635), 1, + ACTIONS(7214), 1, + anon_sym_LBRACK, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7218), 1, + anon_sym_DASH_DASH, + STATE(1564), 1, + sym_parameter_parens, + STATE(1565), 1, + sym_parameter_bracks, + STATE(3789), 1, sym_comment, - ACTIONS(7077), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109707] = 5, - ACTIONS(3), 1, + STATE(3797), 1, + aux_sym_decl_def_repeat1, + STATE(4582), 1, + sym_long_flag, + [114727] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7079), 1, - anon_sym_DOT_DOT2, - STATE(3636), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7190), 1, + anon_sym_alias, + ACTIONS(7192), 1, + anon_sym_const, + ACTIONS(7194), 1, + anon_sym_def, + ACTIONS(7196), 1, + anon_sym_use, + ACTIONS(7198), 1, + anon_sym_extern, + ACTIONS(7200), 1, + anon_sym_module, + STATE(3790), 1, sym_comment, - ACTIONS(7081), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109727] = 6, + [114755] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7083), 1, + ACTIONS(7224), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7085), 1, + ACTIONS(7226), 1, aux_sym__immediate_decimal_token5, - STATE(3637), 1, + STATE(3791), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1770), 2, + sym__space, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [109749] = 4, + ACTIONS(1772), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [114777] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3638), 1, - sym_comment, - ACTIONS(1874), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1876), 4, - anon_sym_RBRACK, + ACTIONS(866), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [109767] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(886), 1, sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7087), 1, + ACTIONS(7228), 1, anon_sym_DOT_DOT2, - STATE(3639), 1, + ACTIONS(7232), 1, + sym_filesize_unit, + ACTIONS(7234), 1, + sym_duration_unit, + STATE(3792), 1, sym_comment, - ACTIONS(7089), 2, + ACTIONS(7230), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109793] = 7, + [114803] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1460), 1, + ACTIONS(7161), 1, sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(3624), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3640), 1, + STATE(3793), 1, sym_comment, - STATE(3884), 1, + STATE(3813), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4188), 1, sym_path, - ACTIONS(1458), 3, + STATE(4593), 1, + sym_cell_path, + ACTIONS(7236), 2, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - [109817] = 9, + [114829] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1531), 1, + STATE(1533), 1, sym_parameter_parens, - STATE(1532), 1, + STATE(1534), 1, sym_parameter_bracks, - STATE(3641), 1, + STATE(3794), 1, sym_comment, - STATE(4039), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4582), 1, sym_long_flag, - [109845] = 9, + [114857] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1546), 1, + STATE(1535), 1, sym_parameter_parens, - STATE(1547), 1, + STATE(1536), 1, sym_parameter_bracks, - STATE(3642), 1, + STATE(3795), 1, sym_comment, - STATE(4039), 1, + STATE(3877), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4582), 1, sym_long_flag, - [109873] = 7, + [114885] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1772), 1, sym__unquoted_pattern, - ACTIONS(7091), 1, - anon_sym_DOT, - STATE(3643), 1, - sym_comment, - STATE(4179), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, + ACTIONS(7238), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [109897] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7093), 1, + ACTIONS(7240), 1, aux_sym__immediate_decimal_token5, - STATE(3644), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109917] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3645), 1, + STATE(3796), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 5, + ACTIONS(1770), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109935] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7095), 1, - anon_sym_RBRACK, - STATE(3646), 1, - sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5018), 1, - sym__table_body, - [109963] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1434), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(368), 1, - sym_cell_path, - STATE(3647), 1, - sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1432), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [109989] = 9, + [114907] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1548), 1, + STATE(1566), 1, sym_parameter_parens, - STATE(1549), 1, + STATE(1567), 1, sym_parameter_bracks, - STATE(3648), 1, + STATE(3797), 1, sym_comment, - STATE(3674), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4582), 1, sym_long_flag, - [110017] = 4, + [114935] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3649), 1, + STATE(3798), 1, sym_comment, - ACTIONS(1872), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 4, - anon_sym_LPAREN2, + ACTIONS(1878), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [110035] = 9, + ACTIONS(1880), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [114953] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(7097), 1, + ACTIONS(7242), 1, anon_sym_RBRACK, - STATE(3650), 1, + STATE(3799), 1, sym_comment, - STATE(4021), 1, + STATE(4190), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4694), 1, sym_val_list, - STATE(4577), 1, + STATE(4769), 1, aux_sym__table_body_repeat1, - STATE(4949), 1, + STATE(5319), 1, sym__table_body, - [110063] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1551), 1, - sym_parameter_parens, - STATE(1552), 1, - sym_parameter_bracks, - STATE(3651), 1, - sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110091] = 4, + [114981] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3652), 1, - sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(851), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110109] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6961), 1, - anon_sym_DOT2, - STATE(2258), 1, - sym_cell_path, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3653), 1, - sym_comment, - ACTIONS(1434), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [110133] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1576), 1, - sym_parameter_parens, - STATE(1604), 1, - sym_parameter_bracks, - STATE(3654), 1, + ACTIONS(7244), 1, + anon_sym_DOT, + STATE(3800), 1, sym_comment, - STATE(3727), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110161] = 8, + STATE(4430), 1, + sym__immediate_decimal, + ACTIONS(6497), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6499), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [115005] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3655), 1, + ACTIONS(7246), 1, + anon_sym_QMARK2, + ACTIONS(7248), 1, + anon_sym_BANG, + STATE(3801), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4214), 1, - sym_cell_path, - ACTIONS(1860), 2, + STATE(4348), 1, + sym__path_suffix, + ACTIONS(1456), 4, anon_sym_RBRACK, - anon_sym_RBRACE, - [110187] = 9, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [115027] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(7099), 1, + ACTIONS(7250), 1, anon_sym_RBRACK, - STATE(3656), 1, + STATE(3802), 1, sym_comment, - STATE(4021), 1, + STATE(4190), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4694), 1, sym_val_list, - STATE(4577), 1, + STATE(4769), 1, aux_sym__table_body_repeat1, - STATE(4955), 1, + STATE(5152), 1, sym__table_body, - [110215] = 9, + [115055] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1528), 1, + STATE(1558), 1, sym_parameter_parens, - STATE(1529), 1, + STATE(1559), 1, sym_parameter_bracks, - STATE(3657), 1, - sym_comment, - STATE(3708), 1, + STATE(3787), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(3803), 1, + sym_comment, + STATE(4582), 1, sym_long_flag, - [110243] = 9, + [115083] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1553), 1, - sym_parameter_parens, - STATE(1554), 1, - sym_parameter_bracks, - STATE(3658), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3804), 1, sym_comment, - STATE(3688), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110271] = 9, - ACTIONS(3), 1, + STATE(4482), 1, + sym__immediate_decimal, + ACTIONS(7254), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7256), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [115107] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1509), 1, - sym_parameter_parens, - STATE(1662), 1, - sym_parameter_bracks, - STATE(3659), 1, + STATE(3805), 1, sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110299] = 7, + ACTIONS(1772), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1770), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [115125] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6949), 1, + ACTIONS(1444), 1, + sym__entry_separator, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(3660), 1, - sym_comment, - STATE(3755), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, + STATE(360), 1, sym_path, - STATE(4421), 1, + STATE(372), 1, sym_cell_path, - ACTIONS(1860), 3, + STATE(3806), 1, + sym_comment, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1442), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [110323] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [115151] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3661), 1, + ACTIONS(886), 1, + anon_sym_LBRACE, + ACTIONS(1734), 1, + sym__unquoted_pattern, + ACTIONS(7260), 1, + anon_sym_DOT_DOT2, + ACTIONS(7264), 1, + sym_filesize_unit, + ACTIONS(7266), 1, + sym_duration_unit, + STATE(3807), 1, sym_comment, - ACTIONS(1641), 3, + ACTIONS(7262), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1643), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, + [115177] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7270), 1, anon_sym_DOT_DOT2, - [110341] = 9, - ACTIONS(103), 1, + STATE(3808), 1, + sym_comment, + ACTIONS(7272), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7268), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115197] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3662), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2937), 1, + sym_cell_path, + STATE(3809), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, - sym__assignment_pattern, - [110369] = 4, + ACTIONS(1882), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [115221] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3663), 1, + STATE(3810), 1, sym_comment, - ACTIONS(1822), 3, + ACTIONS(1858), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1824), 4, + ACTIONS(1860), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [110387] = 8, + [115239] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1878), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3664), 1, + ACTIONS(7274), 1, + anon_sym_DOT, + ACTIONS(7276), 1, + aux_sym__immediate_decimal_token5, + STATE(3811), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4113), 1, - sym_cell_path, - ACTIONS(1880), 2, + ACTIONS(1744), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1746), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [110413] = 9, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [115261] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(7101), 1, + ACTIONS(7278), 1, anon_sym_RBRACK, - STATE(3665), 1, + STATE(3812), 1, sym_comment, - STATE(4021), 1, + STATE(4190), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4694), 1, sym_val_list, - STATE(4577), 1, + STATE(4769), 1, aux_sym__table_body_repeat1, - STATE(5044), 1, + STATE(4951), 1, sym__table_body, - [110441] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1663), 1, - sym_parameter_parens, - STATE(1664), 1, - sym_parameter_bracks, - STATE(3641), 1, - aux_sym_decl_def_repeat1, - STATE(3666), 1, - sym_comment, - STATE(4547), 1, - sym_long_flag, - [110469] = 8, + [115289] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(1506), 1, sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3667), 1, + STATE(3813), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4096), 1, - sym_cell_path, - ACTIONS(1864), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [110495] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1878), 1, - sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, + STATE(3851), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3668), 1, - sym_comment, - STATE(3884), 1, + STATE(4188), 1, sym_path, - STATE(4113), 1, - sym_cell_path, - ACTIONS(1880), 2, + ACTIONS(1504), 3, anon_sym_RBRACK, + anon_sym_GT2, anon_sym_DOT_DOT, - [110521] = 8, + [115313] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3669), 1, + ACTIONS(7280), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7282), 1, + aux_sym__immediate_decimal_token5, + STATE(3814), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4096), 1, - sym_cell_path, - ACTIONS(1864), 2, + ACTIONS(1770), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1772), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [110547] = 9, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [115335] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(7103), 1, + ACTIONS(7284), 1, anon_sym_RBRACK, - STATE(3670), 1, + STATE(3815), 1, sym_comment, - STATE(4021), 1, + STATE(4190), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4694), 1, sym_val_list, - STATE(4577), 1, + STATE(4769), 1, aux_sym__table_body_repeat1, - STATE(5054), 1, + STATE(5204), 1, sym__table_body, - [110575] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7105), 1, - anon_sym_alias, - ACTIONS(7107), 1, - anon_sym_const, - ACTIONS(7109), 1, - anon_sym_def, - ACTIONS(7111), 1, - anon_sym_use, - ACTIONS(7113), 1, - anon_sym_extern, - ACTIONS(7115), 1, - anon_sym_module, - STATE(3671), 1, - sym_comment, - [110603] = 8, + [115363] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, + ACTIONS(1635), 1, sym__unquoted_pattern_in_list, - ACTIONS(6724), 1, + ACTIONS(1956), 1, + sym__entry_separator, + ACTIONS(1958), 1, + anon_sym_RBRACK, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(7286), 1, anon_sym_DOT_DOT2, - ACTIONS(6728), 1, - sym_filesize_unit, - ACTIONS(6730), 1, - sym_duration_unit, - STATE(3672), 1, + STATE(3816), 1, sym_comment, - ACTIONS(6726), 2, + ACTIONS(7288), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110629] = 8, - ACTIONS(103), 1, + [115389] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACK, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7117), 1, + STATE(3817), 1, + sym_comment, + ACTIONS(1854), 2, anon_sym_DOT_DOT2, - STATE(3673), 1, + sym__unquoted_pattern, + ACTIONS(1852), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115407] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7214), 1, + anon_sym_LBRACK, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7218), 1, + anon_sym_DASH_DASH, + STATE(1537), 1, + sym_parameter_parens, + STATE(1538), 1, + sym_parameter_bracks, + STATE(3818), 1, sym_comment, - ACTIONS(7119), 2, + STATE(4098), 1, + aux_sym_decl_def_repeat1, + STATE(4582), 1, + sym_long_flag, + [115435] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(3206), 1, + sym_cell_path, + STATE(3819), 1, + sym_comment, + ACTIONS(1888), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [115459] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7214), 1, + anon_sym_LBRACK, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7218), 1, + anon_sym_DASH_DASH, + STATE(1609), 1, + sym_parameter_bracks, + STATE(1690), 1, + sym_parameter_parens, + STATE(3820), 1, + sym_comment, + STATE(3826), 1, + aux_sym_decl_def_repeat1, + STATE(4582), 1, + sym_long_flag, + [115487] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3821), 1, + sym_comment, + ACTIONS(1854), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1852), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110655] = 9, + sym__entry_separator, + [115505] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5416), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3822), 1, + sym_comment, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4692), 1, + sym_cell_path, + ACTIONS(5414), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [115531] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1555), 1, - sym_parameter_parens, STATE(1556), 1, + sym_parameter_parens, + STATE(1557), 1, sym_parameter_bracks, - STATE(3674), 1, + STATE(3823), 1, sym_comment, - STATE(4039), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4582), 1, sym_long_flag, - [110683] = 9, + [115559] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(7121), 1, + ACTIONS(7290), 1, anon_sym_RBRACK, - STATE(3675), 1, + STATE(3824), 1, sym_comment, - STATE(4021), 1, + STATE(4190), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4694), 1, sym_val_list, - STATE(4577), 1, + STATE(4769), 1, aux_sym__table_body_repeat1, - STATE(4993), 1, + STATE(5248), 1, sym__table_body, - [110711] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(7123), 1, - anon_sym_DOT_DOT2, - ACTIONS(7127), 1, - sym_filesize_unit, - ACTIONS(7129), 1, - sym_duration_unit, - STATE(3676), 1, - sym_comment, - ACTIONS(7125), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110737] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7131), 1, - anon_sym_QMARK2, - ACTIONS(7133), 1, - anon_sym_BANG, - STATE(3677), 1, - sym_comment, - STATE(4266), 1, - sym__path_suffix, - ACTIONS(1446), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [110759] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7135), 1, - anon_sym_DOT, - ACTIONS(7137), 1, - aux_sym__immediate_decimal_token5, - STATE(3678), 1, - sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [110781] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_DOT, - ACTIONS(7141), 1, - aux_sym__immediate_decimal_token5, - STATE(3679), 1, - sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [110803] = 6, + [115587] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7143), 1, + ACTIONS(7292), 1, anon_sym_DOT_DOT2, - STATE(3680), 1, + STATE(3825), 1, sym_comment, - ACTIONS(7145), 2, + ACTIONS(7294), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 3, + ACTIONS(2154), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [110825] = 6, + [115607] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7147), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7149), 1, - aux_sym__immediate_decimal_token5, - STATE(3681), 1, + ACTIONS(7214), 1, + anon_sym_LBRACK, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7218), 1, + anon_sym_DASH_DASH, + STATE(1686), 1, + sym_parameter_parens, + STATE(1687), 1, + sym_parameter_bracks, + STATE(3826), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110847] = 8, + STATE(4098), 1, + aux_sym_decl_def_repeat1, + STATE(4582), 1, + sym_long_flag, + [115635] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(1912), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(360), 1, sym_path, - STATE(3682), 1, + STATE(3827), 1, sym_comment, - STATE(3778), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4176), 1, + STATE(4228), 1, sym_cell_path, - ACTIONS(1884), 2, + ACTIONS(1914), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [110873] = 4, - ACTIONS(3), 1, + [115661] = 9, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3683), 1, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7296), 1, + anon_sym_alias, + ACTIONS(7298), 1, + anon_sym_const, + ACTIONS(7300), 1, + anon_sym_def, + ACTIONS(7302), 1, + anon_sym_use, + ACTIONS(7304), 1, + anon_sym_extern, + ACTIONS(7306), 1, + anon_sym_module, + STATE(3828), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110891] = 8, + [115689] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5233), 1, + ACTIONS(5375), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(360), 1, sym_path, - STATE(3684), 1, + STATE(3829), 1, sym_comment, - STATE(3778), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4483), 1, + STATE(4770), 1, sym_cell_path, - ACTIONS(5231), 2, + ACTIONS(5373), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [110917] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7151), 1, - anon_sym_RBRACK, - STATE(3685), 1, - sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(4797), 1, - sym__table_body, - [110945] = 9, + [115715] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - ACTIONS(7153), 1, - anon_sym_alias, - ACTIONS(7155), 1, - anon_sym_const, - STATE(3686), 1, - sym_comment, - [110973] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7157), 1, - anon_sym_DOT_DOT2, - STATE(3687), 1, + ACTIONS(5342), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3830), 1, sym_comment, - ACTIONS(7159), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110995] = 9, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4775), 1, + sym_cell_path, + ACTIONS(5340), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [115741] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1557), 1, + STATE(1540), 1, sym_parameter_parens, - STATE(1558), 1, + STATE(1541), 1, sym_parameter_bracks, - STATE(3688), 1, + STATE(3831), 1, sym_comment, - STATE(4039), 1, + STATE(3862), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4582), 1, sym_long_flag, - [111023] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3689), 1, - sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, - sym__assignment_pattern, - [111051] = 7, + [115769] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(7308), 1, anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(3032), 1, + STATE(2293), 1, sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3690), 1, + STATE(2500), 1, + sym_path, + STATE(3832), 1, sym_comment, - ACTIONS(1878), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [111075] = 9, + STATE(4019), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1444), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [115793] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1559), 1, + STATE(1522), 1, sym_parameter_parens, - STATE(1560), 1, + STATE(1523), 1, sym_parameter_bracks, - STATE(3691), 1, + STATE(3833), 1, sym_comment, - STATE(3706), 1, + STATE(3852), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4582), 1, sym_long_flag, - [111103] = 8, - ACTIONS(103), 1, + [115821] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5273), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3692), 1, + ACTIONS(1746), 1, + sym__unquoted_pattern, + ACTIONS(7310), 1, + anon_sym_DOT, + ACTIONS(7312), 1, + aux_sym__immediate_decimal_token5, + STATE(3834), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4514), 1, - sym_cell_path, - ACTIONS(5271), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [111129] = 8, - ACTIONS(103), 1, + ACTIONS(1744), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115843] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(7107), 1, + aux_sym__immediate_decimal_token5, + STATE(3835), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(7161), 1, + ACTIONS(749), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115863] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(7314), 1, anon_sym_DOT_DOT2, - STATE(3693), 1, + STATE(3836), 1, sym_comment, - ACTIONS(7163), 2, + ACTIONS(7316), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111155] = 4, + ACTIONS(1956), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115885] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3946), 1, + anon_sym_LBRACK, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(7318), 1, + anon_sym_RBRACK, + STATE(3837), 1, + sym_comment, + STATE(4190), 1, + aux_sym__types_body_repeat1, + STATE(4694), 1, + sym_val_list, + STATE(4769), 1, + aux_sym__table_body_repeat1, + STATE(5023), 1, + sym__table_body, + [115913] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3694), 1, + STATE(3838), 1, sym_comment, - ACTIONS(1728), 3, + ACTIONS(1872), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1726), 4, + ACTIONS(1870), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [111173] = 9, - ACTIONS(103), 1, + [115931] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6974), 1, - anon_sym_alias, - ACTIONS(6976), 1, - anon_sym_const, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - STATE(3695), 1, + ACTIONS(7320), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7322), 1, + aux_sym__immediate_decimal_token5, + STATE(3839), 1, sym_comment, - [111201] = 8, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115953] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7030), 1, + ACTIONS(1888), 1, sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(3813), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3696), 1, + STATE(3840), 1, sym_comment, - STATE(3884), 1, + STATE(4188), 1, sym_path, - STATE(4478), 1, + STATE(4226), 1, sym_cell_path, - ACTIONS(7165), 2, + ACTIONS(1890), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [111227] = 9, + [115979] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(7167), 1, + ACTIONS(7324), 1, anon_sym_RBRACK, - STATE(3697), 1, + STATE(3841), 1, sym_comment, - STATE(4021), 1, + STATE(4190), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4694), 1, sym_val_list, - STATE(4577), 1, + STATE(4769), 1, aux_sym__table_body_repeat1, - STATE(5098), 1, + STATE(5099), 1, sym__table_body, - [111255] = 7, + [116007] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7169), 1, - anon_sym_DOT, - STATE(3698), 1, + ACTIONS(3946), 1, + anon_sym_LBRACK, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(7326), 1, + anon_sym_RBRACK, + STATE(3842), 1, sym_comment, - STATE(4088), 1, - sym__immediate_decimal, - ACTIONS(7171), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7173), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [111279] = 7, - ACTIONS(3), 1, + STATE(4190), 1, + aux_sym__types_body_repeat1, + STATE(4694), 1, + sym_val_list, + STATE(4769), 1, + aux_sym__table_body_repeat1, + STATE(4978), 1, + sym__table_body, + [116035] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(1896), 1, + sym__entry_separator, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(3813), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3843), 1, + sym_comment, + STATE(4188), 1, sym_path, - STATE(2826), 1, + STATE(4250), 1, sym_cell_path, - STATE(3592), 1, + ACTIONS(1898), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [116061] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1900), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3844), 1, + sym_comment, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3699), 1, + STATE(4294), 1, + sym_cell_path, + ACTIONS(1902), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [116087] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7330), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(3845), 1, sym_comment, - ACTIONS(1850), 3, + STATE(4186), 1, + sym__variable_name, + STATE(4305), 1, + sym__assignment_pattern, + [116115] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7214), 1, anon_sym_LBRACK, + ACTIONS(7216), 1, anon_sym_LPAREN, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - [111303] = 6, - ACTIONS(3), 1, + STATE(1560), 1, + sym_parameter_parens, + STATE(1561), 1, + sym_parameter_bracks, + STATE(3846), 1, + sym_comment, + STATE(4098), 1, + aux_sym_decl_def_repeat1, + STATE(4582), 1, + sym_long_flag, + [116143] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7175), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7177), 1, + ACTIONS(7332), 1, + anon_sym_DOT, + ACTIONS(7334), 1, aux_sym__immediate_decimal_token5, - STATE(3700), 1, + STATE(3847), 1, sym_comment, - ACTIONS(1726), 4, - anon_sym_if, + ACTIONS(1744), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1746), 3, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111325] = 9, - ACTIONS(103), 1, + anon_sym_SEMI, + sym__unquoted_pattern, + [116165] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7038), 1, - anon_sym_DOT2, - ACTIONS(7165), 1, - anon_sym_DOT_DOT, - ACTIONS(7179), 1, - anon_sym_RBRACK, - ACTIONS(7183), 1, - sym__entry_separator, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3701), 1, + STATE(3848), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4449), 1, - sym_cell_path, - [111353] = 9, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116183] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(7187), 1, + ACTIONS(7336), 1, anon_sym_RBRACK, - STATE(3702), 1, + STATE(3849), 1, sym_comment, - STATE(4021), 1, + STATE(4190), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4694), 1, sym_val_list, - STATE(4577), 1, + STATE(4769), 1, aux_sym__table_body_repeat1, - STATE(5180), 1, + STATE(5148), 1, sym__table_body, - [111381] = 7, - ACTIONS(3), 1, + [116211] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2934), 1, - sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3703), 1, + STATE(3850), 1, sym_comment, - ACTIONS(1862), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [111405] = 7, + ACTIONS(1892), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1894), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [116229] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6949), 1, + ACTIONS(1510), 1, + sym__entry_separator, + ACTIONS(7338), 1, anon_sym_DOT2, - STATE(3704), 1, + STATE(4188), 1, + sym_path, + STATE(3851), 2, sym_comment, - STATE(3755), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, - sym_path, - STATE(4368), 1, - sym_cell_path, - ACTIONS(1884), 3, + ACTIONS(1508), 3, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [111429] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3705), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111447] = 9, + anon_sym_GT2, + anon_sym_DOT_DOT, + [116251] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1561), 1, + STATE(1529), 1, sym_parameter_parens, - STATE(1562), 1, + STATE(1530), 1, sym_parameter_bracks, - STATE(3706), 1, + STATE(3852), 1, sym_comment, - STATE(4039), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4582), 1, sym_long_flag, - [111475] = 9, + [116279] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6944), 1, - anon_sym_RBRACK, - ACTIONS(6947), 1, - anon_sym_DOT_DOT, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7189), 1, + ACTIONS(1973), 1, sym__entry_separator, - STATE(339), 1, - sym_path, - STATE(3707), 1, + ACTIONS(1975), 1, + anon_sym_RBRACE, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7341), 1, + anon_sym_DOT_DOT2, + STATE(3853), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4176), 1, - sym_cell_path, - [111503] = 9, + ACTIONS(7343), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116305] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1516), 1, + STATE(1549), 1, sym_parameter_parens, - STATE(1517), 1, + STATE(1550), 1, sym_parameter_bracks, - STATE(3708), 1, + STATE(3854), 1, sym_comment, - STATE(4039), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4582), 1, sym_long_flag, - [111531] = 9, + [116333] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7192), 1, - anon_sym_RBRACK, - STATE(3709), 1, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7218), 1, + anon_sym_DASH_DASH, + STATE(1531), 1, + sym_parameter_parens, + STATE(1532), 1, + sym_parameter_bracks, + STATE(3818), 1, + aux_sym_decl_def_repeat1, + STATE(3855), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5051), 1, - sym__table_body, - [111559] = 8, - ACTIONS(3), 1, + STATE(4582), 1, + sym_long_flag, + [116361] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_LBRACE, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(7194), 1, + ACTIONS(1973), 1, + sym__entry_separator, + ACTIONS(1975), 1, + anon_sym_RBRACK, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7345), 1, anon_sym_DOT_DOT2, - ACTIONS(7198), 1, - sym_filesize_unit, - ACTIONS(7200), 1, - sym_duration_unit, - STATE(3710), 1, + STATE(3856), 1, sym_comment, - ACTIONS(7196), 2, + ACTIONS(7347), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111585] = 8, + [116387] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3711), 1, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7349), 1, + anon_sym_DOLLAR, + STATE(2824), 1, + sym__variable_name, + STATE(2825), 1, + sym_val_variable, + STATE(3857), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4554), 1, - sym_cell_path, - ACTIONS(5249), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [111611] = 8, + STATE(4303), 1, + sym__assignment_pattern, + [116415] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7214), 1, + anon_sym_LBRACK, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7218), 1, + anon_sym_DASH_DASH, + STATE(1543), 1, + sym_parameter_parens, + STATE(1544), 1, + sym_parameter_bracks, + STATE(3858), 1, + sym_comment, + STATE(3874), 1, + aux_sym_decl_def_repeat1, + STATE(4582), 1, + sym_long_flag, + [116443] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6963), 1, - sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(3640), 1, + ACTIONS(7236), 1, + anon_sym_DOT_DOT, + ACTIONS(7351), 1, + anon_sym_RBRACK, + ACTIONS(7355), 1, + sym__entry_separator, + STATE(3813), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3712), 1, + STATE(3859), 1, sym_comment, - STATE(3884), 1, + STATE(4188), 1, sym_path, - STATE(4513), 1, + STATE(4565), 1, sym_cell_path, - ACTIONS(7202), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [111637] = 9, + [116471] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3860), 1, + sym_comment, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1870), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116489] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7359), 1, + anon_sym_DOT, + ACTIONS(7361), 1, + aux_sym__immediate_decimal_token5, + STATE(3861), 1, + sym_comment, + ACTIONS(1746), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116511] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1533), 1, + STATE(1545), 1, sym_parameter_parens, - STATE(1534), 1, + STATE(1546), 1, sym_parameter_bracks, - STATE(3713), 1, + STATE(3862), 1, sym_comment, - STATE(4039), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4582), 1, sym_long_flag, - [111665] = 5, + [116539] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7206), 1, - anon_sym_DOT_DOT2, - STATE(3714), 1, + ACTIONS(7214), 1, + anon_sym_LBRACK, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7218), 1, + anon_sym_DASH_DASH, + STATE(1547), 1, + sym_parameter_parens, + STATE(1548), 1, + sym_parameter_bracks, + STATE(3823), 1, + aux_sym_decl_def_repeat1, + STATE(3863), 1, + sym_comment, + STATE(4582), 1, + sym_long_flag, + [116567] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3864), 1, sym_comment, - ACTIONS(7208), 2, + ACTIONS(860), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(862), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7204), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111685] = 5, + sym_filesize_unit, + sym_duration_unit, + [116585] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7206), 1, + ACTIONS(7270), 1, anon_sym_DOT_DOT2, - STATE(3715), 1, + STATE(3865), 1, sym_comment, - ACTIONS(7208), 2, + ACTIONS(7272), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7210), 4, + ACTIONS(7363), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [111705] = 9, + [116605] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1538), 1, - sym_parameter_parens, - STATE(1539), 1, - sym_parameter_bracks, - STATE(3642), 1, - aux_sym_decl_def_repeat1, - STATE(3716), 1, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(7365), 1, + anon_sym_RBRACK, + STATE(3866), 1, sym_comment, - STATE(4547), 1, - sym_long_flag, - [111733] = 4, + STATE(4190), 1, + aux_sym__types_body_repeat1, + STATE(4694), 1, + sym_val_list, + STATE(4769), 1, + aux_sym__table_body_repeat1, + STATE(5006), 1, + sym__table_body, + [116633] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7330), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(3867), 1, + sym_comment, + STATE(4186), 1, + sym__variable_name, + STATE(4304), 1, + sym__assignment_pattern, + [116661] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7133), 1, + anon_sym_DOT_DOT, + ACTIONS(7169), 1, + anon_sym_RBRACK, + ACTIONS(7258), 1, + anon_sym_DOT2, + ACTIONS(7367), 1, + sym__entry_separator, + STATE(360), 1, + sym_path, + STATE(3868), 1, + sym_comment, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4294), 1, + sym_cell_path, + [116689] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3717), 1, + ACTIONS(7370), 1, + aux_sym__immediate_decimal_token5, + STATE(3869), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, + sym__unquoted_pattern_in_record, + ACTIONS(773), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [111751] = 8, + [116709] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(7372), 1, + anon_sym_DOT_DOT2, + STATE(3870), 1, + sym_comment, + ACTIONS(7374), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1973), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116731] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1850), 1, + ACTIONS(1862), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(360), 1, sym_path, - STATE(3718), 1, + STATE(3871), 1, sym_comment, - STATE(3778), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4335), 1, + STATE(4314), 1, sym_cell_path, - ACTIONS(1853), 2, + ACTIONS(1864), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [111777] = 8, - ACTIONS(103), 1, + [116757] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACK, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(7212), 1, - anon_sym_DOT_DOT2, - STATE(3719), 1, + STATE(3872), 1, sym_comment, - ACTIONS(7214), 2, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111803] = 9, + sym_filesize_unit, + sym_duration_unit, + [116775] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - ACTIONS(7216), 1, - anon_sym_alias, - ACTIONS(7218), 1, - anon_sym_const, - STATE(3720), 1, + ACTIONS(7172), 1, + anon_sym_DOT2, + STATE(3873), 1, sym_comment, - [111831] = 9, + STATE(3910), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4272), 1, + sym_path, + STATE(4741), 1, + sym_cell_path, + ACTIONS(1864), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [116799] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1540), 1, + STATE(1551), 1, sym_parameter_parens, - STATE(1541), 1, + STATE(1552), 1, sym_parameter_bracks, - STATE(3721), 1, + STATE(3874), 1, sym_comment, - STATE(4039), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4582), 1, sym_long_flag, - [111859] = 9, - ACTIONS(103), 1, + [116827] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - ACTIONS(7220), 1, - anon_sym_alias, - ACTIONS(7222), 1, - anon_sym_const, - STATE(3722), 1, + ACTIONS(7214), 1, + anon_sym_LBRACK, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7218), 1, + anon_sym_DASH_DASH, + STATE(1553), 1, + sym_parameter_parens, + STATE(1554), 1, + sym_parameter_bracks, + STATE(3846), 1, + aux_sym_decl_def_repeat1, + STATE(3875), 1, sym_comment, - [111887] = 5, + STATE(4582), 1, + sym_long_flag, + [116855] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7024), 1, - aux_sym__immediate_decimal_token5, - STATE(3723), 1, - sym_comment, - ACTIONS(739), 2, + ACTIONS(7376), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 4, + STATE(3876), 1, + sym_comment, + ACTIONS(7378), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111907] = 9, + ACTIONS(2102), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116875] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1521), 1, + STATE(1524), 1, sym_parameter_parens, - STATE(1522), 1, + STATE(1525), 1, sym_parameter_bracks, - STATE(3724), 1, + STATE(3877), 1, sym_comment, - STATE(4039), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4582), 1, + sym_long_flag, + [116903] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7214), 1, + anon_sym_LBRACK, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7218), 1, + anon_sym_DASH_DASH, + STATE(1688), 1, + sym_parameter_parens, + STATE(1689), 1, + sym_parameter_bracks, + STATE(3854), 1, + aux_sym_decl_def_repeat1, + STATE(3878), 1, + sym_comment, + STATE(4582), 1, sym_long_flag, - [111935] = 9, + [116931] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7380), 1, + anon_sym_DOT_DOT2, + STATE(3879), 1, + sym_comment, + ACTIONS(7382), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2110), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116951] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, + ACTIONS(7194), 1, anon_sym_def, - ACTIONS(6980), 1, + ACTIONS(7196), 1, anon_sym_use, - ACTIONS(6982), 1, + ACTIONS(7198), 1, anon_sym_extern, - ACTIONS(6984), 1, + ACTIONS(7200), 1, anon_sym_module, - ACTIONS(7224), 1, + ACTIONS(7384), 1, anon_sym_alias, - ACTIONS(7226), 1, + ACTIONS(7386), 1, anon_sym_const, - STATE(3725), 1, - sym_comment, - [111963] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3726), 1, + STATE(3880), 1, sym_comment, - ACTIONS(1886), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1888), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [111981] = 9, + [116979] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(3029), 1, + sym_cell_path, + STATE(3881), 1, + sym_comment, + ACTIONS(1896), 3, anon_sym_LBRACK, - ACTIONS(7057), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, anon_sym_DASH_DASH, - STATE(1526), 1, - sym_parameter_parens, - STATE(1527), 1, - sym_parameter_bracks, - STATE(3727), 1, - sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [112009] = 9, + [117003] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(7228), 1, + ACTIONS(7388), 1, anon_sym_RBRACK, - STATE(3728), 1, + STATE(3882), 1, sym_comment, - STATE(4021), 1, + STATE(4190), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4694), 1, sym_val_list, - STATE(4577), 1, + STATE(4769), 1, aux_sym__table_body_repeat1, - STATE(4975), 1, + STATE(5326), 1, sym__table_body, - [112037] = 9, + [117031] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7194), 1, + anon_sym_def, + ACTIONS(7196), 1, + anon_sym_use, + ACTIONS(7198), 1, + anon_sym_extern, + ACTIONS(7200), 1, + anon_sym_module, + ACTIONS(7390), 1, + anon_sym_alias, + ACTIONS(7392), 1, + anon_sym_const, + STATE(3883), 1, + sym_comment, + [117059] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1535), 1, + STATE(1681), 1, sym_parameter_parens, - STATE(1536), 1, + STATE(1682), 1, sym_parameter_bracks, - STATE(3721), 1, + STATE(3794), 1, aux_sym_decl_def_repeat1, - STATE(3729), 1, + STATE(3884), 1, sym_comment, - STATE(4547), 1, + STATE(4582), 1, sym_long_flag, - [112065] = 4, - ACTIONS(3), 1, + [117087] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3730), 1, + ACTIONS(7172), 1, + anon_sym_DOT2, + STATE(3885), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [112083] = 8, + STATE(3910), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4272), 1, + sym_path, + STATE(4655), 1, + sym_cell_path, + ACTIONS(1902), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [117111] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3731), 1, - sym_comment, - STATE(3933), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4383), 1, - sym__assignment_pattern, - [112108] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3340), 1, - sym__blosure, - STATE(3732), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112131] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(57), 1, - anon_sym_AT, - STATE(3733), 1, - sym_comment, - STATE(3803), 1, - aux_sym_attribute_list_repeat1, - STATE(4624), 1, - sym_attribute, - ACTIONS(7232), 3, - anon_sym_export, + ACTIONS(7194), 1, anon_sym_def, + ACTIONS(7196), 1, + anon_sym_use, + ACTIONS(7198), 1, anon_sym_extern, - [112152] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3340), 1, - sym__blosure, - STATE(3734), 1, + ACTIONS(7200), 1, + anon_sym_module, + ACTIONS(7394), 1, + anon_sym_alias, + ACTIONS(7396), 1, + anon_sym_const, + STATE(3886), 1, sym_comment, - STATE(3788), 1, - aux_sym__repeat_newline, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112175] = 7, - ACTIONS(3), 1, + [117139] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3341), 1, - sym__blosure, - STATE(3735), 1, + ACTIONS(1896), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3887), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112198] = 7, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4250), 1, + sym_cell_path, + ACTIONS(1898), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117165] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3341), 1, - sym__blosure, - STATE(3736), 1, - sym_comment, - STATE(3790), 1, - aux_sym__repeat_newline, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112221] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5338), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - ACTIONS(7236), 1, - sym_short_flag_identifier, - STATE(3073), 1, - sym__flag_equals_value, - STATE(3737), 1, + ACTIONS(7398), 1, + anon_sym_DOT_DOT2, + STATE(3888), 1, sym_comment, - ACTIONS(5336), 2, + ACTIONS(7400), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2118), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [112244] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117185] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, - sym__space, - ACTIONS(7238), 1, + ACTIONS(886), 1, + sym__entry_separator, + ACTIONS(6479), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6959), 1, anon_sym_DOT_DOT2, - STATE(3738), 1, + ACTIONS(6963), 1, + sym_filesize_unit, + ACTIONS(6965), 1, + sym_duration_unit, + STATE(3889), 1, sym_comment, - ACTIONS(5344), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7240), 2, + ACTIONS(6961), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112265] = 4, - ACTIONS(3), 1, + [117211] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7242), 1, - anon_sym_LT, - STATE(3739), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7194), 1, + anon_sym_def, + ACTIONS(7196), 1, + anon_sym_use, + ACTIONS(7198), 1, + anon_sym_extern, + ACTIONS(7200), 1, + anon_sym_module, + ACTIONS(7402), 1, + anon_sym_alias, + ACTIONS(7404), 1, + anon_sym_const, + STATE(3890), 1, sym_comment, - ACTIONS(5920), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [112282] = 4, + [117239] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7244), 1, - anon_sym_LT, - STATE(3740), 1, + STATE(3891), 1, sym_comment, - ACTIONS(5920), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 5, anon_sym_LBRACE, - [112299] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7246), 1, - anon_sym_DOT, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token5, - STATE(3741), 1, - sym_comment, - ACTIONS(1736), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [112320] = 6, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [117257] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7250), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - aux_sym__immediate_decimal_token5, - STATE(3742), 1, + ACTIONS(1888), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3892), 1, sym_comment, - ACTIONS(1736), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [112341] = 8, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4226), 1, + sym_cell_path, + ACTIONS(1890), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117283] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3743), 1, + ACTIONS(1882), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3893), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, - sym__assignment_pattern, - [112366] = 8, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4446), 1, + sym_cell_path, + ACTIONS(1885), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117309] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3744), 1, + ACTIONS(7113), 1, + sym__entry_separator, + ACTIONS(7206), 1, + anon_sym_DOT2, + STATE(3813), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3894), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, - sym__assignment_pattern, - [112391] = 8, + STATE(4188), 1, + sym_path, + STATE(4721), 1, + sym_cell_path, + ACTIONS(7406), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [117335] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2829), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7408), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7410), 1, anon_sym_DOLLAR, - STATE(3745), 1, - sym_comment, - STATE(3897), 1, + STATE(2872), 1, sym__variable_name, - STATE(4060), 1, + STATE(3051), 1, sym_val_variable, - STATE(4252), 1, + STATE(3895), 1, + sym_comment, + STATE(4689), 1, sym__assignment_pattern, - [112416] = 6, + [117360] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7256), 1, + ACTIONS(5418), 1, + anon_sym_RBRACK, + ACTIONS(5420), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3896), 1, + sym_comment, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4911), 1, + sym_cell_path, + [117385] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7412), 1, aux_sym__immediate_decimal_token5, - STATE(3746), 1, + STATE(3897), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [112437] = 7, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117404] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(447), 1, + anon_sym_RPAREN, + ACTIONS(7414), 1, + sym__newline, + ACTIONS(7416), 1, + anon_sym_SEMI, + STATE(1369), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3898), 1, + sym_comment, + STATE(4398), 1, + aux_sym__block_body_repeat1, + STATE(4562), 1, + aux_sym__repeat_newline, + [117429] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7262), 1, + ACTIONS(7422), 1, anon_sym_DQUOTE2, - STATE(3747), 1, + STATE(3899), 1, sym_comment, - STATE(3752), 1, + STATE(3903), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [112460] = 7, + [117452] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6430), 1, + ACTIONS(6497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7264), 1, + ACTIONS(7424), 1, aux_sym_unquoted_token2, - STATE(3748), 1, + STATE(3900), 1, sym_comment, - STATE(4133), 1, + STATE(4426), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6983), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [112483] = 7, + [117475] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6664), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6833), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7264), 1, + ACTIONS(7424), 1, aux_sym_unquoted_token2, - STATE(3749), 1, + STATE(3901), 1, sym_comment, - STATE(4996), 1, + STATE(5071), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6835), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [112506] = 6, + [117498] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(4203), 1, anon_sym_DOT_DOT2, - ACTIONS(7264), 1, + ACTIONS(7424), 1, sym__unquoted_pattern, - STATE(3750), 1, + STATE(3902), 1, sym_comment, - ACTIONS(4141), 2, + ACTIONS(4205), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7266), 2, + ACTIONS(7426), 2, sym_filesize_unit, sym_duration_unit, - [112527] = 6, + [117519] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7418), 1, + anon_sym_LPAREN, + ACTIONS(7428), 1, + anon_sym_DQUOTE2, + STATE(3903), 1, + sym_comment, + STATE(3926), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4424), 1, + sym_expr_interpolated, + ACTIONS(7420), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [117542] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(3751), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_record, + STATE(3904), 1, sym_comment, - STATE(4989), 1, + STATE(5010), 1, sym__immediate_decimal, - ACTIONS(6478), 2, + ACTIONS(7430), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, + ACTIONS(7432), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [112548] = 7, + [117563] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(7434), 1, + anon_sym_LBRACE, + STATE(3481), 1, + sym__blosure, + STATE(3905), 1, + sym_comment, + STATE(4044), 1, + aux_sym__repeat_newline, + STATE(3288), 2, + sym_block, + sym_val_closure, + [117586] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7268), 1, - anon_sym_DQUOTE2, - STATE(3752), 1, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7330), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(3906), 1, sym_comment, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [112571] = 5, + STATE(4066), 1, + sym__variable_name, + STATE(4691), 1, + sym__assignment_pattern, + [117611] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6670), 1, + anon_sym_LPAREN2, + ACTIONS(7438), 1, + sym__entry_separator, + STATE(2263), 1, + aux_sym__types_body_repeat2, + STATE(3907), 1, + sym_comment, + STATE(4867), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7436), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [117634] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3753), 1, + STATE(3908), 1, sym_comment, - STATE(4324), 1, + STATE(4329), 1, sym_block, - ACTIONS(7270), 4, + ACTIONS(7441), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [112590] = 5, + [117653] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3754), 1, + STATE(3909), 1, sym_comment, STATE(4330), 1, sym_block, - ACTIONS(7270), 4, + ACTIONS(7441), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [112609] = 6, + [117672] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6949), 1, + ACTIONS(7172), 1, anon_sym_DOT2, - STATE(3755), 1, + STATE(3910), 1, sym_comment, - STATE(3758), 1, + STATE(3914), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, + STATE(4272), 1, sym_path, - ACTIONS(1458), 3, + ACTIONS(1504), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [112630] = 6, + [117693] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7204), 1, - sym__entry_separator, - ACTIONS(7274), 1, - anon_sym_DOT_DOT2, - STATE(3756), 1, + ACTIONS(7443), 1, + anon_sym_DOT, + ACTIONS(7445), 1, + aux_sym__immediate_decimal_token5, + STATE(3911), 1, sym_comment, - ACTIONS(7272), 2, + ACTIONS(1744), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1746), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7276), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [112651] = 6, + sym__unquoted_pattern_in_list, + [117714] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(7258), 1, + anon_sym_DOT2, + ACTIONS(7447), 1, + anon_sym_RBRACE, + ACTIONS(7449), 1, sym__entry_separator, - ACTIONS(7274), 1, - anon_sym_DOT_DOT2, - STATE(3757), 1, + STATE(360), 1, + sym_path, + STATE(3912), 1, sym_comment, - ACTIONS(7276), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7278), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [112672] = 5, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4809), 1, + sym_cell_path, + [117739] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7280), 1, + ACTIONS(3669), 1, + sym__entry_separator, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(4108), 1, + ACTIONS(7451), 1, + anon_sym_RBRACE, + STATE(360), 1, + sym_path, + STATE(3913), 1, + sym_comment, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4446), 1, + sym_cell_path, + [117764] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7455), 1, + anon_sym_DOT2, + STATE(4272), 1, sym_path, - STATE(3758), 2, + STATE(3914), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(1508), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [112691] = 5, - ACTIONS(3), 1, + [117783] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7283), 1, - aux_sym__immediate_decimal_token5, - STATE(3759), 1, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7330), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(3915), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [112710] = 7, - ACTIONS(103), 1, + STATE(4066), 1, + sym__variable_name, + STATE(4650), 1, + sym__assignment_pattern, + [117808] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7285), 1, - anon_sym_DQUOTE2, - STATE(3760), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2937), 1, + sym_cell_path, + STATE(3916), 1, sym_comment, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [112733] = 7, + ACTIONS(5354), 2, + anon_sym_EQ, + anon_sym_GT2, + [117831] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7434), 1, anon_sym_LBRACE, - STATE(3247), 1, - sym__blosure, - STATE(3732), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3761), 1, + STATE(3491), 1, + sym__blosure, + STATE(3917), 1, sym_comment, - STATE(3113), 2, + STATE(3288), 2, sym_block, sym_val_closure, - [112756] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7287), 1, - anon_sym_if, - ACTIONS(7289), 1, - sym__newline, - ACTIONS(7291), 1, - anon_sym_PIPE, - ACTIONS(7293), 1, - anon_sym_EQ_GT, - STATE(3762), 1, - sym_comment, - STATE(4182), 1, - aux_sym_match_pattern_repeat1, - STATE(4917), 1, - sym_match_guard, - [112781] = 7, + [117854] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7434), 1, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3272), 1, + STATE(3491), 1, sym__blosure, - STATE(3763), 1, + STATE(3918), 1, sym_comment, - STATE(3113), 2, + STATE(3948), 1, + aux_sym__repeat_newline, + STATE(3288), 2, sym_block, sym_val_closure, - [112804] = 7, + [117877] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7434), 1, anon_sym_LBRACE, - STATE(3272), 1, - sym__blosure, - STATE(3735), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3764), 1, + STATE(3499), 1, + sym__blosure, + STATE(3919), 1, sym_comment, - STATE(3113), 2, + STATE(3288), 2, sym_block, sym_val_closure, - [112827] = 6, + [117900] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7295), 1, - anon_sym_DOT, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token5, - STATE(3765), 1, - sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [112848] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - STATE(3766), 1, + ACTIONS(6497), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6981), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7458), 1, + aux_sym_unquoted_token2, + STATE(3920), 1, sym_comment, - STATE(5192), 1, + STATE(4426), 1, sym__immediate_decimal, - ACTIONS(7299), 2, + ACTIONS(6983), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [117923] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6664), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6833), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, + ACTIONS(7458), 1, + aux_sym_unquoted_token2, + STATE(3921), 1, + sym_comment, + STATE(5071), 1, + sym__immediate_decimal, + ACTIONS(6835), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [112869] = 8, + [117946] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7303), 1, - sym__newline, - ACTIONS(7305), 1, - anon_sym_SEMI, - ACTIONS(7307), 1, - anon_sym_RPAREN, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3767), 1, + ACTIONS(7462), 1, + anon_sym_AT, + STATE(4937), 1, + sym_attribute, + STATE(3922), 2, sym_comment, - STATE(4139), 1, - aux_sym__block_body_repeat1, - STATE(4404), 1, - aux_sym__repeat_newline, - [112894] = 5, + aux_sym_attribute_list_repeat1, + ACTIONS(7460), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [117965] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3768), 1, + ACTIONS(4203), 1, + anon_sym_DOT_DOT2, + ACTIONS(7458), 1, + sym__unquoted_pattern, + STATE(3923), 1, sym_comment, - STATE(4336), 1, - sym_block, - ACTIONS(7309), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [112913] = 5, - ACTIONS(3), 1, + ACTIONS(4205), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7426), 2, + sym_filesize_unit, + sym_duration_unit, + [117986] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3769), 1, + ACTIONS(1506), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3924), 1, sym_comment, - STATE(4340), 1, - sym_block, - ACTIONS(7309), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(3930), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1504), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [112932] = 8, + [118009] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3653), 1, + ACTIONS(2154), 1, sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7311), 1, + ACTIONS(7465), 1, + anon_sym_DOT_DOT2, + STATE(3925), 1, + sym_comment, + ACTIONS(2156), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(339), 1, - sym_path, - STATE(3770), 1, + ACTIONS(7467), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118030] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7469), 1, + anon_sym_LPAREN, + ACTIONS(7475), 1, + anon_sym_DQUOTE2, + STATE(4424), 1, + sym_expr_interpolated, + ACTIONS(7472), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(3926), 2, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4335), 1, - sym_cell_path, - [112957] = 7, + aux_sym__inter_double_quotes_repeat1, + [118051] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(5322), 1, + anon_sym_DOLLAR, + ACTIONS(7328), 1, + sym_identifier, + STATE(2825), 1, + sym_val_variable, + STATE(3927), 1, + sym_comment, + STATE(5322), 1, + sym__variable_name, + [118076] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7418), 1, + anon_sym_LPAREN, + ACTIONS(7477), 1, + anon_sym_DQUOTE2, + STATE(3928), 1, + sym_comment, + STATE(4009), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4424), 1, + sym_expr_interpolated, + ACTIONS(7420), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [118099] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2826), 1, - sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3771), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + STATE(3929), 1, sym_comment, - ACTIONS(5600), 2, - anon_sym_EQ, - anon_sym_GT2, - [112980] = 8, + STATE(5125), 1, + sym__immediate_decimal, + ACTIONS(6664), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6666), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [118120] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5600), 1, + ACTIONS(1510), 1, sym__entry_separator, - ACTIONS(5602), 1, - anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7479), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(360), 1, + sym_path, + ACTIONS(1508), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(3930), 2, + sym_comment, aux_sym__where_predicate_lhs_repeat1, - STATE(3772), 1, + [118141] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7414), 1, + sym__newline, + ACTIONS(7416), 1, + anon_sym_SEMI, + ACTIONS(7482), 1, + anon_sym_RPAREN, + STATE(1369), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3931), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4335), 1, - sym_cell_path, - [113005] = 8, + STATE(4224), 1, + aux_sym__block_body_repeat1, + STATE(4562), 1, + aux_sym__repeat_newline, + [118166] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_RBRACK, - ACTIONS(5247), 1, + ACTIONS(2102), 1, sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3773), 1, + ACTIONS(7484), 1, + anon_sym_DOT_DOT2, + STATE(3932), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4730), 1, - sym_cell_path, - [113030] = 7, + ACTIONS(2104), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7486), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118187] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7317), 1, + ACTIONS(2110), 1, sym__entry_separator, - STATE(2234), 1, - aux_sym__types_body_repeat2, - STATE(3774), 1, + ACTIONS(7488), 1, + anon_sym_DOT_DOT2, + STATE(3933), 1, sym_comment, - STATE(4751), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7315), 2, + ACTIONS(2112), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [113053] = 8, + anon_sym_RBRACE, + ACTIONS(7490), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118208] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3775), 1, + ACTIONS(2118), 1, + sym__entry_separator, + ACTIONS(7492), 1, + anon_sym_DOT_DOT2, + STATE(3934), 1, sym_comment, - STATE(3940), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4619), 1, - sym__assignment_pattern_parenthesized, - [113078] = 8, + ACTIONS(2120), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7494), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118229] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1912), 1, sym__entry_separator, - ACTIONS(1868), 1, + ACTIONS(1914), 1, anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(3813), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3776), 1, + STATE(3935), 1, sym_comment, - STATE(3884), 1, + STATE(4188), 1, sym_path, - STATE(4102), 1, + STATE(4228), 1, sym_cell_path, - [113103] = 8, + [118254] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(1900), 1, sym__entry_separator, - ACTIONS(1884), 1, + ACTIONS(1902), 1, anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(3813), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3777), 1, + STATE(3936), 1, sym_comment, - STATE(3884), 1, + STATE(4188), 1, sym_path, - STATE(4176), 1, + STATE(4294), 1, sym_cell_path, - [113128] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1460), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - sym_comment, - STATE(3797), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1458), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [113151] = 8, + [118279] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(1862), 1, sym__entry_separator, - ACTIONS(1860), 1, + ACTIONS(1864), 1, anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(3813), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3779), 1, + STATE(3937), 1, sym_comment, - STATE(3884), 1, + STATE(4188), 1, sym_path, - STATE(4214), 1, + STATE(4314), 1, sym_cell_path, - [113176] = 6, - ACTIONS(103), 1, + [118304] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__entry_separator, - ACTIONS(7320), 1, - anon_sym_DOT_DOT2, - STATE(3780), 1, + ACTIONS(1746), 1, + sym__unquoted_pattern, + ACTIONS(7312), 1, + aux_sym__immediate_decimal_token5, + STATE(3938), 1, sym_comment, - ACTIONS(2154), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7322), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113197] = 7, + ACTIONS(1744), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118323] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7324), 1, + ACTIONS(7496), 1, anon_sym_DQUOTE2, - STATE(3781), 1, + STATE(3939), 1, sym_comment, - STATE(3785), 1, + STATE(3942), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [113220] = 7, + [118346] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4147), 1, + ACTIONS(4211), 1, aux_sym_unquoted_token2, - ACTIONS(6430), 1, + ACTIONS(6497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token2, - STATE(3782), 1, + STATE(3940), 1, sym_comment, - STATE(4133), 1, + STATE(4426), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6983), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [113243] = 7, + [118369] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4147), 1, + ACTIONS(4211), 1, aux_sym_unquoted_token2, - ACTIONS(6478), 1, + ACTIONS(6664), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6833), 1, aux_sym__immediate_decimal_token2, - STATE(3783), 1, + STATE(3941), 1, sym_comment, - STATE(4996), 1, + STATE(5071), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6835), 2, aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113266] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3784), 1, - sym_comment, - STATE(3940), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4371), 1, - sym__assignment_pattern_parenthesized, - [113291] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7326), 1, - anon_sym_DQUOTE2, - STATE(3785), 1, - sym_comment, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [113314] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3786), 1, - sym_comment, - STATE(3940), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4405), 1, - sym__assignment_pattern_parenthesized, - [113339] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3218), 1, - sym__blosure, - STATE(3763), 1, - aux_sym__repeat_newline, - STATE(3787), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [113362] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3224), 1, - sym__blosure, - STATE(3788), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [113385] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3224), 1, - sym__blosure, - STATE(3789), 1, - sym_comment, - STATE(3824), 1, - aux_sym__repeat_newline, - STATE(3113), 2, - sym_block, - sym_val_closure, - [113408] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3225), 1, - sym__blosure, - STATE(3790), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [113431] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3791), 1, - sym_comment, - ACTIONS(1478), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113446] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(461), 1, - anon_sym_RPAREN, - ACTIONS(7303), 1, - sym__newline, - ACTIONS(7305), 1, - anon_sym_SEMI, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3792), 1, + aux_sym__immediate_decimal_token4, + [118392] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7418), 1, + anon_sym_LPAREN, + ACTIONS(7498), 1, + anon_sym_DQUOTE2, + STATE(3926), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3942), 1, sym_comment, - STATE(4188), 1, - aux_sym__block_body_repeat1, - STATE(4404), 1, - aux_sym__repeat_newline, - [113471] = 5, + STATE(4424), 1, + sym_expr_interpolated, + ACTIONS(7420), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [118415] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1854), 1, sym__unquoted_pattern, - ACTIONS(7067), 1, + ACTIONS(7500), 1, aux_sym__immediate_decimal_token5, - STATE(3793), 1, + STATE(3943), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(1852), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [113490] = 8, + [118434] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7069), 1, + STATE(3944), 1, + sym_comment, + ACTIONS(1519), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - ACTIONS(7328), 1, - anon_sym_RBRACE, - ACTIONS(7330), 1, + [118449] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5381), 1, + anon_sym_RBRACK, + ACTIONS(5383), 1, sym__entry_separator, - STATE(339), 1, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, sym_path, - STATE(3778), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3794), 1, + STATE(3945), 1, sym_comment, - STATE(4682), 1, + STATE(4822), 1, sym_cell_path, - [113515] = 3, + [118474] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3795), 1, + STATE(3946), 1, sym_comment, - ACTIONS(1543), 6, + ACTIONS(1523), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113530] = 3, + [118489] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3796), 1, + STATE(3947), 1, sym_comment, - ACTIONS(1466), 6, + ACTIONS(1527), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113545] = 6, - ACTIONS(103), 1, + [118504] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - sym__entry_separator, - ACTIONS(7332), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - ACTIONS(1524), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(3797), 2, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(7434), 1, + anon_sym_LBRACE, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3515), 1, + sym__blosure, + STATE(3948), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [113566] = 3, + STATE(3288), 2, + sym_block, + sym_val_closure, + [118527] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3798), 1, + STATE(3949), 1, sym_comment, - ACTIONS(1470), 6, + ACTIONS(1531), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113581] = 3, + [118542] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3799), 1, + STATE(3950), 1, sym_comment, - ACTIONS(1474), 6, + ACTIONS(1535), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113596] = 3, + [118557] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3800), 1, + STATE(3951), 1, sym_comment, - ACTIONS(1514), 6, + ACTIONS(1539), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113611] = 5, - ACTIONS(3), 1, + [118572] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(7335), 1, + ACTIONS(7258), 1, + anon_sym_DOT2, + ACTIONS(7502), 1, + anon_sym_RBRACE, + ACTIONS(7504), 1, + sym__entry_separator, + STATE(360), 1, + sym_path, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3952), 1, + sym_comment, + STATE(4785), 1, + sym_cell_path, + [118597] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7334), 1, aux_sym__immediate_decimal_token5, - STATE(3801), 1, + STATE(3953), 1, sym_comment, - ACTIONS(1802), 4, - anon_sym_if, + ACTIONS(1744), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1746), 3, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [113630] = 8, + anon_sym_SEMI, + sym__unquoted_pattern, + [118616] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3802), 1, + ACTIONS(5354), 1, + sym__entry_separator, + ACTIONS(5717), 1, + anon_sym_GT2, + ACTIONS(7206), 1, + anon_sym_DOT2, + STATE(3813), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3954), 1, sym_comment, - STATE(3933), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4389), 1, - sym__assignment_pattern, - [113655] = 5, + STATE(4188), 1, + sym_path, + STATE(4446), 1, + sym_cell_path, + [118641] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7339), 1, + ACTIONS(57), 1, anon_sym_AT, - STATE(4624), 1, - sym_attribute, - STATE(3803), 2, - sym_comment, + STATE(3922), 1, aux_sym_attribute_list_repeat1, - ACTIONS(7337), 3, + STATE(3955), 1, + sym_comment, + STATE(4937), 1, + sym_attribute, + ACTIONS(7506), 3, anon_sym_export, anon_sym_def, anon_sym_extern, - [113674] = 8, + [118662] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3804), 1, + ACTIONS(7508), 1, + aux_sym__immediate_decimal_token5, + STATE(3956), 1, sym_comment, - STATE(3933), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4390), 1, - sym__assignment_pattern, - [113699] = 7, + ACTIONS(1852), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1854), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [118681] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4355), 1, + sym__space, + ACTIONS(7510), 1, + sym_long_flag_identifier, + ACTIONS(7512), 1, + anon_sym_EQ2, + STATE(3040), 1, + sym__flag_equals_value, + STATE(3957), 1, + sym_comment, + ACTIONS(4353), 2, + sym__newline, + anon_sym_SEMI, + [118704] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6430), 1, + ACTIONS(1450), 1, + sym__entry_separator, + ACTIONS(7514), 1, + anon_sym_QMARK2, + STATE(3958), 1, + sym_comment, + ACTIONS(1448), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [118723] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6779), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7254), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(7516), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7342), 1, - aux_sym_unquoted_token2, - STATE(3805), 1, + STATE(3959), 1, sym_comment, - STATE(4133), 1, + STATE(4377), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(7518), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [113722] = 7, + [118746] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6779), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7430), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(7520), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7342), 1, - aux_sym_unquoted_token2, - STATE(3806), 1, + STATE(3960), 1, sym_comment, - STATE(4996), 1, + STATE(5156), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(7522), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [113745] = 6, - ACTIONS(103), 1, + [118769] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, - ACTIONS(7344), 1, + ACTIONS(6779), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7524), 1, anon_sym_DOT_DOT2, - STATE(3807), 1, + STATE(3961), 1, sym_comment, - ACTIONS(2102), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7346), 2, + ACTIONS(7526), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113766] = 6, + ACTIONS(7528), 2, + sym_filesize_unit, + sym_duration_unit, + [118790] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, - sym__entry_separator, - ACTIONS(7348), 1, - anon_sym_DOT_DOT2, - STATE(3808), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7349), 1, + anon_sym_DOLLAR, + STATE(2824), 1, + sym__variable_name, + STATE(2825), 1, + sym_val_variable, + STATE(3962), 1, sym_comment, - ACTIONS(2078), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7350), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113787] = 6, - ACTIONS(103), 1, + STATE(4303), 1, + sym__assignment_pattern, + [118815] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__entry_separator, - ACTIONS(7352), 1, - anon_sym_DOT_DOT2, - STATE(3809), 1, + ACTIONS(7530), 1, + sym_long_flag_identifier, + ACTIONS(7532), 1, + anon_sym_EQ2, + STATE(3963), 1, sym_comment, - ACTIONS(2122), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7354), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113808] = 5, - ACTIONS(103), 1, + STATE(4522), 1, + sym__flag_equals_value, + ACTIONS(4355), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [118836] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7137), 1, - aux_sym__immediate_decimal_token5, - STATE(3810), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3964), 1, sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 3, + STATE(4389), 1, + sym_block, + ACTIONS(7534), 4, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [113827] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [118855] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(1713), 1, + sym__entry_separator, + ACTIONS(7536), 1, anon_sym_DOT_DOT2, - ACTIONS(7342), 1, - sym__unquoted_pattern, - STATE(3811), 1, + STATE(3965), 1, sym_comment, - ACTIONS(4141), 2, + ACTIONS(1614), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7538), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7266), 2, - sym_filesize_unit, - sym_duration_unit, - [113848] = 5, + [118876] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(1450), 1, sym__entry_separator, - ACTIONS(7356), 1, - anon_sym_QMARK2, - STATE(3812), 1, + ACTIONS(7514), 1, + anon_sym_BANG, + STATE(3966), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1448), 4, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, anon_sym_DOT2, - [113867] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7358), 1, - aux_sym__immediate_decimal_token5, - STATE(3813), 1, - sym_comment, - ACTIONS(1802), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [113886] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7360), 1, - anon_sym_LPAREN, - ACTIONS(7366), 1, - anon_sym_DQUOTE2, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7363), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(3814), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [113907] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3815), 1, - sym_comment, - STATE(4014), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4405), 1, - sym__assignment_pattern_parenthesized, - [113932] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(7044), 1, - sym_identifier, - STATE(3816), 1, - sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(5164), 1, - sym__variable_name, - [113957] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4303), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - ACTIONS(7368), 1, - sym_long_flag_identifier, - STATE(2933), 1, - sym__flag_equals_value, - STATE(3817), 1, - sym_comment, - ACTIONS(4301), 2, - sym__newline, - anon_sym_SEMI, - [113980] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(3818), 1, - sym_comment, - STATE(4872), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114001] = 7, + [118895] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7370), 1, + ACTIONS(7540), 1, anon_sym_DQUOTE2, - STATE(3819), 1, + STATE(3967), 1, sym_comment, - STATE(3823), 1, + STATE(3973), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114024] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7303), 1, - sym__newline, - ACTIONS(7305), 1, - anon_sym_SEMI, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3820), 1, - sym_comment, - STATE(4154), 1, - aux_sym__block_body_repeat1, - STATE(4404), 1, - aux_sym__repeat_newline, - [114049] = 7, + [118918] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6430), 1, + ACTIONS(6497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6902), 1, + ACTIONS(7079), 1, aux_sym_unquoted_token2, - STATE(3821), 1, + STATE(3968), 1, sym_comment, - STATE(4133), 1, + STATE(4426), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6983), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114072] = 7, + [118941] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6664), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6833), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6902), 1, + ACTIONS(7079), 1, aux_sym_unquoted_token2, - STATE(3822), 1, + STATE(3969), 1, sym_comment, - STATE(4996), 1, + STATE(5071), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6835), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114095] = 7, + [118964] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7542), 1, + anon_sym_RBRACK, + ACTIONS(7544), 1, + anon_sym_DOT_DOT, + ACTIONS(7546), 1, + anon_sym_DOT_DOT2, + ACTIONS(7550), 1, + sym__entry_separator, + STATE(3970), 1, + sym_comment, + ACTIONS(7548), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118987] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7361), 1, + aux_sym__immediate_decimal_token5, + STATE(3971), 1, + sym_comment, + ACTIONS(1746), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119006] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7546), 1, + anon_sym_DOT_DOT2, + ACTIONS(7552), 1, + anon_sym_RBRACK, + ACTIONS(7555), 1, + anon_sym_DOT_DOT, + ACTIONS(7557), 1, + sym__entry_separator, + STATE(3972), 1, + sym_comment, + ACTIONS(7548), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119029] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7374), 1, + ACTIONS(7560), 1, anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3926), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3823), 1, + STATE(3973), 1, sym_comment, - STATE(4205), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114118] = 7, - ACTIONS(3), 1, + [119052] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3263), 1, - sym__blosure, - STATE(3824), 1, + ACTIONS(6670), 1, + anon_sym_LPAREN2, + ACTIONS(7438), 1, + sym__entry_separator, + STATE(2262), 1, + aux_sym__types_body_repeat2, + STATE(3974), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [114141] = 7, + STATE(4867), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7562), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119075] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7376), 1, + ACTIONS(7564), 1, anon_sym_DQUOTE2, - STATE(3825), 1, + STATE(3975), 1, sym_comment, - STATE(3828), 1, + STATE(3978), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114164] = 7, + [119098] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5160), 1, aux_sym_unquoted_token2, - ACTIONS(6430), 1, + ACTIONS(6497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token2, - STATE(3826), 1, + STATE(3976), 1, sym_comment, - STATE(4133), 1, + STATE(4426), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6983), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114187] = 7, + [119121] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5160), 1, aux_sym_unquoted_token2, - ACTIONS(6478), 1, + ACTIONS(6664), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6833), 1, aux_sym__immediate_decimal_token2, - STATE(3827), 1, + STATE(3977), 1, sym_comment, - STATE(4996), 1, + STATE(5071), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6835), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114210] = 7, + [119144] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7378), 1, + ACTIONS(7566), 1, anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3926), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3828), 1, + STATE(3978), 1, sym_comment, - STATE(4205), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114233] = 7, + [119167] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7380), 1, - anon_sym_DQUOTE2, - STATE(3829), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7330), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(3979), 1, sym_comment, - STATE(3832), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114256] = 7, + STATE(4186), 1, + sym__variable_name, + STATE(4305), 1, + sym__assignment_pattern, + [119192] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7568), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7570), 1, + aux_sym__immediate_decimal_token5, + STATE(3980), 1, + sym_comment, + ACTIONS(1770), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1772), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [119213] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4969), 1, + ACTIONS(5071), 1, aux_sym_unquoted_token2, - ACTIONS(6430), 1, + ACTIONS(6497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token2, - STATE(3830), 1, + STATE(3981), 1, sym_comment, - STATE(4133), 1, + STATE(4426), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6983), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114279] = 7, + [119236] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4969), 1, + ACTIONS(5071), 1, aux_sym_unquoted_token2, - ACTIONS(6478), 1, + ACTIONS(6664), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6833), 1, aux_sym__immediate_decimal_token2, - STATE(3831), 1, + STATE(3982), 1, sym_comment, - STATE(4996), 1, + STATE(5071), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6835), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114302] = 7, + [119259] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, + ACTIONS(7572), 1, anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3926), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3832), 1, - sym_comment, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114325] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7384), 1, - anon_sym_DQUOTE2, - STATE(3833), 1, + STATE(3983), 1, sym_comment, - STATE(3834), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114348] = 7, + [119282] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7386), 1, - anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3834), 1, + ACTIONS(1713), 1, + sym__space, + ACTIONS(7574), 1, + anon_sym_DOT_DOT2, + STATE(3984), 1, sym_comment, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114371] = 7, + ACTIONS(1614), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7576), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119303] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7388), 1, + ACTIONS(7578), 1, anon_sym_DQUOTE2, - STATE(3835), 1, + STATE(3985), 1, sym_comment, - STATE(3837), 1, + STATE(3987), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114394] = 8, - ACTIONS(103), 1, + [119326] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7390), 1, - anon_sym_RBRACE, - ACTIONS(7392), 1, - sym__entry_separator, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3836), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3986), 1, sym_comment, - STATE(4654), 1, - sym_cell_path, - [114419] = 7, + STATE(4468), 1, + sym_block, + ACTIONS(7580), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [119345] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7394), 1, + ACTIONS(7582), 1, anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3926), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3837), 1, + STATE(3987), 1, sym_comment, - STATE(4205), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114442] = 6, + [119368] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7396), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7398), 1, - aux_sym__immediate_decimal_token5, - STATE(3838), 1, + ACTIONS(2154), 1, + sym__space, + ACTIONS(7584), 1, + anon_sym_DOT_DOT2, + STATE(3988), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [114463] = 7, - ACTIONS(103), 1, + ACTIONS(2156), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7586), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119389] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7400), 1, - anon_sym_DQUOTE2, - STATE(3839), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(7434), 1, + anon_sym_LBRACE, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3512), 1, + sym__blosure, + STATE(3989), 1, sym_comment, - STATE(3840), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114486] = 7, + STATE(3288), 2, + sym_block, + sym_val_closure, + [119412] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7402), 1, + ACTIONS(7588), 1, anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3840), 1, + STATE(3990), 1, sym_comment, - STATE(4205), 1, + STATE(3994), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114509] = 7, - ACTIONS(103), 1, + [119435] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7404), 1, - aux_sym__immediate_decimal_token2, - STATE(3841), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + STATE(3991), 1, sym_comment, - STATE(4323), 1, + STATE(5243), 1, sym__immediate_decimal, - ACTIONS(7406), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114532] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7299), 1, + ACTIONS(7430), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7408), 1, aux_sym__immediate_decimal_token2, - STATE(3842), 1, - sym_comment, - STATE(5077), 1, - sym__immediate_decimal, - ACTIONS(7410), 2, + ACTIONS(7432), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114555] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7412), 1, - anon_sym_DOT_DOT2, - STATE(3843), 1, - sym_comment, - ACTIONS(7414), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7416), 2, - sym_filesize_unit, - sym_duration_unit, - [114576] = 6, + [119456] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7418), 1, - sym_long_flag_identifier, - ACTIONS(7420), 1, - anon_sym_EQ2, - STATE(3844), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3992), 1, sym_comment, - STATE(4599), 1, - sym__flag_equals_value, - ACTIONS(4303), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [114597] = 5, + STATE(4484), 1, + sym_block, + ACTIONS(7590), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [119475] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3845), 1, + STATE(3993), 1, sym_comment, - STATE(4337), 1, + STATE(4488), 1, sym_block, - ACTIONS(7422), 4, + ACTIONS(7590), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [114616] = 6, + [119494] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - STATE(3846), 1, + ACTIONS(7418), 1, + anon_sym_LPAREN, + ACTIONS(7592), 1, + anon_sym_DQUOTE2, + STATE(3926), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3994), 1, sym_comment, - ACTIONS(1619), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114637] = 8, - ACTIONS(103), 1, + STATE(4424), 1, + sym_expr_interpolated, + ACTIONS(7420), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [119517] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5265), 1, - anon_sym_RBRACK, - ACTIONS(5267), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3847), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(7434), 1, + anon_sym_LBRACE, + STATE(3512), 1, + sym__blosure, + STATE(3917), 1, + aux_sym__repeat_newline, + STATE(3995), 1, sym_comment, - STATE(4678), 1, - sym_cell_path, - [114662] = 6, + STATE(3288), 2, + sym_block, + sym_val_closure, + [119540] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(7238), 1, - anon_sym_DOT_DOT2, - STATE(3848), 1, + ACTIONS(7418), 1, + anon_sym_LPAREN, + ACTIONS(7594), 1, + anon_sym_DQUOTE2, + STATE(3996), 1, sym_comment, - ACTIONS(1619), 2, + STATE(3999), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4424), 1, + sym_expr_interpolated, + ACTIONS(7420), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [119563] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(7240), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114683] = 5, + ACTIONS(7434), 1, + anon_sym_LBRACE, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3392), 1, + sym__blosure, + STATE(3997), 1, + sym_comment, + STATE(3288), 2, + sym_block, + sym_val_closure, + [119586] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(7434), 1, + anon_sym_LBRACE, + STATE(3392), 1, + sym__blosure, + STATE(3919), 1, + aux_sym__repeat_newline, + STATE(3998), 1, + sym_comment, + STATE(3288), 2, + sym_block, + sym_val_closure, + [119609] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7418), 1, + anon_sym_LPAREN, + ACTIONS(7596), 1, + anon_sym_DQUOTE2, + STATE(3926), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3999), 1, + sym_comment, + STATE(4424), 1, + sym_expr_interpolated, + ACTIONS(7420), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [119632] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(7276), 1, aux_sym__immediate_decimal_token5, - STATE(3849), 1, + STATE(4000), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1744), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1738), 3, + ACTIONS(1746), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [114702] = 5, + [119651] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7428), 1, + ACTIONS(7598), 1, aux_sym__immediate_decimal_token5, - STATE(3850), 1, + STATE(4001), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1852), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1804), 3, + ACTIONS(1854), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [114721] = 6, + [119670] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7430), 1, + ACTIONS(2102), 1, + sym__space, + ACTIONS(7600), 1, + anon_sym_DOT_DOT2, + STATE(4002), 1, + sym_comment, + ACTIONS(2104), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7602), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119691] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2110), 1, + sym__space, + ACTIONS(7604), 1, + anon_sym_DOT_DOT2, + STATE(4003), 1, + sym_comment, + ACTIONS(2112), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7606), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119712] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7608), 1, anon_sym_DOT, - ACTIONS(7432), 1, + ACTIONS(7610), 1, aux_sym__immediate_decimal_token5, - STATE(3851), 1, + STATE(4004), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1744), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1738), 2, + ACTIONS(1746), 2, anon_sym_RBRACE, sym__unquoted_pattern_in_record, - [114742] = 5, - ACTIONS(3), 1, + [119733] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, - STATE(3852), 1, - sym_comment, - ACTIONS(1738), 2, + ACTIONS(2118), 1, + sym__space, + ACTIONS(7612), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 3, - anon_sym_LBRACE, + STATE(4005), 1, + sym_comment, + ACTIONS(2120), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7614), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114761] = 6, + [119754] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(5509), 1, sym__space, - ACTIONS(7434), 1, + ACTIONS(7512), 1, + anon_sym_EQ2, + ACTIONS(7616), 1, + sym_short_flag_identifier, + STATE(3032), 1, + sym__flag_equals_value, + STATE(4006), 1, + sym_comment, + ACTIONS(5507), 2, + sym__newline, + anon_sym_SEMI, + [119777] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5473), 1, + sym__space, + ACTIONS(7574), 1, anon_sym_DOT_DOT2, - STATE(3853), 1, + STATE(4007), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(5471), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7436), 2, + ACTIONS(7576), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114782] = 4, + [119798] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3854), 1, + STATE(4008), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + ACTIONS(741), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [114799] = 4, + [119815] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7418), 1, + anon_sym_LPAREN, + ACTIONS(7618), 1, + anon_sym_DQUOTE2, + STATE(3926), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4009), 1, + sym_comment, + STATE(4424), 1, + sym_expr_interpolated, + ACTIONS(7420), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [119838] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3855), 1, + STATE(4010), 1, sym_comment, ACTIONS(771), 2, anon_sym_DOT_DOT2, @@ -233522,21357 +239015,21850 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [114816] = 4, + [119855] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3856), 1, + STATE(4011), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(860), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(851), 4, + ACTIONS(862), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [114833] = 7, + [119872] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1679), 1, + sym__unquoted_pattern, + STATE(4012), 1, + sym_comment, + STATE(5215), 1, + sym__immediate_decimal, + ACTIONS(6664), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6666), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [119893] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7272), 1, - anon_sym_DOT_DOT, - ACTIONS(7274), 1, - anon_sym_DOT_DOT2, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, - STATE(3857), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7349), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(2902), 1, + sym__variable_name, + STATE(4013), 1, sym_comment, - ACTIONS(7276), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114856] = 7, + STATE(4547), 1, + sym__assignment_pattern_parenthesized, + [119918] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7274), 1, - anon_sym_DOT_DOT2, - ACTIONS(7278), 1, - anon_sym_DOT_DOT, - ACTIONS(7442), 1, - anon_sym_RBRACK, - ACTIONS(7445), 1, - sym__entry_separator, - STATE(3858), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7330), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(4014), 1, sym_comment, - ACTIONS(7276), 2, + STATE(4053), 1, + sym__variable_name, + STATE(4552), 1, + sym__assignment_pattern_parenthesized, + [119943] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7330), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(4015), 1, + sym_comment, + STATE(4053), 1, + sym__variable_name, + STATE(4637), 1, + sym__assignment_pattern_parenthesized, + [119968] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7620), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7622), 1, + aux_sym__immediate_decimal_token5, + STATE(4016), 1, + sym_comment, + ACTIONS(1770), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114879] = 7, - ACTIONS(103), 1, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [119989] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7317), 1, - sym__entry_separator, - STATE(2232), 1, - aux_sym__types_body_repeat2, - STATE(3859), 1, + ACTIONS(6747), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7624), 1, + anon_sym_DOT, + STATE(4017), 1, sym_comment, - STATE(4751), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7448), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [114902] = 6, + ACTIONS(1744), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120008] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7414), 1, + sym__newline, + ACTIONS(7416), 1, + anon_sym_SEMI, + ACTIONS(7626), 1, + anon_sym_RPAREN, + STATE(1369), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4018), 1, + sym_comment, + STATE(4462), 1, + aux_sym__block_body_repeat1, + STATE(4562), 1, + aux_sym__repeat_newline, + [120033] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7308), 1, + anon_sym_DOT2, + STATE(2500), 1, + sym_path, + STATE(4019), 1, + sym_comment, + STATE(4031), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1506), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [120054] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2154), 1, sym__entry_separator, - ACTIONS(7450), 1, + ACTIONS(7628), 1, anon_sym_DOT_DOT2, - STATE(3860), 1, + STATE(4020), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(2156), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7452), 2, + ACTIONS(7630), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114923] = 6, + [120075] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(2102), 1, sym__entry_separator, - ACTIONS(7454), 1, + ACTIONS(7632), 1, anon_sym_DOT_DOT2, - STATE(3861), 1, + STATE(4021), 1, sym_comment, - ACTIONS(2102), 2, + ACTIONS(2104), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7456), 2, + ACTIONS(7634), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114944] = 6, + [120096] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(2110), 1, sym__entry_separator, - ACTIONS(7458), 1, + ACTIONS(7636), 1, anon_sym_DOT_DOT2, - STATE(3862), 1, + STATE(4022), 1, sym_comment, - ACTIONS(2078), 2, + ACTIONS(2112), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7460), 2, + ACTIONS(7638), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114965] = 6, + [120117] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2118), 1, sym__entry_separator, - ACTIONS(7462), 1, + ACTIONS(7640), 1, anon_sym_DOT_DOT2, - STATE(3863), 1, + STATE(4023), 1, sym_comment, - ACTIONS(2122), 2, + ACTIONS(2120), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7464), 2, + ACTIONS(7642), 2, anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114986] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7466), 1, - anon_sym_DQUOTE2, - STATE(3760), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3864), 1, + anon_sym_DOT_DOT_LT2, + [120138] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1772), 1, + sym__unquoted_pattern, + ACTIONS(7644), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7646), 1, + aux_sym__immediate_decimal_token5, + STATE(4024), 1, sym_comment, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [115009] = 8, + ACTIONS(1770), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120159] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7349), 1, anon_sym_DOLLAR, - STATE(3865), 1, - sym_comment, - STATE(3915), 1, - sym__variable_name, - STATE(4060), 1, + STATE(2825), 1, sym_val_variable, - STATE(4250), 1, + STATE(2883), 1, + sym__variable_name, + STATE(4025), 1, + sym_comment, + STATE(4303), 1, sym__assignment_pattern, - [115034] = 8, + [120184] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR, - STATE(3866), 1, + STATE(2825), 1, + sym_val_variable, + STATE(4026), 1, sym_comment, - STATE(3915), 1, + STATE(4114), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, + STATE(4304), 1, sym__assignment_pattern, - [115059] = 8, + [120209] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR, - STATE(3867), 1, + STATE(2825), 1, + sym_val_variable, + STATE(4027), 1, sym_comment, - STATE(3915), 1, + STATE(4114), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, + STATE(4305), 1, sym__assignment_pattern, - [115084] = 6, + [120234] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7468), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7470), 1, - aux_sym__immediate_decimal_token5, - STATE(3868), 1, - sym_comment, - ACTIONS(1726), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [115105] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2100), 1, - sym__space, - ACTIONS(7472), 1, - anon_sym_DOT_DOT2, - STATE(3869), 1, - sym_comment, - ACTIONS(2102), 2, + ACTIONS(7648), 1, + anon_sym_if, + ACTIONS(7650), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(7474), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115126] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2076), 1, - sym__space, - ACTIONS(7476), 1, - anon_sym_DOT_DOT2, - STATE(3870), 1, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_EQ_GT, + STATE(4028), 1, sym_comment, - ACTIONS(2078), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7478), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115147] = 5, + STATE(4448), 1, + aux_sym_match_pattern_repeat1, + STATE(5168), 1, + sym_match_guard, + [120259] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3871), 1, + STATE(4029), 1, sym_comment, - STATE(4289), 1, + STATE(4416), 1, sym_block, - ACTIONS(7480), 4, + ACTIONS(7656), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [115166] = 6, - ACTIONS(103), 1, + [120278] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__space, - ACTIONS(7482), 1, - anon_sym_DOT_DOT2, - STATE(3872), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4030), 1, sym_comment, - ACTIONS(2122), 2, + STATE(4420), 1, + sym_block, + ACTIONS(7656), 4, sym__newline, anon_sym_SEMI, - ACTIONS(7484), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115187] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7486), 1, - anon_sym_DOT, - STATE(3873), 1, + ACTIONS(7658), 1, + anon_sym_DOT2, + STATE(2500), 1, + sym_path, + STATE(4031), 2, sym_comment, - ACTIONS(1736), 4, - anon_sym_if, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 3, + anon_sym_EQ, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115206] = 6, - ACTIONS(3), 1, + anon_sym_COLON, + [120316] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - STATE(3874), 1, - sym_comment, - STATE(5199), 1, - sym__immediate_decimal, - ACTIONS(7299), 2, + ACTIONS(7661), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [115227] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3875), 1, + ACTIONS(7663), 1, + aux_sym__immediate_decimal_token5, + STATE(4032), 1, sym_comment, - STATE(4095), 1, - sym_block, - ACTIONS(7488), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [115246] = 8, + ACTIONS(1770), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1772), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [120337] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7349), 1, anon_sym_DOLLAR, - STATE(3876), 1, - sym_comment, - STATE(3957), 1, - sym__variable_name, - STATE(4060), 1, + STATE(2825), 1, sym_val_variable, - STATE(4250), 1, + STATE(3003), 1, + sym__variable_name, + STATE(4033), 1, + sym_comment, + STATE(4303), 1, sym__assignment_pattern, - [115271] = 8, + [120362] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR, - STATE(3877), 1, + STATE(2825), 1, + sym_val_variable, + STATE(4034), 1, sym_comment, - STATE(3957), 1, + STATE(4057), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, + STATE(4304), 1, sym__assignment_pattern, - [115296] = 8, + [120387] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR, - STATE(3878), 1, + STATE(2825), 1, + sym_val_variable, + STATE(4035), 1, sym_comment, - STATE(3957), 1, + STATE(4057), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, + STATE(4305), 1, sym__assignment_pattern, - [115321] = 5, - ACTIONS(3), 1, + [120412] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3879), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7330), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(4036), 1, sym_comment, - STATE(4099), 1, - sym_block, - ACTIONS(7488), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [115340] = 6, - ACTIONS(3), 1, + STATE(4186), 1, + sym__variable_name, + STATE(4304), 1, + sym__assignment_pattern, + [120437] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7490), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7492), 1, - aux_sym__immediate_decimal_token5, - STATE(3880), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7349), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(2983), 1, + sym__variable_name, + STATE(4037), 1, sym_comment, - ACTIONS(1726), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115361] = 8, + STATE(4547), 1, + sym__assignment_pattern_parenthesized, + [120462] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR, - STATE(3881), 1, + STATE(2825), 1, + sym_val_variable, + STATE(4038), 1, sym_comment, - STATE(4014), 1, + STATE(4149), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4619), 1, + STATE(4552), 1, sym__assignment_pattern_parenthesized, - [115386] = 8, + [120487] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR, - STATE(3882), 1, + STATE(2825), 1, + sym_val_variable, + STATE(4039), 1, sym_comment, - STATE(4014), 1, + STATE(4149), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4371), 1, + STATE(4637), 1, sym__assignment_pattern_parenthesized, - [115411] = 5, + [120512] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(7363), 1, sym__entry_separator, - ACTIONS(7356), 1, - anon_sym_BANG, - STATE(3883), 1, + ACTIONS(7546), 1, + anon_sym_DOT_DOT2, + STATE(4040), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(7544), 2, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT2, - [115430] = 4, + ACTIONS(7548), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120533] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1464), 1, + ACTIONS(7268), 1, sym__entry_separator, - STATE(3884), 1, + ACTIONS(7546), 1, + anon_sym_DOT_DOT2, + STATE(4041), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(7548), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7555), 2, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT2, - [115446] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3885), 1, - sym_comment, - ACTIONS(996), 2, - sym__newline, - anon_sym_SEMI, - [115466] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1018), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3886), 1, - sym_comment, - ACTIONS(1016), 2, - sym__newline, - anon_sym_SEMI, - [115486] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7496), 1, - anon_sym_SQUOTE2, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - STATE(3887), 1, - sym_comment, - STATE(3910), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [115508] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3888), 1, - sym_comment, - ACTIONS(5920), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115522] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_BANG, - STATE(3889), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [115538] = 4, + [120554] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3890), 1, + ACTIONS(7665), 1, + anon_sym_DOT, + ACTIONS(7667), 1, + aux_sym__immediate_decimal_token5, + STATE(4042), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 3, - anon_sym_LBRACE, + ACTIONS(1744), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115554] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3891), 1, - sym_comment, - ACTIONS(6121), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115568] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7502), 1, + ACTIONS(1746), 2, anon_sym_DOT_DOT2, - STATE(3892), 1, - sym_comment, - ACTIONS(7504), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115588] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3893), 1, - sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4307), 1, - sym__assignment_pattern, - [115610] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3894), 1, - sym_comment, - ACTIONS(6125), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115624] = 3, + sym__unquoted_pattern_in_record, + [120575] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3895), 1, - sym_comment, - ACTIONS(6129), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(7434), 1, anon_sym_LBRACE, - [115638] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1882), 1, - sym__table_head_separator, - ACTIONS(7510), 1, - anon_sym_DOT2, - STATE(3896), 1, + STATE(3394), 1, + sym__blosure, + STATE(3989), 1, + aux_sym__repeat_newline, + STATE(4043), 1, sym_comment, - STATE(4059), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, - sym_path, - STATE(4963), 1, - sym_cell_path, - [115660] = 7, + STATE(3288), 2, + sym_block, + sym_val_closure, + [120598] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(7512), 1, - anon_sym_EQ, - ACTIONS(7514), 1, - anon_sym_COLON, - STATE(3897), 1, - sym_comment, - STATE(4423), 1, + ACTIONS(7434), 1, + anon_sym_LBRACE, + STATE(527), 1, aux_sym__repeat_newline, - STATE(5002), 1, - sym_param_type, - [115682] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3898), 1, + STATE(3401), 1, + sym__blosure, + STATE(4044), 1, sym_comment, - ACTIONS(6133), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115696] = 7, + STATE(3288), 2, + sym_block, + sym_val_closure, + [120621] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__table_head_separator, - ACTIONS(7510), 1, - anon_sym_DOT2, - STATE(3899), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(7434), 1, + anon_sym_LBRACE, + STATE(3401), 1, + sym__blosure, + STATE(3997), 1, + aux_sym__repeat_newline, + STATE(4045), 1, sym_comment, - STATE(4059), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, - sym_path, - STATE(5045), 1, - sym_cell_path, - [115718] = 4, + STATE(3288), 2, + sym_block, + sym_val_closure, + [120644] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(1746), 1, sym__unquoted_pattern, - STATE(3900), 1, + ACTIONS(7669), 1, + anon_sym_DOT, + ACTIONS(7671), 1, + aux_sym__immediate_decimal_token5, + STATE(4046), 1, sym_comment, - ACTIONS(968), 4, - anon_sym_if, + ACTIONS(1744), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115734] = 6, + [120665] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, - sym__entry_separator, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7516), 1, - anon_sym_DOT, - STATE(3901), 1, + ACTIONS(7418), 1, + anon_sym_LPAREN, + ACTIONS(7673), 1, + anon_sym_DQUOTE2, + STATE(3983), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4047), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [115754] = 5, + STATE(4424), 1, + sym_expr_interpolated, + ACTIONS(7420), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [120688] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3902), 1, - sym_comment, - STATE(4394), 1, - sym_block, - ACTIONS(7270), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [115772] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2128), 1, - sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_LBRACK2, - STATE(3903), 1, + ACTIONS(7675), 1, + sym_identifier, + ACTIONS(7677), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(4048), 1, sym_comment, - ACTIONS(2130), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [115790] = 4, + STATE(4057), 1, + sym__variable_name, + STATE(4370), 1, + sym__assignment_pattern, + [120710] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3904), 1, - sym_comment, - ACTIONS(2501), 2, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2541), 1, + sym__space, + ACTIONS(2642), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - sym__unquoted_pattern_in_list, - [115806] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7030), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3905), 1, + STATE(4049), 1, sym_comment, - STATE(4478), 1, - sym_cell_path, - [115828] = 7, + ACTIONS(2543), 2, + sym__newline, + anon_sym_SEMI, + [120730] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6963), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3906), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5322), 1, + anon_sym_DOLLAR, + ACTIONS(7328), 1, + sym_identifier, + STATE(2825), 1, + sym_val_variable, + STATE(4050), 1, sym_comment, - STATE(4513), 1, - sym_cell_path, - [115850] = 7, + STATE(5322), 1, + sym__variable_name, + [120752] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5600), 1, + ACTIONS(1744), 1, sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3907), 1, - sym_comment, - STATE(4335), 1, - sym_cell_path, - [115872] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(3908), 1, - sym_comment, - ACTIONS(2575), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115888] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(3909), 1, + ACTIONS(6971), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7679), 1, + anon_sym_DOT, + STATE(4051), 1, sym_comment, - ACTIONS(1974), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115904] = 7, + ACTIONS(1746), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [120772] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7520), 1, + ACTIONS(7683), 1, anon_sym_SQUOTE2, - STATE(3910), 1, + ACTIONS(7685), 1, + sym_unescaped_interpolated_content, + STATE(4052), 1, sym_comment, - STATE(3945), 1, + STATE(4128), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4590), 1, sym_expr_interpolated, - [115926] = 6, - ACTIONS(103), 1, + [120794] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(7522), 1, - anon_sym_DOT_DOT2, - STATE(3911), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5780), 1, + anon_sym_EQ, + ACTIONS(7687), 1, + anon_sym_COLON, + STATE(4053), 1, sym_comment, - ACTIONS(7524), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115946] = 6, + STATE(4559), 1, + aux_sym__repeat_newline, + STATE(5345), 1, + sym_param_type, + [120816] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7526), 1, + ACTIONS(7689), 1, anon_sym_DQUOTE, - STATE(3912), 1, + STATE(4054), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(5076), 1, + STATE(5245), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [115966] = 7, + [120836] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7530), 1, + ACTIONS(7693), 1, anon_sym_SQUOTE2, - STATE(3913), 1, + STATE(4055), 1, sym_comment, - STATE(3917), 1, + STATE(4064), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4590), 1, sym_expr_interpolated, - [115988] = 4, - ACTIONS(3), 1, + [120858] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(3914), 1, + ACTIONS(7695), 1, + anon_sym_DQUOTE, + STATE(4056), 1, sym_comment, - ACTIONS(1964), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116004] = 7, + STATE(4403), 1, + aux_sym_string_content_repeat1, + STATE(5118), 1, + sym_string_content, + ACTIONS(7691), 2, + sym__escaped_str_content, + sym_escape_sequence, + [120878] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7532), 1, + ACTIONS(5935), 1, anon_sym_EQ, - STATE(3915), 1, + ACTIONS(7687), 1, + anon_sym_COLON, + STATE(4057), 1, sym_comment, - STATE(4423), 1, + STATE(4559), 1, aux_sym__repeat_newline, - STATE(5088), 1, + STATE(5259), 1, sym_param_type, - [116026] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7534), 1, - aux_sym__immediate_decimal_token5, - STATE(3916), 1, - sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [116044] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7536), 1, - anon_sym_SQUOTE2, - STATE(3917), 1, - sym_comment, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [116066] = 5, + [120900] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1354), 1, - aux_sym__block_body_repeat1, - STATE(3918), 1, + STATE(4058), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3046), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [116084] = 4, + STATE(5012), 1, + sym__immediate_decimal, + ACTIONS(7430), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7432), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [120918] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(3919), 1, - sym_comment, - ACTIONS(2523), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116100] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(2966), 1, - sym_block, - STATE(3920), 1, + STATE(4059), 1, sym_comment, - STATE(4312), 1, - aux_sym__repeat_newline, - [116122] = 4, + STATE(4644), 1, + sym_block, + ACTIONS(7590), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [120936] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3921), 1, - sym_comment, - ACTIONS(2501), 2, + ACTIONS(2612), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [116138] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(2614), 1, sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(3922), 1, - sym_comment, - ACTIONS(1966), 2, + ACTIONS(7552), 1, anon_sym_RBRACK, + ACTIONS(7555), 1, anon_sym_DOT_DOT, - [116158] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(3923), 1, - sym_comment, - ACTIONS(1726), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116174] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_LT, - STATE(3924), 1, - sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, + ACTIONS(7557), 1, sym__entry_separator, - ACTIONS(5924), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [116192] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7540), 1, - anon_sym_LT, - STATE(3925), 1, + STATE(4060), 1, sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(5924), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [116210] = 4, + [120958] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(3926), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4061), 1, sym_comment, - ACTIONS(2567), 4, - anon_sym_if, + STATE(4653), 1, + sym_block, + ACTIONS(7590), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116226] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2575), 1, - sym__entry_separator, - STATE(3927), 1, - sym_comment, - ACTIONS(2577), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116246] = 6, + anon_sym_SEMI, + [120976] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1978), 1, + ACTIONS(2589), 1, + sym__space, + ACTIONS(2644), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - STATE(3928), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(4062), 1, sym_comment, - ACTIONS(1976), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116266] = 4, + ACTIONS(2591), 2, + sym__newline, + anon_sym_SEMI, + [120996] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(3929), 1, + ACTIONS(1900), 1, + sym__table_head_separator, + ACTIONS(7697), 1, + anon_sym_DOT2, + STATE(4063), 1, sym_comment, - ACTIONS(1802), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116282] = 6, + STATE(4261), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4812), 1, + sym_path, + STATE(5000), 1, + sym_cell_path, + [121018] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2523), 1, - sym__entry_separator, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(3930), 1, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7685), 1, + sym_unescaped_interpolated_content, + ACTIONS(7699), 1, + anon_sym_SQUOTE2, + STATE(4064), 1, sym_comment, - ACTIONS(2525), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116302] = 4, + STATE(4203), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, + sym_expr_interpolated, + [121040] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(3931), 1, - sym_comment, - ACTIONS(1870), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116318] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - sym__entry_separator, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_list, - STATE(3932), 1, + ACTIONS(1862), 1, + sym__table_head_separator, + ACTIONS(7697), 1, + anon_sym_DOT2, + STATE(4065), 1, sym_comment, - ACTIONS(2569), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116338] = 7, + STATE(4261), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4812), 1, + sym_path, + STATE(5087), 1, + sym_cell_path, + [121062] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7542), 1, + ACTIONS(5749), 1, anon_sym_EQ, - STATE(3933), 1, + ACTIONS(7687), 1, + anon_sym_COLON, + STATE(4066), 1, sym_comment, - STATE(4423), 1, + STATE(4559), 1, aux_sym__repeat_newline, - STATE(5093), 1, + STATE(5229), 1, sym_param_type, - [116360] = 6, + [121084] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7544), 1, - anon_sym_QMARK2, - ACTIONS(7546), 1, - anon_sym_BANG, - STATE(3934), 1, + ACTIONS(7701), 1, + anon_sym_RBRACK, + ACTIONS(7704), 1, + anon_sym_DOT_DOT, + STATE(4067), 1, sym_comment, - STATE(4733), 1, - sym__path_suffix, - ACTIONS(1448), 2, - sym__table_head_separator, - anon_sym_DOT2, - [116380] = 4, + STATE(4121), 1, + aux_sym_parameter_repeat2, + ACTIONS(1398), 2, + sym__newline, + anon_sym_COMMA, + [121104] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(3935), 1, + ACTIONS(7675), 1, + sym_identifier, + ACTIONS(7677), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(4066), 1, + sym__variable_name, + STATE(4068), 1, sym_comment, - ACTIONS(2501), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116396] = 4, - ACTIONS(3), 1, + STATE(4570), 1, + sym__assignment_pattern, + [121126] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(3936), 1, + ACTIONS(7706), 1, + anon_sym_DQUOTE, + STATE(4069), 1, sym_comment, - ACTIONS(2635), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116412] = 6, + STATE(4403), 1, + aux_sym_string_content_repeat1, + STATE(5147), 1, + sym_string_content, + ACTIONS(7691), 2, + sym__escaped_str_content, + sym_escape_sequence, + [121146] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(7548), 1, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7685), 1, + sym_unescaped_interpolated_content, + ACTIONS(7708), 1, + anon_sym_SQUOTE2, + STATE(4070), 1, + sym_comment, + STATE(4076), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, + sym_expr_interpolated, + [121168] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1956), 1, + anon_sym_LBRACE, + ACTIONS(7710), 1, anon_sym_DOT_DOT2, - STATE(3937), 1, + STATE(4071), 1, sym_comment, - ACTIONS(7550), 2, + ACTIONS(7712), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116432] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_list, - STATE(3938), 1, - sym_comment, - ACTIONS(2637), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116452] = 7, + [121188] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(7044), 1, - sym_identifier, - STATE(3939), 1, + STATE(4072), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4924), 1, - sym__variable_name, - [116474] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2525), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2527), 3, sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7552), 1, - anon_sym_EQ, - STATE(3940), 1, - sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5092), 1, - sym_param_type, - [116496] = 6, + anon_sym_SEMI, + sym__unquoted_pattern, + [121204] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(2648), 1, sym__space, - ACTIONS(2595), 1, + ACTIONS(2652), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2654), 1, sym__unquoted_pattern, - STATE(3941), 1, + STATE(4073), 1, sym_comment, - ACTIONS(1619), 2, + ACTIONS(2650), 2, sym__newline, anon_sym_SEMI, - [116516] = 5, + [121224] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(3942), 1, + STATE(4074), 1, sym_comment, - STATE(4399), 1, + STATE(4583), 1, sym_block, - ACTIONS(7480), 3, + ACTIONS(7656), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [116534] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, - STATE(3943), 1, - sym_comment, - ACTIONS(996), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116554] = 6, + [121242] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(7536), 1, + anon_sym_DOT_DOT2, + ACTIONS(7714), 1, + anon_sym_RBRACE, + ACTIONS(7716), 1, sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, - STATE(3944), 1, + STATE(4075), 1, sym_comment, - ACTIONS(1016), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116574] = 6, + ACTIONS(7538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121262] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7557), 1, - anon_sym_SQUOTE2, - ACTIONS(7559), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - STATE(4544), 1, - sym_expr_interpolated, - STATE(3945), 2, + ACTIONS(7718), 1, + anon_sym_SQUOTE2, + STATE(4076), 1, sym_comment, + STATE(4203), 1, aux_sym__inter_single_quotes_repeat1, - [116594] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3946), 1, - sym_comment, - ACTIONS(1726), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [116610] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1522), 1, - sym__entry_separator, - STATE(3947), 1, - sym_comment, - ACTIONS(1520), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [116626] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3948), 1, - sym_comment, - ACTIONS(1802), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [116642] = 4, + STATE(4590), 1, + sym_expr_interpolated, + [121284] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1537), 1, + ACTIONS(7161), 1, sym__entry_separator, - STATE(3949), 1, - sym_comment, - ACTIONS(1535), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, + ACTIONS(7258), 1, anon_sym_DOT2, - [116658] = 4, + STATE(360), 1, + sym_path, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4077), 1, + sym_comment, + STATE(4593), 1, + sym_cell_path, + [121306] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3950), 1, + ACTIONS(7536), 1, + anon_sym_DOT_DOT2, + ACTIONS(7720), 1, + anon_sym_RBRACE, + ACTIONS(7722), 1, + sym__entry_separator, + STATE(4078), 1, sym_comment, - ACTIONS(1870), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [116674] = 5, + ACTIONS(7538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121326] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(3951), 1, + STATE(4079), 1, sym_comment, - STATE(4481), 1, + STATE(4584), 1, sym_block, - ACTIONS(7422), 3, + ACTIONS(7656), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [116692] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3952), 1, - sym_comment, - ACTIONS(6137), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [116706] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3953), 1, - sym_comment, - STATE(5038), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [116724] = 6, + [121344] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, - STATE(3954), 1, + ACTIONS(7610), 1, + aux_sym__immediate_decimal_token5, + STATE(4080), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116744] = 6, + ACTIONS(1744), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1746), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [121362] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7562), 1, + ACTIONS(7724), 1, anon_sym_DQUOTE, - STATE(3955), 1, + STATE(4081), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(5181), 1, + STATE(4972), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [116764] = 7, + [121382] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7564), 1, + ACTIONS(7726), 1, anon_sym_SQUOTE2, - STATE(3956), 1, + STATE(4082), 1, sym_comment, - STATE(3960), 1, + STATE(4089), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4590), 1, sym_expr_interpolated, - [116786] = 7, - ACTIONS(3), 1, + [121404] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7566), 1, - anon_sym_EQ, - STATE(3957), 1, + ACTIONS(7113), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4083), 1, sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5200), 1, - sym_param_type, - [116808] = 5, + STATE(4721), 1, + sym_cell_path, + [121426] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3958), 1, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(4084), 1, sym_comment, - STATE(3972), 1, - aux_sym_parameter_repeat2, - ACTIONS(1388), 2, + ACTIONS(2525), 4, + anon_sym_if, sym__newline, - anon_sym_COMMA, - ACTIONS(7568), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116826] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121442] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3959), 1, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(4085), 1, sym_comment, - STATE(4546), 1, - sym_block, - ACTIONS(7488), 3, - ts_builtin_sym_end, + ACTIONS(2648), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [116844] = 7, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121458] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7570), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3960), 1, + ACTIONS(1973), 1, + sym__entry_separator, + ACTIONS(1975), 1, + anon_sym_RBRACE, + ACTIONS(7728), 1, + anon_sym_DOT_DOT2, + STATE(4086), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [116866] = 6, + ACTIONS(7730), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121478] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(3961), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7349), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(2874), 1, + sym__variable_name, + STATE(4087), 1, sym_comment, - ACTIONS(1966), 2, - sym__newline, - anon_sym_SEMI, - [116886] = 4, + [121500] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3962), 1, + ACTIONS(7732), 1, + aux_sym__immediate_decimal_token5, + STATE(4088), 1, sym_comment, - ACTIONS(6151), 2, + ACTIONS(1852), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6153), 3, - anon_sym_COLON, - anon_sym_GT2, + ACTIONS(1854), 2, anon_sym_RBRACE, - [116902] = 5, - ACTIONS(3), 1, + sym__unquoted_pattern_in_record, + [121518] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3963), 1, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7685), 1, + sym_unescaped_interpolated_content, + ACTIONS(7734), 1, + anon_sym_SQUOTE2, + STATE(4089), 1, sym_comment, - STATE(4548), 1, - sym_block, - ACTIONS(7488), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [116920] = 4, + STATE(4203), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, + sym_expr_interpolated, + [121540] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3964), 1, - sym_comment, - ACTIONS(6111), 2, - anon_sym_LPAREN2, + ACTIONS(5354), 1, sym__entry_separator, - ACTIONS(6113), 3, - anon_sym_COLON, - anon_sym_GT2, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4090), 1, + sym_comment, + STATE(4446), 1, + sym_cell_path, + [121562] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1362), 1, + aux_sym__block_body_repeat1, + STATE(4091), 1, + sym_comment, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3100), 2, + anon_sym_RPAREN, anon_sym_RBRACE, - [116936] = 6, + [121580] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7572), 1, - anon_sym_RBRACE, - ACTIONS(7574), 1, - sym__entry_separator, - STATE(3965), 1, + ACTIONS(1713), 1, + sym__space, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(4092), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116956] = 6, + ACTIONS(1614), 2, + sym__newline, + anon_sym_SEMI, + [121600] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7576), 1, + ACTIONS(7736), 1, anon_sym_DQUOTE, - STATE(3966), 1, + STATE(4093), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(5202), 1, + STATE(5131), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [116976] = 7, + [121620] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7578), 1, + ACTIONS(7738), 1, anon_sym_SQUOTE2, - STATE(3967), 1, + STATE(4094), 1, sym_comment, - STATE(4047), 1, + STATE(4099), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4590), 1, sym_expr_interpolated, - [116998] = 6, + [121642] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, + ACTIONS(1022), 1, sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - STATE(3070), 1, - sym__flag_equals_value, - STATE(3968), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4095), 1, sym_comment, - ACTIONS(4365), 2, + ACTIONS(1020), 2, sym__newline, anon_sym_SEMI, - [117018] = 6, + [121662] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7580), 1, - anon_sym_DQUOTE, - STATE(3969), 1, + ACTIONS(7740), 1, + anon_sym_LT, + STATE(4096), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4800), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117038] = 5, + ACTIONS(5245), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6012), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [121680] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3970), 1, + ACTIONS(7532), 1, + anon_sym_EQ2, + STATE(4097), 1, sym_comment, - STATE(4997), 1, - sym__immediate_decimal, - ACTIONS(7299), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [117056] = 4, + STATE(4711), 1, + sym__flag_equals_value, + ACTIONS(4530), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [121698] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3971), 1, + ACTIONS(7742), 1, + anon_sym_DASH_DASH, + STATE(4582), 1, + sym_long_flag, + ACTIONS(4539), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + STATE(4098), 2, sym_comment, - ACTIONS(994), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117072] = 4, - ACTIONS(3), 1, + aux_sym_decl_def_repeat1, + [121716] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7685), 1, + sym_unescaped_interpolated_content, + ACTIONS(7745), 1, + anon_sym_SQUOTE2, + STATE(4099), 1, + sym_comment, + STATE(4203), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, + sym_expr_interpolated, + [121738] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6506), 2, + ACTIONS(7747), 1, + anon_sym_LT, + STATE(4100), 1, + sym_comment, + ACTIONS(5245), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6012), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7582), 2, - sym__newline, - anon_sym_COMMA, - STATE(3972), 2, + anon_sym_GT2, + [121756] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4101), 1, sym_comment, - aux_sym_parameter_repeat2, - [117088] = 4, - ACTIONS(3), 1, + ACTIONS(2525), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2527), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [121772] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3973), 1, + STATE(4102), 1, sym_comment, - ACTIONS(1018), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117104] = 6, + ACTIONS(6313), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6315), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [121788] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7585), 1, + ACTIONS(7749), 1, anon_sym_DQUOTE, - STATE(3974), 1, + STATE(4103), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4939), 1, + STATE(5228), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117124] = 7, + [121808] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7587), 1, + ACTIONS(7751), 1, anon_sym_SQUOTE2, - STATE(3975), 1, + STATE(4104), 1, sym_comment, - STATE(3978), 1, + STATE(4109), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4590), 1, sym_expr_interpolated, - [117146] = 6, + [121830] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7536), 1, anon_sym_DOT_DOT2, - ACTIONS(7589), 1, + ACTIONS(7753), 1, anon_sym_RBRACE, - ACTIONS(7591), 1, + ACTIONS(7755), 1, sym__entry_separator, - STATE(3976), 1, - sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117166] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - anon_sym_LBRACE, - ACTIONS(7593), 1, - anon_sym_DOT_DOT2, - STATE(3977), 1, + STATE(4105), 1, sym_comment, - ACTIONS(7595), 2, + ACTIONS(7538), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117186] = 7, + [121850] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7597), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3978), 1, + ACTIONS(1030), 1, + sym__space, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4106), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117208] = 6, + ACTIONS(994), 2, + sym__newline, + anon_sym_SEMI, + [121870] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7599), 1, + ACTIONS(7757), 1, anon_sym_DQUOTE, - STATE(3979), 1, + STATE(4107), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(5022), 1, + STATE(5224), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117228] = 7, + [121890] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7601), 1, + ACTIONS(7759), 1, anon_sym_SQUOTE2, - STATE(3980), 1, + STATE(4108), 1, sym_comment, - STATE(3982), 1, + STATE(4130), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4590), 1, sym_expr_interpolated, - [117250] = 7, + [121912] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7603), 1, + ACTIONS(7761), 1, anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3981), 1, + STATE(4109), 1, sym_comment, - STATE(4544), 1, + STATE(4203), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, sym_expr_interpolated, - [117272] = 7, + [121934] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7605), 1, + ACTIONS(7763), 1, anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3982), 1, + STATE(4110), 1, sym_comment, - STATE(4544), 1, + STATE(4203), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, sym_expr_interpolated, - [117294] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3983), 1, - sym_comment, - STATE(4415), 1, - sym_block, - ACTIONS(7309), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [117312] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3984), 1, - sym_comment, - STATE(4417), 1, - sym_block, - ACTIONS(7309), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [117330] = 5, + [121956] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7432), 1, - aux_sym__immediate_decimal_token5, - STATE(3985), 1, - sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1956), 1, sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [117348] = 6, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(4111), 1, + sym_comment, + ACTIONS(1958), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [121976] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7607), 1, + ACTIONS(7765), 1, anon_sym_DQUOTE, - STATE(3986), 1, + STATE(4112), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4792), 1, + STATE(5365), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117368] = 7, + [121996] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7609), 1, + ACTIONS(7767), 1, anon_sym_SQUOTE2, - STATE(3987), 1, + STATE(4113), 1, sym_comment, - STATE(3988), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [117390] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7611), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, + STATE(4117), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3988), 1, - sym_comment, - STATE(4544), 1, + STATE(4590), 1, sym_expr_interpolated, - [117412] = 5, + [122018] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3989), 1, - sym_comment, - STATE(4395), 1, - sym_block, - ACTIONS(7270), 3, - ts_builtin_sym_end, + ACTIONS(2907), 1, sym__newline, - anon_sym_SEMI, - [117430] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3990), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117446] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7613), 1, - anon_sym_DQUOTE, - STATE(3991), 1, + ACTIONS(5761), 1, + anon_sym_EQ, + ACTIONS(7687), 1, + anon_sym_COLON, + STATE(4114), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4812), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117466] = 7, + STATE(4559), 1, + aux_sym__repeat_newline, + STATE(5237), 1, + sym_param_type, + [122040] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7615), 1, + ACTIONS(7769), 1, anon_sym_SQUOTE2, - STATE(3992), 1, - sym_comment, - STATE(3994), 1, + STATE(4110), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4115), 1, + sym_comment, + STATE(4590), 1, sym_expr_interpolated, - [117488] = 4, + [122062] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_QMARK2, - STATE(3993), 1, + ACTIONS(5765), 1, + sym__space, + ACTIONS(7512), 1, + anon_sym_EQ2, + STATE(3164), 1, + sym__flag_equals_value, + STATE(4116), 1, sym_comment, - ACTIONS(1438), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [117504] = 7, + ACTIONS(5763), 2, + sym__newline, + anon_sym_SEMI, + [122082] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7617), 1, + ACTIONS(7771), 1, anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3994), 1, + STATE(4117), 1, sym_comment, - STATE(4544), 1, + STATE(4203), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, sym_expr_interpolated, - [117526] = 5, + [122104] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7619), 1, - aux_sym__immediate_decimal_token5, - STATE(3995), 1, + STATE(4118), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(6261), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1804), 2, + ACTIONS(6263), 3, + anon_sym_COLON, + anon_sym_GT2, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [117544] = 6, + [122120] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7621), 1, + ACTIONS(7773), 1, anon_sym_DQUOTE, - STATE(3996), 1, + STATE(4119), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4829), 1, + STATE(4964), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117564] = 5, - ACTIONS(3), 1, + [122140] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1356), 1, - aux_sym__block_body_repeat1, - STATE(3997), 1, + ACTIONS(7775), 1, + anon_sym_DQUOTE, + STATE(4120), 1, sym_comment, - ACTIONS(153), 2, + STATE(4403), 1, + aux_sym_string_content_repeat1, + STATE(4979), 1, + sym_string_content, + ACTIONS(7691), 2, + sym__escaped_str_content, + sym_escape_sequence, + [122160] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6706), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7777), 2, sym__newline, - anon_sym_SEMI, - ACTIONS(459), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [117582] = 6, + anon_sym_COMMA, + STATE(4121), 2, + sym_comment, + aux_sym_parameter_repeat2, + [122176] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7623), 1, + ACTIONS(7780), 1, anon_sym_DQUOTE, - STATE(3998), 1, + STATE(4122), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4843), 1, + STATE(4992), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117602] = 6, + [122196] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7625), 1, + ACTIONS(7782), 1, anon_sym_DQUOTE, - STATE(3999), 1, + STATE(4123), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4855), 1, + STATE(5003), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117622] = 6, + [122216] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1772), 1, + sym__unquoted_pattern, + STATE(4124), 1, + sym_comment, + ACTIONS(1770), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122232] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7627), 1, + ACTIONS(7784), 1, anon_sym_DQUOTE, - STATE(4000), 1, + STATE(4125), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4864), 1, + STATE(5013), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117642] = 3, + [122252] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4001), 1, + STATE(4126), 1, sym_comment, - ACTIONS(6093), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 3, anon_sym_LBRACE, - [117656] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122268] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token5, - STATE(4002), 1, + STATE(4127), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1770), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1738), 2, + ACTIONS(1772), 3, anon_sym_RBRACK, + anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [117674] = 6, + [122284] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7685), 1, + sym_unescaped_interpolated_content, + ACTIONS(7786), 1, + anon_sym_SQUOTE2, + STATE(4128), 1, + sym_comment, + STATE(4203), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, + sym_expr_interpolated, + [122306] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7629), 1, + ACTIONS(7788), 1, anon_sym_DQUOTE, - STATE(4003), 1, + STATE(4129), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4873), 1, + STATE(5020), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117694] = 6, + [122326] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7685), 1, + sym_unescaped_interpolated_content, + ACTIONS(7790), 1, + anon_sym_SQUOTE2, + STATE(4130), 1, + sym_comment, + STATE(4203), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, + sym_expr_interpolated, + [122348] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7631), 1, + ACTIONS(7792), 1, anon_sym_DQUOTE, - STATE(4004), 1, + STATE(4131), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4880), 1, + STATE(5027), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117714] = 6, + [122368] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7536), 1, anon_sym_DOT_DOT2, - ACTIONS(7633), 1, - anon_sym_RBRACE, - ACTIONS(7635), 1, + ACTIONS(7542), 1, + anon_sym_RBRACK, + ACTIONS(7550), 1, sym__entry_separator, - STATE(4005), 1, + STATE(4132), 1, sym_comment, - ACTIONS(7426), 2, + ACTIONS(7538), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117734] = 6, + [122388] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5322), 1, + anon_sym_DOLLAR, + ACTIONS(7328), 1, + sym_identifier, + STATE(2825), 1, + sym_val_variable, + STATE(4133), 1, + sym_comment, + STATE(5179), 1, + sym__variable_name, + [122410] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7637), 1, + ACTIONS(7794), 1, anon_sym_DQUOTE, - STATE(4006), 1, + STATE(4134), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4887), 1, + STATE(5034), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117754] = 3, - ACTIONS(3), 1, + [122430] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4007), 1, + STATE(4135), 1, sym_comment, - ACTIONS(6107), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [117768] = 6, + ACTIONS(1870), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1872), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [122446] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2597), 1, + sym__entry_separator, + STATE(4136), 1, + sym_comment, + ACTIONS(2599), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [122466] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7639), 1, + ACTIONS(7796), 1, anon_sym_DQUOTE, - STATE(4008), 1, + STATE(4137), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4894), 1, + STATE(5041), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117788] = 6, + [122486] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1973), 1, + sym__entry_separator, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_list, + STATE(4138), 1, + sym_comment, + ACTIONS(1975), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [122506] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7641), 1, + ACTIONS(7798), 1, anon_sym_DQUOTE, - STATE(4009), 1, + STATE(4139), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4901), 1, + STATE(5048), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117808] = 6, + [122526] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7643), 1, + ACTIONS(7800), 1, anon_sym_DQUOTE, - STATE(4010), 1, + STATE(4140), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4908), 1, + STATE(5054), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117828] = 6, + [122546] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7802), 1, anon_sym_DQUOTE, - STATE(4011), 1, + STATE(4141), 1, sym_comment, - STATE(4258), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4913), 1, + STATE(5060), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117848] = 6, + [122566] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7804), 1, + anon_sym_QMARK2, + STATE(4142), 1, + sym_comment, + ACTIONS(1448), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [122582] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1854), 1, + sym__unquoted_pattern, + STATE(4143), 1, + sym_comment, + ACTIONS(1852), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122598] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2541), 1, + sym__entry_separator, + ACTIONS(2642), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + STATE(4144), 1, + sym_comment, + ACTIONS(2543), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [122618] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1872), 1, sym__unquoted_pattern, - ACTIONS(2575), 1, - sym__space, - STATE(4012), 1, + STATE(4145), 1, sym_comment, - ACTIONS(2577), 2, + ACTIONS(1870), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [117868] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122634] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, + ACTIONS(2589), 1, + sym__entry_separator, + ACTIONS(2644), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern_in_list, + STATE(4146), 1, + sym_comment, + ACTIONS(2591), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [122654] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1635), 1, sym__unquoted_pattern, - STATE(4013), 1, + ACTIONS(1956), 1, + sym__space, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(4147), 1, sym_comment, - ACTIONS(1976), 2, + ACTIONS(1958), 2, sym__newline, anon_sym_SEMI, - [117888] = 7, + [122674] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2088), 1, + sym__entry_separator, + ACTIONS(7806), 1, + anon_sym_LBRACK2, + STATE(4148), 1, + sym_comment, + ACTIONS(2090), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [122692] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7647), 1, + ACTIONS(5919), 1, anon_sym_EQ, - STATE(4014), 1, + ACTIONS(7687), 1, + anon_sym_COLON, + STATE(4149), 1, sym_comment, - STATE(4423), 1, + STATE(4559), 1, aux_sym__repeat_newline, - STATE(4960), 1, + STATE(5113), 1, sym_param_type, - [117910] = 4, + [122714] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4150), 1, + sym_comment, + STATE(5112), 1, + sym__immediate_decimal, + ACTIONS(6664), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6666), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [122732] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(4015), 1, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5271), 1, + anon_sym_DOLLAR, + ACTIONS(7408), 1, + sym_identifier, + STATE(2957), 1, + sym__variable_name, + STATE(3051), 1, + sym_val_variable, + STATE(4151), 1, + sym_comment, + [122754] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4152), 1, + sym_comment, + ACTIONS(1022), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122770] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4153), 1, + sym_comment, + ACTIONS(1030), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122786] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7536), 1, + anon_sym_DOT_DOT2, + ACTIONS(7808), 1, + anon_sym_RBRACE, + ACTIONS(7810), 1, + sym__entry_separator, + STATE(4154), 1, + sym_comment, + ACTIONS(7538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122806] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7667), 1, + aux_sym__immediate_decimal_token5, + STATE(4155), 1, + sym_comment, + ACTIONS(1744), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1746), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [122824] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4156), 1, + sym_comment, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122840] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7812), 1, + aux_sym__immediate_decimal_token5, + STATE(4157), 1, + sym_comment, + ACTIONS(1852), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [122858] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4121), 1, + aux_sym_parameter_repeat2, + STATE(4158), 1, + sym_comment, + ACTIONS(1398), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7704), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [122876] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(4159), 1, + sym_comment, + ACTIONS(886), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122892] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(2597), 1, + sym__space, + STATE(4160), 1, + sym_comment, + ACTIONS(2599), 2, + sym__newline, + anon_sym_SEMI, + [122912] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4161), 1, + sym_comment, + ACTIONS(2525), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2527), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + sym__unquoted_pattern_in_list, + [122928] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2648), 1, + sym__entry_separator, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern_in_list, + STATE(4162), 1, + sym_comment, + ACTIONS(2650), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [122948] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7445), 1, + aux_sym__immediate_decimal_token5, + STATE(4163), 1, + sym_comment, + ACTIONS(1744), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1746), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [122966] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3054), 1, + sym_block, + STATE(4164), 1, sym_comment, - ACTIONS(1726), 2, + STATE(4336), 1, + aux_sym__repeat_newline, + [122988] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1973), 1, + sym__space, + ACTIONS(1977), 1, anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(4165), 1, + sym_comment, + ACTIONS(1975), 2, + sym__newline, + anon_sym_SEMI, + [123008] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7675), 1, + sym_identifier, + ACTIONS(7677), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(4166), 1, + sym_comment, + STATE(4186), 1, + sym__variable_name, + STATE(4370), 1, + sym__assignment_pattern, + [123030] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7804), 1, + anon_sym_BANG, + STATE(4167), 1, + sym_comment, + ACTIONS(1448), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [123046] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1022), 1, sym__entry_separator, - ACTIONS(1728), 3, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern_in_list, + STATE(4168), 1, + sym_comment, + ACTIONS(1020), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117926] = 4, + [123066] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, + ACTIONS(2614), 1, sym__unquoted_pattern, - STATE(4016), 1, + STATE(4169), 1, sym_comment, - ACTIONS(7210), 4, + ACTIONS(7268), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [117942] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4017), 1, - sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117958] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4018), 1, - sym_comment, - ACTIONS(1870), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1872), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117974] = 7, - ACTIONS(103), 1, + [123082] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7649), 1, - anon_sym_SQUOTE2, - STATE(3981), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4019), 1, + ACTIONS(1444), 1, + anon_sym_COLON2, + ACTIONS(5010), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(496), 1, + sym_cell_path, + STATE(2323), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4170), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117996] = 6, + [123104] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, + ACTIONS(1744), 1, sym__space, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(4020), 1, + ACTIONS(6975), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7814), 1, + anon_sym_DOT, + STATE(4171), 1, sym_comment, - ACTIONS(2525), 2, + ACTIONS(1746), 2, sym__newline, anon_sym_SEMI, - [118016] = 7, + [123124] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - STATE(1934), 1, - aux_sym__types_body_repeat1, - STATE(4021), 1, + ACTIONS(1746), 1, + sym__unquoted_pattern, + ACTIONS(7671), 1, + aux_sym__immediate_decimal_token5, + STATE(4172), 1, sym_comment, - STATE(4569), 1, - sym_val_list, - STATE(4579), 1, - aux_sym__table_body_repeat1, - [118038] = 7, + ACTIONS(1744), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123142] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(1030), 1, + sym__entry_separator, + ACTIONS(2656), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2658), 1, sym__unquoted_pattern_in_list, - ACTIONS(7278), 1, - anon_sym_DOT_DOT, - ACTIONS(7442), 1, + STATE(4173), 1, + sym_comment, + ACTIONS(994), 2, anon_sym_RBRACK, - ACTIONS(7445), 1, - sym__entry_separator, - STATE(4022), 1, + anon_sym_DOT_DOT, + [123162] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7816), 1, + anon_sym_QMARK2, + ACTIONS(7818), 1, + anon_sym_BANG, + STATE(4174), 1, sym_comment, - [118060] = 7, + STATE(4827), 1, + sym__path_suffix, + ACTIONS(1458), 2, + sym__table_head_separator, + anon_sym_DOT2, + [123182] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(7044), 1, - sym_identifier, - STATE(4023), 1, + STATE(4175), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(5164), 1, - sym__variable_name, - [118082] = 4, + ACTIONS(1770), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1772), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [123198] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4024), 1, + STATE(4176), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1872), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 3, + ACTIONS(1870), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118098] = 6, + [123214] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7568), 1, - anon_sym_DOT_DOT, - ACTIONS(7651), 1, - anon_sym_RBRACK, - STATE(3972), 1, - aux_sym_parameter_repeat2, - STATE(4025), 1, - sym_comment, - ACTIONS(1388), 2, - sym__newline, - anon_sym_COMMA, - [118118] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - sym__space, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(1854), 1, sym__unquoted_pattern, - STATE(4026), 1, + ACTIONS(7820), 1, + aux_sym__immediate_decimal_token5, + STATE(4177), 1, sym_comment, - ACTIONS(2569), 2, + ACTIONS(1852), 3, sym__newline, - anon_sym_SEMI, - [118138] = 6, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123232] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5622), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - STATE(2955), 1, - sym__flag_equals_value, - STATE(4027), 1, + ACTIONS(7675), 1, + sym_identifier, + ACTIONS(7677), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(4114), 1, + sym__variable_name, + STATE(4178), 1, sym_comment, - ACTIONS(5620), 2, - sym__newline, - anon_sym_SEMI, - [118158] = 7, - ACTIONS(3), 1, + STATE(4370), 1, + sym__assignment_pattern, + [123254] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1434), 1, - anon_sym_COLON2, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(492), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4028), 1, + ACTIONS(7822), 1, + anon_sym_DQUOTE, + STATE(4179), 1, sym_comment, - [118180] = 5, + STATE(4403), 1, + aux_sym_string_content_repeat1, + STATE(4963), 1, + sym_string_content, + ACTIONS(7691), 2, + sym__escaped_str_content, + sym_escape_sequence, + [123274] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, + STATE(1365), 1, aux_sym__block_body_repeat1, - STATE(4029), 1, + STATE(4180), 1, sym_comment, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3073), 2, + ACTIONS(3098), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [118198] = 4, + [123292] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1635), 1, + sym__unquoted_pattern, + STATE(4181), 1, + sym_comment, + ACTIONS(1956), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123308] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4030), 1, + STATE(4182), 1, sym_comment, - ACTIONS(2501), 2, + ACTIONS(1852), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(2503), 3, + ACTIONS(1854), 3, sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [118214] = 6, - ACTIONS(103), 1, + [123324] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__space, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(4031), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4183), 1, sym_comment, - ACTIONS(2637), 2, + STATE(4774), 1, + sym_block, + ACTIONS(7441), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [118234] = 5, + [123342] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token5, - STATE(4032), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4184), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [118252] = 6, + STATE(4576), 1, + sym_block, + ACTIONS(7441), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [123360] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7654), 1, - anon_sym_RBRACE, - ACTIONS(7656), 1, - sym__entry_separator, - STATE(4033), 1, - sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118272] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3915), 1, - sym__variable_name, - STATE(4034), 1, + STATE(4185), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4307), 1, - sym__assignment_pattern, - [118294] = 5, + ACTIONS(1870), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1872), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [123376] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7658), 1, - aux_sym__immediate_decimal_token5, - STATE(4035), 1, - sym_comment, - ACTIONS(1802), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [118312] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7660), 1, - anon_sym_DQUOTE, - STATE(4036), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5671), 1, + anon_sym_EQ, + ACTIONS(7687), 1, + anon_sym_COLON, + STATE(4186), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4824), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [118332] = 6, + STATE(4559), 1, + aux_sym__repeat_newline, + STATE(5223), 1, + sym_param_type, + [123398] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7536), 1, anon_sym_DOT_DOT2, - ACTIONS(7662), 1, + ACTIONS(7824), 1, anon_sym_RBRACE, - ACTIONS(7664), 1, + ACTIONS(7826), 1, sym__entry_separator, - STATE(4037), 1, + STATE(4187), 1, sym_comment, - ACTIONS(7426), 2, + ACTIONS(7538), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118352] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7420), 1, - anon_sym_EQ2, - STATE(4038), 1, - sym_comment, - STATE(4462), 1, - sym__flag_equals_value, - ACTIONS(4367), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118370] = 5, - ACTIONS(3), 1, + [123418] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7666), 1, - anon_sym_DASH_DASH, - STATE(4547), 1, - sym_long_flag, - ACTIONS(4453), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - STATE(4039), 2, + ACTIONS(1549), 1, + sym__entry_separator, + STATE(4188), 1, sym_comment, - aux_sym_decl_def_repeat1, - [118388] = 7, + ACTIONS(1547), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [123434] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3957), 1, - sym__variable_name, - STATE(4040), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4189), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4307), 1, - sym__assignment_pattern, - [118410] = 7, + STATE(4519), 1, + sym_block, + ACTIONS(7534), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [123452] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3933), 1, - sym__variable_name, - STATE(4041), 1, - sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4403), 1, - sym__assignment_pattern, - [118432] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1736), 1, - sym__space, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7669), 1, - anon_sym_DOT, - STATE(4042), 1, - sym_comment, - ACTIONS(1738), 2, + ACTIONS(3946), 1, + anon_sym_LBRACK, + ACTIONS(3990), 1, sym__newline, - anon_sym_SEMI, - [118452] = 5, + STATE(1951), 1, + aux_sym__types_body_repeat1, + STATE(4190), 1, + sym_comment, + STATE(4603), 1, + sym_val_list, + STATE(4612), 1, + aux_sym__table_body_repeat1, + [123474] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(2646), 1, sym__unquoted_pattern, - ACTIONS(7252), 1, - aux_sym__immediate_decimal_token5, - STATE(4043), 1, + STATE(4191), 1, sym_comment, - ACTIONS(1736), 3, + ACTIONS(2589), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118470] = 5, + [123490] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1564), 1, + sym__entry_separator, + STATE(4192), 1, + sym_comment, + ACTIONS(1562), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [123506] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(1983), 1, sym__unquoted_pattern, - ACTIONS(7671), 1, - aux_sym__immediate_decimal_token5, - STATE(4044), 1, + STATE(4193), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(2597), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118488] = 7, + [123522] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7675), 1, sym_identifier, - ACTIONS(7508), 1, + ACTIONS(7677), 1, anon_sym_DOLLAR, - STATE(4014), 1, + STATE(2825), 1, + sym_val_variable, + STATE(4149), 1, sym__variable_name, - STATE(4045), 1, + STATE(4194), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4597), 1, + STATE(4561), 1, sym__assignment_pattern_parenthesized, - [118510] = 7, + [123544] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3940), 1, - sym__variable_name, - STATE(4046), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(4195), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4597), 1, - sym__assignment_pattern_parenthesized, - [118532] = 7, + ACTIONS(1973), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123560] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7673), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4047), 1, + ACTIONS(1956), 1, + sym__entry_separator, + ACTIONS(1958), 1, + anon_sym_RBRACE, + ACTIONS(7828), 1, + anon_sym_DOT_DOT2, + STATE(4196), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [118554] = 6, + ACTIONS(7830), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123580] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1621), 1, - anon_sym_RBRACE, - ACTIONS(1627), 1, + ACTIONS(1498), 1, sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - STATE(1475), 1, - aux_sym__types_body_repeat2, - STATE(4048), 1, + STATE(4197), 1, sym_comment, - [118573] = 3, - ACTIONS(3), 1, + ACTIONS(1496), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [123596] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4049), 1, + ACTIONS(4530), 1, + sym__space, + ACTIONS(7512), 1, + anon_sym_EQ2, + STATE(3070), 1, + sym__flag_equals_value, + STATE(4198), 1, sym_comment, - ACTIONS(7675), 4, + ACTIONS(4528), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118586] = 3, + [123616] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4050), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4199), 1, sym_comment, - ACTIONS(7677), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [118599] = 6, - ACTIONS(3), 1, + STATE(4728), 1, + sym_block, + ACTIONS(7580), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [123634] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1726), 1, - anon_sym_LBRACE, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7679), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7681), 1, + ACTIONS(7832), 1, aux_sym__immediate_decimal_token5, - STATE(4051), 1, + STATE(4200), 1, sym_comment, - [118618] = 3, + ACTIONS(1852), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1854), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [123652] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4052), 1, + STATE(1364), 1, + aux_sym__block_body_repeat1, + STATE(4201), 1, sym_comment, - ACTIONS(7675), 4, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, + ACTIONS(461), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [118631] = 3, + [123670] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1973), 1, + anon_sym_LBRACE, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(7834), 1, + anon_sym_DOT_DOT2, + STATE(4202), 1, + sym_comment, + ACTIONS(7836), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123690] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7838), 1, + anon_sym_LPAREN, + ACTIONS(7841), 1, + anon_sym_SQUOTE2, + ACTIONS(7843), 1, + sym_unescaped_interpolated_content, + STATE(4590), 1, + sym_expr_interpolated, + STATE(4203), 2, + sym_comment, + aux_sym__inter_single_quotes_repeat1, + [123710] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7675), 1, + sym_identifier, + ACTIONS(7677), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, STATE(4053), 1, + sym__variable_name, + STATE(4204), 1, + sym_comment, + STATE(4561), 1, + sym__assignment_pattern_parenthesized, + [123732] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1679), 1, + sym__unquoted_pattern, + STATE(4205), 1, + sym_comment, + ACTIONS(2541), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123748] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4206), 1, + sym_comment, + ACTIONS(1852), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1854), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [123764] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(7846), 1, + anon_sym_LBRACK, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(4207), 1, + sym_comment, + STATE(4969), 1, + sym_val_list, + [123783] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4208), 1, sym_comment, - ACTIONS(7683), 4, + ACTIONS(7848), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [118644] = 3, + [123796] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4054), 1, + STATE(4209), 1, sym_comment, - ACTIONS(7683), 4, + ACTIONS(7850), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [118657] = 4, + [123809] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4055), 1, + ACTIONS(2102), 1, + sym__entry_separator, + STATE(4210), 1, sym_comment, - ACTIONS(6121), 2, - anon_sym_AT2, + ACTIONS(2104), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [123824] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2110), 1, sym__entry_separator, - ACTIONS(6123), 2, + STATE(4211), 1, + sym_comment, + ACTIONS(2112), 3, anon_sym_RBRACK, - anon_sym_GT2, - [118672] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [123839] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(4056), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(6094), 1, + sym__entry_separator, + ACTIONS(6096), 1, + anon_sym_RBRACE, + STATE(4212), 1, sym_comment, - ACTIONS(2635), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118687] = 4, + STATE(5178), 1, + sym__expr_parenthesized_immediate, + [123858] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(4057), 1, + STATE(4213), 1, sym_comment, - ACTIONS(968), 3, + ACTIONS(7852), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118702] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123871] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2194), 1, + ACTIONS(2118), 1, sym__entry_separator, - STATE(4058), 1, + STATE(4214), 1, sym_comment, - ACTIONS(2196), 3, + ACTIONS(2120), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [118717] = 6, - ACTIONS(3), 1, + [123886] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1460), 1, - sym__table_head_separator, - ACTIONS(7510), 1, - anon_sym_DOT2, - STATE(4059), 1, + STATE(4215), 1, sym_comment, - STATE(4065), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, - sym_path, - [118736] = 3, + ACTIONS(5245), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6012), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [123901] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4060), 1, - sym_comment, - ACTIONS(7685), 4, - anon_sym_EQ, - anon_sym_in, + ACTIONS(2907), 1, sym__newline, - anon_sym_COLON, - [118749] = 4, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3076), 1, + sym_block, + STATE(4216), 1, + sym_comment, + STATE(4499), 1, + aux_sym__repeat_newline, + [123920] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(2614), 1, sym__unquoted_pattern, - STATE(4061), 1, + STATE(4217), 1, sym_comment, - ACTIONS(994), 3, + ACTIONS(1713), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [118764] = 4, - ACTIONS(3), 1, + [123935] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(4062), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2541), 1, + sym__entry_separator, + ACTIONS(2543), 1, + anon_sym_RBRACK, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(4218), 1, sym_comment, - ACTIONS(1018), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118779] = 3, + [123954] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4063), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(4219), 1, sym_comment, - ACTIONS(4102), 4, - ts_builtin_sym_end, + ACTIONS(7268), 3, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [118792] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123969] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4064), 1, - sym_comment, - ACTIONS(6125), 2, - anon_sym_AT2, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(7753), 1, + anon_sym_RBRACE, + ACTIONS(7755), 1, sym__entry_separator, - ACTIONS(6127), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [118807] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - sym__table_head_separator, - ACTIONS(7687), 1, - anon_sym_DOT2, - STATE(4641), 1, - sym_path, - STATE(4065), 2, + STATE(4220), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [118824] = 5, + STATE(4906), 1, + sym__expr_parenthesized_immediate, + [123988] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3073), 1, - ts_builtin_sym_end, - STATE(1371), 1, - aux_sym__block_body_repeat1, - STATE(4066), 1, - sym_comment, - ACTIONS(55), 2, + ACTIONS(2907), 1, sym__newline, - anon_sym_SEMI, - [118841] = 3, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3079), 1, + sym_block, + STATE(4221), 1, + sym_comment, + [124007] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4067), 1, + STATE(4222), 1, sym_comment, - ACTIONS(4104), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [118854] = 3, + ACTIONS(7854), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124020] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4068), 1, + STATE(4223), 1, sym_comment, - ACTIONS(7690), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118867] = 3, + ACTIONS(7856), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124033] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4069), 1, + ACTIONS(7860), 1, + anon_sym_RPAREN, + STATE(4224), 1, sym_comment, - ACTIONS(7690), 4, + STATE(4429), 1, + aux_sym__block_body_repeat1, + ACTIONS(7858), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118880] = 3, + [124050] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4070), 1, + ACTIONS(7214), 1, + anon_sym_LBRACK, + ACTIONS(7216), 1, + anon_sym_LPAREN, + STATE(3992), 1, + sym_parameter_parens, + STATE(3993), 1, + sym_parameter_bracks, + STATE(4225), 1, sym_comment, - ACTIONS(7692), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118893] = 4, + [124069] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2198), 1, + ACTIONS(2204), 1, sym__entry_separator, - STATE(4071), 1, + STATE(4226), 1, sym_comment, - ACTIONS(2200), 3, + ACTIONS(2206), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [118908] = 4, - ACTIONS(103), 1, + [124084] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4072), 1, + ACTIONS(1713), 1, + anon_sym_LBRACE, + ACTIONS(7862), 1, + anon_sym_DOT_DOT2, + STATE(4227), 1, sym_comment, - ACTIONS(6129), 2, - anon_sym_AT2, + ACTIONS(7864), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124101] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2537), 1, sym__entry_separator, - ACTIONS(6131), 2, + STATE(4228), 1, + sym_comment, + ACTIONS(2539), 3, anon_sym_RBRACK, anon_sym_GT2, - [118923] = 4, + anon_sym_RBRACE, + [124116] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(4073), 1, + ACTIONS(7868), 1, + sym__space, + STATE(4229), 1, sym_comment, - ACTIONS(6133), 2, - anon_sym_AT2, + STATE(4427), 1, + aux_sym_attribute_repeat1, + ACTIONS(7866), 2, + sym__newline, + anon_sym_SEMI, + [124133] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(886), 1, + sym__space, + ACTIONS(5071), 1, + sym__unquoted_pattern, + STATE(4230), 1, + sym_comment, + ACTIONS(866), 2, + sym__newline, + anon_sym_SEMI, + [124150] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(6135), 2, + ACTIONS(7870), 1, + anon_sym_LBRACK, + ACTIONS(7872), 1, anon_sym_RBRACK, - anon_sym_GT2, - [118938] = 4, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(4231), 1, + sym_comment, + [124169] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(2228), 1, sym__entry_separator, - STATE(4074), 1, + STATE(4232), 1, sym_comment, - ACTIONS(2102), 3, + ACTIONS(2230), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [118953] = 4, + [124184] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(2232), 1, sym__entry_separator, - STATE(4075), 1, + STATE(4233), 1, sym_comment, - ACTIONS(2078), 3, + ACTIONS(2234), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [118968] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4076), 1, - sym_comment, - ACTIONS(5221), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [118981] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(4077), 1, - sym_comment, - ACTIONS(868), 2, - sym__newline, - anon_sym_SEMI, - [118998] = 3, + [124199] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4078), 1, + STATE(4234), 1, sym_comment, - ACTIONS(7694), 4, + ACTIONS(7874), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119011] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124212] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2236), 1, sym__entry_separator, - STATE(4079), 1, + STATE(4235), 1, sym_comment, - ACTIONS(2122), 3, + ACTIONS(2238), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119026] = 3, + [124227] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4080), 1, + STATE(4236), 1, sym_comment, - ACTIONS(5237), 4, - ts_builtin_sym_end, + ACTIONS(7874), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [119039] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124240] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4081), 1, + STATE(4237), 1, sym_comment, - ACTIONS(7696), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119052] = 3, - ACTIONS(3), 1, + ACTIONS(7876), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7878), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [124255] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4082), 1, + ACTIONS(7868), 1, + sym__space, + STATE(4229), 1, + aux_sym_attribute_repeat1, + STATE(4238), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(7880), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119065] = 3, + [124272] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4083), 1, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(4239), 1, sym_comment, - ACTIONS(7675), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119078] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7698), 1, + ACTIONS(2648), 3, anon_sym_LBRACK, - ACTIONS(7700), 1, anon_sym_LPAREN, - STATE(3902), 1, - sym_parameter_parens, - STATE(3989), 1, - sym_parameter_bracks, - STATE(4084), 1, - sym_comment, - [119097] = 3, + anon_sym_DASH_DASH, + [124287] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4085), 1, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(4240), 1, sym_comment, - ACTIONS(7675), 4, + ACTIONS(886), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119110] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124302] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4086), 1, + ACTIONS(2240), 1, + sym__entry_separator, + STATE(4241), 1, sym_comment, - ACTIONS(7683), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2242), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [119123] = 4, + anon_sym_DOT_DOT, + [124317] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(4087), 1, - sym_comment, - ACTIONS(7210), 3, + ACTIONS(5821), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119138] = 5, - ACTIONS(3), 1, + ACTIONS(7882), 1, + anon_sym_EQ, + ACTIONS(7884), 1, + anon_sym_COLON, + STATE(3400), 1, + aux_sym__repeat_newline, + STATE(4242), 1, + sym_comment, + [124336] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7702), 1, - anon_sym_DOT_DOT2, - STATE(4088), 1, + ACTIONS(4806), 1, + sym__entry_separator, + STATE(2271), 1, + aux_sym__types_body_repeat2, + STATE(4243), 1, sym_comment, - ACTIONS(7704), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119155] = 4, + ACTIONS(7886), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124353] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7706), 1, - anon_sym_DQUOTE, - ACTIONS(7708), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(4089), 2, + ACTIONS(4806), 1, + sym__entry_separator, + STATE(2261), 1, + aux_sym__types_body_repeat2, + STATE(4244), 1, sym_comment, - aux_sym_string_content_repeat1, - [119170] = 3, + ACTIONS(7886), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124370] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4090), 1, + STATE(4245), 1, sym_comment, - ACTIONS(7683), 4, + ACTIONS(7888), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119183] = 3, + [124383] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4091), 1, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4246), 1, sym_comment, - ACTIONS(7711), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119196] = 6, + ACTIONS(1022), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7698), 1, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4247), 1, + sym_comment, + ACTIONS(1030), 3, anon_sym_LBRACK, - ACTIONS(7700), 1, anon_sym_LPAREN, - STATE(3959), 1, - sym_parameter_parens, - STATE(3963), 1, - sym_parameter_bracks, - STATE(4092), 1, - sym_comment, - [119215] = 3, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + [124413] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4093), 1, + ACTIONS(1582), 1, + sym__entry_separator, + STATE(4248), 1, sym_comment, - ACTIONS(7711), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1580), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [124428] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(7808), 1, anon_sym_RBRACE, - [119228] = 3, - ACTIONS(3), 1, + ACTIONS(7810), 1, + sym__entry_separator, + STATE(4249), 1, + sym_comment, + STATE(4906), 1, + sym__expr_parenthesized_immediate, + [124447] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4094), 1, + ACTIONS(2244), 1, + sym__entry_separator, + STATE(4250), 1, sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2246), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [119241] = 3, + anon_sym_DOT_DOT, + [124462] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4095), 1, + STATE(4251), 1, sym_comment, - ACTIONS(7715), 4, + ACTIONS(7888), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119254] = 4, + [124475] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2202), 1, + ACTIONS(2248), 1, sym__entry_separator, - STATE(4096), 1, + STATE(4252), 1, sym_comment, - ACTIONS(2204), 3, + ACTIONS(2250), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119269] = 6, + [124490] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5822), 1, + ACTIONS(2252), 1, sym__entry_separator, - ACTIONS(5824), 1, - anon_sym_RBRACE, - STATE(4097), 1, - sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [119288] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4098), 1, + STATE(4253), 1, sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2254), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [119301] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [124505] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4099), 1, + ACTIONS(2256), 1, + sym__entry_separator, + STATE(4254), 1, sym_comment, - ACTIONS(7715), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2258), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [119314] = 4, + anon_sym_DOT_DOT, + [124520] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4100), 1, - sym_comment, - ACTIONS(6137), 2, - anon_sym_AT2, + ACTIONS(2260), 1, sym__entry_separator, - ACTIONS(6139), 2, + STATE(4255), 1, + sym_comment, + ACTIONS(2262), 3, anon_sym_RBRACK, - anon_sym_GT2, - [119329] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124535] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4101), 1, + ACTIONS(2264), 1, + sym__entry_separator, + STATE(4256), 1, sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2266), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [119342] = 4, + anon_sym_DOT_DOT, + [124550] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2519), 1, + ACTIONS(2268), 1, sym__entry_separator, - STATE(4102), 1, + STATE(4257), 1, sym_comment, - ACTIONS(2521), 3, + ACTIONS(2270), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_RBRACE, - [119357] = 6, + anon_sym_DOT_DOT, + [124565] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5833), 1, + ACTIONS(2272), 1, sym__entry_separator, - ACTIONS(5835), 1, + STATE(4258), 1, + sym_comment, + ACTIONS(2274), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(4103), 1, + anon_sym_DOT_DOT, + [124580] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4259), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [119376] = 4, + ACTIONS(5334), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6275), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [124595] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4104), 1, + STATE(4260), 1, + sym_comment, + ACTIONS(5338), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6277), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [124610] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1506), 1, + sym__table_head_separator, + ACTIONS(7697), 1, + anon_sym_DOT2, + STATE(4261), 1, + sym_comment, + STATE(4273), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4812), 1, + sym_path, + [124629] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4262), 1, sym_comment, - ACTIONS(2501), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 2, + ACTIONS(7890), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [119391] = 4, - ACTIONS(103), 1, + [124642] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2206), 1, - sym__entry_separator, - STATE(4105), 1, + STATE(4263), 1, sym_comment, - ACTIONS(2208), 3, - anon_sym_RBRACK, + ACTIONS(7890), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119406] = 4, + [124655] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2210), 1, - sym__entry_separator, - STATE(4106), 1, + STATE(4264), 1, sym_comment, - ACTIONS(2212), 3, + ACTIONS(5422), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6287), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119421] = 4, + anon_sym_GT2, + [124670] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2214), 1, - sym__entry_separator, - STATE(4107), 1, + STATE(4265), 1, sym_comment, - ACTIONS(2216), 3, + ACTIONS(5348), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6291), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119436] = 3, + anon_sym_GT2, + [124685] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4108), 1, + STATE(4266), 1, sym_comment, - ACTIONS(1462), 4, - anon_sym_RBRACK, + ACTIONS(5364), 2, + anon_sym_AT2, sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [119449] = 4, + ACTIONS(6299), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [124700] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2218), 1, - sym__entry_separator, - STATE(4109), 1, + STATE(4267), 1, sym_comment, - ACTIONS(2220), 3, + ACTIONS(5377), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6301), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119464] = 3, + anon_sym_GT2, + [124715] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4110), 1, + STATE(4268), 1, sym_comment, - ACTIONS(7713), 4, + ACTIONS(7892), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119477] = 3, + [124728] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4111), 1, + STATE(4269), 1, sym_comment, - ACTIONS(5257), 4, - ts_builtin_sym_end, + ACTIONS(7892), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [119490] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124741] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(4112), 1, + STATE(4270), 1, sym_comment, - ACTIONS(1964), 3, + ACTIONS(7894), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119505] = 4, + [124754] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2222), 1, + STATE(4271), 1, + sym_comment, + ACTIONS(5379), 2, + anon_sym_AT2, sym__entry_separator, - STATE(4113), 1, + ACTIONS(6305), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [124769] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4272), 1, sym_comment, - ACTIONS(2224), 3, + ACTIONS(1547), 4, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119520] = 6, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [124782] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7717), 1, - anon_sym_LBRACK, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(4114), 1, + ACTIONS(1510), 1, + sym__table_head_separator, + ACTIONS(7896), 1, + anon_sym_DOT2, + STATE(4812), 1, + sym_path, + STATE(4273), 2, sym_comment, - STATE(4957), 1, - sym_val_list, - [119539] = 4, - ACTIONS(103), 1, + aux_sym__where_predicate_lhs_repeat1, + [124799] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, - sym__entry_separator, - STATE(4115), 1, + ACTIONS(461), 1, + ts_builtin_sym_end, + STATE(1372), 1, + aux_sym__block_body_repeat1, + STATE(4274), 1, sym_comment, - ACTIONS(2228), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119554] = 4, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [124816] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2230), 1, + ACTIONS(1622), 1, sym__entry_separator, - STATE(4116), 1, - sym_comment, - ACTIONS(2232), 3, - anon_sym_RBRACK, + ACTIONS(1624), 1, + anon_sym_COLON2, + ACTIONS(7899), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119569] = 4, + STATE(1480), 1, + aux_sym__types_body_repeat2, + STATE(4275), 1, + sym_comment, + [124835] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2234), 1, - sym__entry_separator, - STATE(4117), 1, + ACTIONS(5467), 1, + anon_sym_COLON2, + STATE(4276), 1, sym_comment, - ACTIONS(2236), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119584] = 4, + STATE(4344), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5461), 2, + sym__newline, + sym__space, + [124852] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(4118), 1, + STATE(4277), 1, sym_comment, - ACTIONS(2575), 3, + ACTIONS(4147), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119599] = 4, + anon_sym_SEMI, + anon_sym_LBRACE, + [124865] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2238), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(7824), 1, + anon_sym_RBRACE, + ACTIONS(7826), 1, sym__entry_separator, - STATE(4119), 1, + STATE(4278), 1, sym_comment, - ACTIONS(2240), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119614] = 4, + STATE(4906), 1, + sym__expr_parenthesized_immediate, + [124884] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4279), 1, + sym_comment, + ACTIONS(4151), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [124897] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - STATE(4120), 1, + STATE(4280), 1, sym_comment, - ACTIONS(1974), 3, + ACTIONS(1956), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119629] = 4, - ACTIONS(103), 1, + [124912] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2242), 1, - sym__entry_separator, - STATE(4121), 1, + ACTIONS(1744), 1, + anon_sym_LBRACE, + ACTIONS(1746), 1, + sym__unquoted_pattern, + ACTIONS(7901), 1, + anon_sym_DOT, + ACTIONS(7903), 1, + aux_sym__immediate_decimal_token5, + STATE(4281), 1, sym_comment, - ACTIONS(2244), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119644] = 4, - ACTIONS(103), 1, + [124931] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2246), 1, - sym__entry_separator, - STATE(4122), 1, + STATE(4282), 1, sym_comment, - ACTIONS(2248), 3, - anon_sym_RBRACK, + ACTIONS(7905), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119659] = 4, - ACTIONS(103), 1, + [124944] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2250), 1, - sym__entry_separator, - STATE(4123), 1, + STATE(4283), 1, sym_comment, - ACTIONS(2252), 3, - anon_sym_RBRACK, + ACTIONS(7905), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119674] = 4, + [124957] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1983), 1, sym__unquoted_pattern, - STATE(4124), 1, + STATE(4284), 1, sym_comment, - ACTIONS(2523), 3, + ACTIONS(2597), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119689] = 4, + [124972] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4285), 1, + sym_comment, + ACTIONS(7888), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124985] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, + ACTIONS(1983), 1, sym__unquoted_pattern, - STATE(4125), 1, + STATE(4286), 1, sym_comment, - ACTIONS(2567), 3, + ACTIONS(1973), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119704] = 6, - ACTIONS(103), 1, + [125000] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4126), 1, + STATE(4287), 1, sym_comment, - STATE(4257), 1, - sym_block, - [119723] = 4, + ACTIONS(7888), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125013] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4288), 1, + sym_comment, + ACTIONS(7890), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125026] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - STATE(4127), 1, + STATE(4289), 1, sym_comment, - ACTIONS(2501), 3, + ACTIONS(2541), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119738] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7719), 1, - anon_sym_GT2, - ACTIONS(7721), 1, - anon_sym_AT2, - ACTIONS(7723), 1, - sym__entry_separator, - STATE(4128), 1, - sym_comment, - STATE(4652), 1, - sym_param_completer, - [119757] = 3, + [125041] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4129), 1, + STATE(4290), 1, sym_comment, - ACTIONS(7725), 4, + ACTIONS(7890), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119770] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_RBRACE, - ACTIONS(1706), 1, - sym__entry_separator, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, - STATE(4130), 1, - sym_comment, - [119789] = 6, - ACTIONS(103), 1, + [125054] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4131), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(4291), 1, sym_comment, - STATE(4259), 1, - sym_block, - [119808] = 6, + ACTIONS(2589), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125069] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(2986), 1, - sym_block, - STATE(4132), 1, + ACTIONS(7907), 1, + anon_sym_COLON, + ACTIONS(7909), 1, + anon_sym_GT2, + ACTIONS(7911), 1, + sym__entry_separator, + STATE(4292), 1, sym_comment, - [119827] = 5, + STATE(4922), 1, + sym__collection_annotation, + [125088] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(2527), 1, sym__unquoted_pattern, - ACTIONS(7727), 1, - anon_sym_DOT_DOT2, - STATE(4133), 1, + STATE(4293), 1, sym_comment, - ACTIONS(7729), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119844] = 5, + ACTIONS(2525), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125103] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7210), 1, + ACTIONS(1862), 1, sym__entry_separator, - STATE(4134), 1, + STATE(4294), 1, sym_comment, - ACTIONS(7278), 2, + ACTIONS(1864), 3, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119861] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2152), 1, - anon_sym_LBRACE, - ACTIONS(7731), 1, - anon_sym_DOT_DOT2, - STATE(4135), 1, - sym_comment, - ACTIONS(7733), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119878] = 3, + anon_sym_GT2, + anon_sym_RBRACE, + [125118] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4136), 1, + STATE(4295), 1, sym_comment, - ACTIONS(7725), 4, + ACTIONS(7913), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119891] = 3, + [125131] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4137), 1, + STATE(4296), 1, sym_comment, - ACTIONS(7735), 4, + ACTIONS(7915), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119904] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_LBRACK, - ACTIONS(7700), 1, - anon_sym_LPAREN, - STATE(3983), 1, - sym_parameter_parens, - STATE(3984), 1, - sym_parameter_bracks, - STATE(4138), 1, - sym_comment, - [119923] = 5, + [125144] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(4139), 1, + STATE(4297), 1, sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, + ACTIONS(7917), 4, sym__newline, anon_sym_SEMI, - [119940] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4140), 1, - sym_comment, - ACTIONS(1480), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [119953] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4141), 1, - sym_comment, - ACTIONS(7739), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [119966] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125157] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4142), 1, + STATE(4298), 1, sym_comment, - ACTIONS(7735), 4, + ACTIONS(7919), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119979] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2575), 1, - sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACK, - STATE(4143), 1, - sym_comment, - [119998] = 3, + [125170] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4144), 1, + STATE(4299), 1, sym_comment, - ACTIONS(7741), 4, + ACTIONS(7921), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120011] = 6, + [125183] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, + STATE(4300), 1, + sym_comment, + ACTIONS(7923), 2, anon_sym_RBRACK, - ACTIONS(1978), 1, + anon_sym_DOT_DOT, + ACTIONS(7925), 2, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - STATE(4145), 1, - sym_comment, - [120030] = 4, + sym__entry_separator, + [125198] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(4146), 1, + STATE(4301), 1, sym_comment, - ACTIONS(2635), 3, + ACTIONS(7073), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120045] = 6, + anon_sym_SEMI, + anon_sym_LBRACE, + [125211] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + STATE(4302), 1, + sym_comment, + ACTIONS(7085), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(3196), 1, anon_sym_SEMI, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, - STATE(4147), 1, - sym_comment, - STATE(4404), 1, - aux_sym__repeat_newline, - [120064] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1736), 1, anon_sym_LBRACE, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7743), 1, - anon_sym_DOT, - ACTIONS(7745), 1, - aux_sym__immediate_decimal_token5, - STATE(4148), 1, - sym_comment, - [120083] = 3, + [125224] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4149), 1, + STATE(4303), 1, sym_comment, - ACTIONS(7747), 4, + ACTIONS(7927), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120096] = 3, + [125237] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4150), 1, - sym_comment, - ACTIONS(1545), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120109] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4151), 1, + STATE(4304), 1, sym_comment, - ACTIONS(7747), 4, + ACTIONS(7929), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120122] = 5, + [125250] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3046), 1, - ts_builtin_sym_end, - STATE(1367), 1, - aux_sym__block_body_repeat1, - STATE(4152), 1, + STATE(4305), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(7931), 4, sym__newline, anon_sym_SEMI, - [120139] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125263] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4153), 1, + STATE(4306), 1, sym_comment, - ACTIONS(1468), 4, + ACTIONS(1521), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [120152] = 5, + [125276] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7749), 1, - anon_sym_RPAREN, - STATE(4154), 1, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(4307), 1, sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, + ACTIONS(2648), 3, sym__newline, - anon_sym_SEMI, - [120169] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125291] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4155), 1, + STATE(4308), 1, sym_comment, - ACTIONS(5287), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [120182] = 3, + ACTIONS(1525), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [125304] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4156), 1, + STATE(4309), 1, + sym_comment, + ACTIONS(1529), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [125317] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4310), 1, sym_comment, - ACTIONS(7741), 4, + ACTIONS(7933), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120195] = 4, + [125330] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(4157), 1, + STATE(4311), 1, sym_comment, - ACTIONS(994), 3, + ACTIONS(1022), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120210] = 4, + [125345] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(4158), 1, + STATE(4312), 1, sym_comment, - ACTIONS(1018), 3, + ACTIONS(1030), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120225] = 6, + [125360] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4313), 1, + sym_comment, + ACTIONS(7935), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125373] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1964), 1, + ACTIONS(2620), 1, sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(4159), 1, + STATE(4314), 1, sym_comment, - [120244] = 3, + ACTIONS(2622), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [125388] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4160), 1, + STATE(4315), 1, sym_comment, - ACTIONS(1472), 4, + ACTIONS(1533), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [120257] = 3, + [125401] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4161), 1, + STATE(4316), 1, sym_comment, - ACTIONS(1476), 4, + ACTIONS(1537), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [120270] = 3, + [125414] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4162), 1, + STATE(4317), 1, sym_comment, - ACTIONS(1516), 4, + ACTIONS(1541), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [120283] = 4, + [125427] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(2648), 1, sym__entry_separator, - STATE(4163), 1, - sym_comment, - ACTIONS(868), 3, + ACTIONS(2650), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120298] = 3, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern_in_list, + STATE(4318), 1, + sym_comment, + [125446] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4164), 1, + ACTIONS(7214), 1, + anon_sym_LBRACK, + ACTIONS(7216), 1, + anon_sym_LPAREN, + STATE(3908), 1, + sym_parameter_parens, + STATE(3909), 1, + sym_parameter_bracks, + STATE(4319), 1, sym_comment, - ACTIONS(7751), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120311] = 4, + [125465] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(1614), 1, + anon_sym_RBRACK, + ACTIONS(1713), 1, sym__entry_separator, - STATE(4165), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_list, + STATE(4320), 1, + sym_comment, + [125484] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(886), 1, + sym__entry_separator, + ACTIONS(6479), 1, + sym__unquoted_pattern_in_list, + STATE(4321), 1, sym_comment, - ACTIONS(2114), 3, + ACTIONS(866), 2, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - [120326] = 6, - ACTIONS(103), 1, + [125501] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7753), 1, + STATE(4322), 1, + sym_comment, + ACTIONS(4431), 4, + sym__newline, anon_sym_RBRACK, - ACTIONS(7755), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT, + [125514] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2589), 1, sym__entry_separator, - STATE(4166), 1, + ACTIONS(2591), 1, + anon_sym_RBRACK, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern_in_list, + STATE(4323), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [120345] = 5, + [125533] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(459), 1, + ACTIONS(3098), 1, ts_builtin_sym_end, - STATE(1368), 1, + STATE(1379), 1, aux_sym__block_body_repeat1, - STATE(4167), 1, + STATE(4324), 1, sym_comment, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - [120362] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4168), 1, - sym_comment, - ACTIONS(5253), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [120375] = 3, + [125550] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4169), 1, + STATE(4325), 1, sym_comment, - ACTIONS(6928), 4, + ACTIONS(7119), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [120388] = 3, + [125563] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4170), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3038), 1, + sym_block, + STATE(4221), 1, + aux_sym__repeat_newline, + STATE(4326), 1, + sym_comment, + [125582] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4327), 1, sym_comment, - ACTIONS(7751), 4, + ACTIONS(7892), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120401] = 6, + [125595] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - STATE(3875), 1, - sym_parameter_parens, - STATE(3879), 1, - sym_parameter_bracks, - STATE(4171), 1, + STATE(4328), 1, sym_comment, - [120420] = 3, + ACTIONS(7892), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125608] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4172), 1, + STATE(4329), 1, sym_comment, - ACTIONS(7757), 4, - anon_sym_if, + ACTIONS(7937), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120433] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(7572), 1, - anon_sym_RBRACE, - ACTIONS(7574), 1, - sym__entry_separator, - STATE(4173), 1, - sym_comment, - STATE(4631), 1, - sym__expr_parenthesized_immediate, - [120452] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2575), 1, - sym__entry_separator, - ACTIONS(2577), 1, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4174), 1, - sym_comment, - [120471] = 3, + [125621] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4175), 1, + STATE(4330), 1, sym_comment, - ACTIONS(7757), 4, - anon_sym_if, + ACTIONS(7937), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120484] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1858), 1, - sym__entry_separator, - STATE(4176), 1, - sym_comment, - ACTIONS(1860), 3, - anon_sym_RBRACK, - anon_sym_GT2, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [120499] = 6, - ACTIONS(103), 1, + [125634] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - STATE(4177), 1, + STATE(4331), 1, sym_comment, - [120518] = 5, + ACTIONS(7939), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125647] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - anon_sym_LBRACE, - ACTIONS(7759), 1, - anon_sym_DOT_DOT2, - STATE(4178), 1, + STATE(4332), 1, sym_comment, - ACTIONS(7761), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120535] = 5, + ACTIONS(7939), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7763), 1, - anon_sym_DOT_DOT2, - STATE(4179), 1, + STATE(4333), 1, sym_comment, - ACTIONS(7765), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120552] = 3, + ACTIONS(7941), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125673] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4180), 1, + STATE(4334), 1, sym_comment, - ACTIONS(6942), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120565] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(7767), 2, + ACTIONS(7941), 4, sym__newline, - sym__space, - STATE(4181), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - [120580] = 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125686] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7289), 1, + STATE(4335), 1, + sym_comment, + ACTIONS(7943), 4, + anon_sym_if, sym__newline, - ACTIONS(7291), 1, anon_sym_PIPE, - ACTIONS(7770), 1, anon_sym_EQ_GT, - STATE(4182), 1, - sym_comment, - STATE(4344), 1, - aux_sym_match_pattern_repeat1, - [120599] = 5, + [125699] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(3808), 1, anon_sym_LBRACE, - ACTIONS(7772), 1, - anon_sym_DOT_DOT2, - STATE(4183), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3042), 1, + sym_block, + STATE(4336), 1, sym_comment, - ACTIONS(7774), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120616] = 6, + [125718] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4337), 1, + sym_comment, + ACTIONS(7945), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125731] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(7589), 1, - anon_sym_RBRACE, - ACTIONS(7591), 1, + ACTIONS(4806), 1, sym__entry_separator, - STATE(4184), 1, + STATE(2263), 1, + aux_sym__types_body_repeat2, + STATE(4338), 1, sym_comment, - STATE(4631), 1, - sym__expr_parenthesized_immediate, - [120635] = 5, - ACTIONS(3), 1, + ACTIONS(7436), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125748] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7776), 1, - anon_sym_LBRACE, - STATE(3282), 1, - sym__blosure, - STATE(4185), 1, + ACTIONS(4806), 1, + sym__entry_separator, + STATE(2272), 1, + aux_sym__types_body_repeat2, + STATE(4339), 1, sym_comment, - STATE(3281), 2, - sym_block, - sym_val_closure, - [120652] = 5, - ACTIONS(3), 1, + ACTIONS(7947), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125765] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, - anon_sym_LBRACE, - ACTIONS(7778), 1, - anon_sym_DOT_DOT2, - STATE(4186), 1, + ACTIONS(4806), 1, + sym__entry_separator, + STATE(2269), 1, + aux_sym__types_body_repeat2, + STATE(4340), 1, sym_comment, - ACTIONS(7780), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120669] = 3, + ACTIONS(7947), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125782] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4187), 1, + STATE(4341), 1, sym_comment, - ACTIONS(7337), 4, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - anon_sym_AT, - [120682] = 5, + ACTIONS(7949), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125795] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7307), 1, - anon_sym_RPAREN, - STATE(4188), 1, + STATE(4342), 1, sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, + ACTIONS(7951), 4, sym__newline, anon_sym_SEMI, - [120699] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125808] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(7782), 1, - anon_sym_EQ, - ACTIONS(7784), 1, - anon_sym_COLON, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(4189), 1, - sym_comment, - [120718] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2238), 1, - aux_sym__types_body_repeat2, - STATE(4190), 1, + STATE(4343), 1, sym_comment, - ACTIONS(7786), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [120735] = 5, + ACTIONS(7951), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125821] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7204), 1, - sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - STATE(4191), 1, + ACTIONS(7953), 1, + anon_sym_COLON2, + STATE(4344), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120752] = 5, + STATE(4514), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5461), 2, + sym__newline, + sym__space, + [125838] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - STATE(4192), 1, + ACTIONS(1624), 1, + anon_sym_COLON2, + ACTIONS(7955), 1, + anon_sym_RBRACE, + STATE(1487), 1, + aux_sym__types_body_repeat2, + STATE(4345), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120769] = 3, + [125857] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4193), 1, + STATE(4346), 1, sym_comment, - ACTIONS(6955), 4, + ACTIONS(7141), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [120782] = 5, + [125870] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(6670), 1, + anon_sym_LPAREN2, + ACTIONS(7957), 1, + anon_sym_RBRACK, + ACTIONS(7959), 1, sym__entry_separator, - STATE(2231), 1, - aux_sym__types_body_repeat2, - STATE(4194), 1, + STATE(4347), 1, sym_comment, - ACTIONS(7786), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [120799] = 4, + STATE(5208), 1, + sym__expr_parenthesized_immediate, + [125889] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7788), 1, - anon_sym_LPAREN, - STATE(4195), 1, + STATE(4348), 1, sym_comment, - ACTIONS(7790), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [120814] = 6, + ACTIONS(1562), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [125902] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7794), 1, - anon_sym_RBRACK, - STATE(1876), 1, + ACTIONS(1624), 1, + anon_sym_COLON2, + ACTIONS(7961), 1, + anon_sym_RBRACE, + STATE(1474), 1, aux_sym__types_body_repeat2, - STATE(4196), 1, + STATE(4349), 1, sym_comment, - [120833] = 4, - ACTIONS(103), 1, + [125921] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2505), 1, - sym__entry_separator, - STATE(4197), 1, + STATE(4350), 1, sym_comment, - ACTIONS(2507), 3, - anon_sym_RBRACK, + ACTIONS(7939), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120848] = 5, - ACTIONS(103), 1, + [125934] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7798), 1, - sym__space, - STATE(4198), 1, + STATE(4351), 1, sym_comment, - STATE(4215), 1, - aux_sym_attribute_repeat1, - ACTIONS(7796), 2, + ACTIONS(7939), 4, sym__newline, anon_sym_SEMI, - [120865] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125947] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4199), 1, + STATE(4352), 1, sym_comment, - ACTIONS(7800), 2, + ACTIONS(1496), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7802), 2, - anon_sym_LPAREN2, sym__entry_separator, - [120880] = 6, - ACTIONS(103), 1, + sym__table_head_separator, + anon_sym_DOT2, + [125960] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2523), 1, - sym__entry_separator, - ACTIONS(2525), 1, - anon_sym_RBRACE, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(4200), 1, + ACTIONS(7963), 1, + sym__newline, + ACTIONS(7966), 1, + anon_sym_PIPE, + ACTIONS(7969), 1, + anon_sym_EQ_GT, + STATE(4353), 2, sym_comment, - [120899] = 3, + aux_sym_match_pattern_repeat1, + [125977] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4201), 1, + STATE(4354), 1, sym_comment, - ACTIONS(7804), 4, + ACTIONS(7941), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120912] = 3, + [125990] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4202), 1, + STATE(4355), 1, sym_comment, - ACTIONS(7804), 4, + ACTIONS(7941), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120925] = 6, + [126003] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, + ACTIONS(7268), 1, sym__entry_separator, - STATE(4203), 1, + ACTIONS(7536), 1, + anon_sym_DOT_DOT2, + STATE(4356), 1, sym_comment, - STATE(4751), 1, - sym__expr_parenthesized_immediate, - [120944] = 3, + ACTIONS(7538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126020] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4204), 1, + STATE(4357), 1, sym_comment, - ACTIONS(7806), 4, + ACTIONS(7971), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [120957] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7808), 1, - anon_sym_LPAREN, - STATE(4205), 1, - sym_comment, - ACTIONS(7810), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [120972] = 4, + [126033] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4206), 1, + STATE(4358), 1, sym_comment, - ACTIONS(6093), 2, - anon_sym_AT2, + ACTIONS(1770), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6095), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [120987] = 5, + ACTIONS(1772), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [126048] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - anon_sym_LBRACE, - ACTIONS(7812), 1, - anon_sym_DOT_DOT2, - STATE(4207), 1, + STATE(4359), 1, sym_comment, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121004] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - sym__entry_separator, - ACTIONS(2569), 1, + ACTIONS(7951), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, - STATE(4208), 1, - sym_comment, - [121023] = 4, - ACTIONS(103), 1, + [126061] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4209), 1, + STATE(4360), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 2, + ACTIONS(7973), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121038] = 4, + [126074] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4210), 1, - sym_comment, - ACTIONS(6107), 2, - anon_sym_AT2, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(6109), 2, + ACTIONS(7870), 1, + anon_sym_LBRACK, + ACTIONS(7975), 1, anon_sym_RBRACK, - anon_sym_GT2, - [121053] = 3, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(4361), 1, + sym_comment, + [126093] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4211), 1, + STATE(4362), 1, sym_comment, - ACTIONS(4060), 4, - ts_builtin_sym_end, + ACTIONS(7973), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [121066] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126106] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4212), 1, + STATE(4363), 1, sym_comment, - ACTIONS(7816), 4, + ACTIONS(7977), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121079] = 3, + [126119] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4213), 1, - sym_comment, - ACTIONS(7026), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121092] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2591), 1, - sym__entry_separator, - STATE(4214), 1, + STATE(4364), 1, sym_comment, - ACTIONS(2593), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [121107] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7818), 1, - sym__space, - ACTIONS(5708), 2, + ACTIONS(7977), 4, sym__newline, anon_sym_SEMI, - STATE(4215), 2, - sym_comment, - aux_sym_attribute_repeat1, - [121122] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7821), 1, - anon_sym_RBRACK, - ACTIONS(7823), 1, - sym__entry_separator, - STATE(4216), 1, - sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121141] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126132] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4217), 1, + STATE(4365), 1, sym_comment, - ACTIONS(7825), 4, - anon_sym_if, + ACTIONS(7977), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121154] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126145] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4218), 1, + STATE(4366), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1852), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1804), 2, + ACTIONS(1854), 2, anon_sym_RBRACE, sym__unquoted_pattern_in_record, - [121169] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(4219), 1, - sym_comment, - ACTIONS(2501), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [121184] = 3, + [126160] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4220), 1, + STATE(4367), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(7977), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121197] = 4, + [126173] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4221), 1, + STATE(4368), 1, sym_comment, ACTIONS(1870), 2, anon_sym_LPAREN2, sym__entry_separator, ACTIONS(1872), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121212] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2637), 1, - anon_sym_RBRACE, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, - STATE(4222), 1, - sym_comment, - [121231] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6902), 1, - sym__unquoted_pattern, - STATE(4223), 1, - sym_comment, - ACTIONS(968), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [121246] = 3, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [126188] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4224), 1, + STATE(4369), 1, sym_comment, - ACTIONS(7829), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121259] = 3, + ACTIONS(7979), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126201] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4225), 1, + STATE(4370), 1, sym_comment, - ACTIONS(7831), 4, + ACTIONS(7981), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121272] = 3, + [126214] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4226), 1, + STATE(4371), 1, sym_comment, - ACTIONS(7833), 4, + ACTIONS(7979), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121285] = 3, + [126227] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4227), 1, + STATE(4372), 1, sym_comment, - ACTIONS(7835), 4, + ACTIONS(7983), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121298] = 3, + [126240] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4228), 1, + STATE(4373), 1, sym_comment, - ACTIONS(7837), 4, + ACTIONS(7983), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121311] = 6, - ACTIONS(103), 1, + [126253] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2523), 1, - sym__entry_separator, - ACTIONS(2525), 1, - anon_sym_RBRACK, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(4229), 1, + STATE(4374), 1, sym_comment, - [121330] = 3, + ACTIONS(7985), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126266] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4230), 1, + STATE(4375), 1, sym_comment, - ACTIONS(6959), 4, + ACTIONS(7137), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [121343] = 3, + [126279] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4231), 1, + STATE(4376), 1, sym_comment, - ACTIONS(7839), 4, + ACTIONS(7985), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121356] = 5, + [126292] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7812), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7987), 1, anon_sym_DOT_DOT2, - ACTIONS(7841), 1, - anon_sym_LBRACE, - STATE(4232), 1, + STATE(4377), 1, sym_comment, - ACTIONS(7814), 2, + ACTIONS(7989), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121373] = 3, + [126309] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4233), 1, + STATE(4378), 1, sym_comment, - ACTIONS(4062), 4, - ts_builtin_sym_end, + ACTIONS(7991), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [121386] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126322] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__entry_separator, - STATE(4234), 1, + STATE(4379), 1, sym_comment, - ACTIONS(2154), 3, - anon_sym_RBRACK, + ACTIONS(7993), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121401] = 6, - ACTIONS(103), 1, + [126335] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7843), 1, - anon_sym_RBRACE, - STATE(1468), 1, - aux_sym__types_body_repeat2, - STATE(4235), 1, + STATE(4380), 1, sym_comment, - [121420] = 6, - ACTIONS(103), 1, + ACTIONS(7995), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126348] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7845), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(4236), 1, + STATE(4381), 1, sym_comment, - [121439] = 3, + ACTIONS(7997), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126361] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4237), 1, + STATE(4382), 1, sym_comment, - ACTIONS(7847), 4, + ACTIONS(7999), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121452] = 6, + [126374] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(886), 1, sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7849), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(4238), 1, + STATE(4383), 1, sym_comment, - [121471] = 6, + ACTIONS(866), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [126389] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7851), 1, - anon_sym_COLON, - ACTIONS(7853), 1, - anon_sym_GT2, - ACTIONS(7855), 1, - sym__entry_separator, - STATE(4239), 1, + ACTIONS(8001), 1, + anon_sym_LPAREN, + STATE(4384), 1, sym_comment, - STATE(4709), 1, - sym__collection_annotation, - [121490] = 3, + ACTIONS(8003), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [126404] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4240), 1, + STATE(4385), 1, sym_comment, - ACTIONS(7847), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(7151), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [126417] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2170), 1, + sym__entry_separator, + STATE(4386), 1, + sym_comment, + ACTIONS(2172), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [121503] = 3, + anon_sym_DOT_DOT, + [126432] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4241), 1, + ACTIONS(8005), 1, + anon_sym_LBRACK, + ACTIONS(8007), 1, + anon_sym_LPAREN, + STATE(4183), 1, + sym_parameter_parens, + STATE(4184), 1, + sym_parameter_bracks, + STATE(4387), 1, sym_comment, - ACTIONS(7741), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121516] = 3, + [126451] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4242), 1, + STATE(4388), 1, sym_comment, - ACTIONS(7034), 4, + ACTIONS(8009), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [121529] = 3, + [126464] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4243), 1, + STATE(4389), 1, sym_comment, - ACTIONS(7741), 4, + ACTIONS(8011), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121542] = 3, + [126477] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4244), 1, + STATE(4390), 1, sym_comment, - ACTIONS(7751), 4, + ACTIONS(8013), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121555] = 4, + [126490] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4245), 1, - sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1956), 1, sym__entry_separator, - ACTIONS(1804), 2, + ACTIONS(1958), 1, anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [121570] = 3, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(4391), 1, + sym_comment, + [126509] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4246), 1, - sym_comment, - ACTIONS(6894), 4, + ACTIONS(3100), 1, ts_builtin_sym_end, + STATE(1370), 1, + aux_sym__block_body_repeat1, + STATE(4392), 1, + sym_comment, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [121583] = 6, - ACTIONS(103), 1, + [126526] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7857), 1, - anon_sym_RBRACK, - ACTIONS(7859), 1, - sym__entry_separator, - STATE(4247), 1, + ACTIONS(7214), 1, + anon_sym_LBRACK, + ACTIONS(7216), 1, + anon_sym_LPAREN, + STATE(4029), 1, + sym_parameter_parens, + STATE(4030), 1, + sym_parameter_bracks, + STATE(4393), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121602] = 3, + [126545] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4248), 1, + STATE(4394), 1, sym_comment, - ACTIONS(6922), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [121615] = 6, + ACTIONS(7208), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [126558] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(1020), 1, + anon_sym_RBRACK, + ACTIONS(1022), 1, sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, - ACTIONS(2583), 1, + ACTIONS(2656), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(4249), 1, + ACTIONS(2658), 1, + sym__unquoted_pattern_in_list, + STATE(4395), 1, sym_comment, - [121634] = 3, - ACTIONS(3), 1, + [126577] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4250), 1, + ACTIONS(994), 1, + anon_sym_RBRACK, + ACTIONS(1030), 1, + sym__entry_separator, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern_in_list, + STATE(4396), 1, sym_comment, - ACTIONS(7861), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121647] = 3, - ACTIONS(3), 1, + [126596] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4251), 1, + ACTIONS(6670), 1, + anon_sym_LPAREN2, + ACTIONS(8015), 1, + anon_sym_RBRACK, + ACTIONS(8017), 1, + sym__entry_separator, + STATE(4397), 1, sym_comment, - ACTIONS(7863), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121660] = 3, + STATE(5208), 1, + sym__expr_parenthesized_immediate, + [126615] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4252), 1, + ACTIONS(7626), 1, + anon_sym_RPAREN, + STATE(4398), 1, sym_comment, - ACTIONS(7865), 4, + STATE(4429), 1, + aux_sym__block_body_repeat1, + ACTIONS(7858), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121673] = 6, + [126632] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACE, - ACTIONS(1018), 1, + ACTIONS(2529), 1, sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(4253), 1, + STATE(4399), 1, sym_comment, - [121692] = 3, + ACTIONS(2531), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [126647] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4254), 1, + STATE(4400), 1, sym_comment, - ACTIONS(7002), 4, + ACTIONS(8019), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [121705] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7812), 1, - anon_sym_DOT_DOT2, - ACTIONS(7867), 1, - anon_sym_LBRACE, - STATE(4255), 1, - sym_comment, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121722] = 6, + [126660] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(6670), 1, anon_sym_LPAREN2, - ACTIONS(7633), 1, - anon_sym_RBRACE, - ACTIONS(7635), 1, + ACTIONS(7542), 1, + anon_sym_RBRACK, + ACTIONS(7550), 1, sym__entry_separator, - STATE(4256), 1, + STATE(4401), 1, sym_comment, - STATE(4631), 1, + STATE(4867), 1, sym__expr_parenthesized_immediate, - [121741] = 3, + [126679] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4257), 1, + STATE(4402), 1, sym_comment, - ACTIONS(7869), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121754] = 5, + ACTIONS(7182), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [126692] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7871), 1, + ACTIONS(8021), 1, anon_sym_DQUOTE, - STATE(4089), 1, - aux_sym_string_content_repeat1, - STATE(4258), 1, + STATE(4403), 1, sym_comment, - ACTIONS(7528), 2, + STATE(4418), 1, + aux_sym_string_content_repeat1, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [121771] = 3, + [126709] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4259), 1, - sym_comment, - ACTIONS(7873), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121784] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7875), 1, - anon_sym_RBRACK, - ACTIONS(7877), 1, - sym__entry_separator, - STATE(4260), 1, + STATE(4404), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121803] = 5, + ACTIONS(7212), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [126722] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7879), 1, + ACTIONS(8023), 1, anon_sym_RBRACK, - STATE(3371), 1, + STATE(3564), 1, aux_sym_parameter_repeat2, - STATE(4261), 1, + STATE(4405), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(1480), 2, sym__newline, anon_sym_COMMA, - [121820] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2637), 1, - anon_sym_RBRACK, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_list, - STATE(4262), 1, - sym_comment, - [121839] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_RBRACK, - ACTIONS(1706), 1, - sym__entry_separator, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - STATE(4263), 1, - sym_comment, - [121858] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - STATE(4264), 1, - sym_comment, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [121875] = 3, + [126739] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4265), 1, + STATE(4406), 1, sym_comment, - ACTIONS(7751), 4, + ACTIONS(8025), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121888] = 3, - ACTIONS(103), 1, + [126752] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4266), 1, + STATE(4407), 1, sym_comment, - ACTIONS(1520), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [121901] = 6, + ACTIONS(8027), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [126765] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, + ACTIONS(8005), 1, + anon_sym_LBRACK, + ACTIONS(8007), 1, + anon_sym_LPAREN, + STATE(4059), 1, + sym_parameter_parens, + STATE(4061), 1, + sym_parameter_bracks, + STATE(4408), 1, + sym_comment, + [126784] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7434), 1, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3028), 1, - sym_block, - STATE(4267), 1, + STATE(3289), 1, + sym__blosure, + STATE(4409), 1, sym_comment, - [121920] = 3, + STATE(3288), 2, + sym_block, + sym_val_closure, + [126801] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4268), 1, + STATE(4410), 1, sym_comment, - ACTIONS(4376), 4, - sym__newline, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT, - [121933] = 3, + ACTIONS(7121), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [126814] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4269), 1, + STATE(4411), 1, sym_comment, - ACTIONS(7881), 4, + ACTIONS(7848), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121946] = 3, + [126827] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4270), 1, + STATE(4412), 1, sym_comment, - ACTIONS(7883), 4, + ACTIONS(7848), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121959] = 6, - ACTIONS(3), 1, + [126840] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3069), 1, - sym_block, - STATE(4267), 1, - aux_sym__repeat_newline, - STATE(4271), 1, + ACTIONS(2154), 1, + sym__entry_separator, + STATE(4413), 1, sym_comment, - [121978] = 6, - ACTIONS(3), 1, + ACTIONS(2156), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [126855] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3071), 1, - sym_block, - STATE(4272), 1, + ACTIONS(8029), 1, + anon_sym_LPAREN, + STATE(4414), 1, sym_comment, - [121997] = 6, + ACTIONS(8031), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [126870] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(8005), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(8007), 1, anon_sym_LPAREN, - STATE(3768), 1, + STATE(4074), 1, sym_parameter_parens, - STATE(3769), 1, + STATE(4079), 1, sym_parameter_bracks, - STATE(4273), 1, + STATE(4415), 1, + sym_comment, + [126889] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4416), 1, sym_comment, - [122016] = 3, + ACTIONS(8033), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126902] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4274), 1, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4310), 1, + sym_block, + STATE(4417), 1, sym_comment, - ACTIONS(1535), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [122029] = 6, + [126921] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8035), 1, + anon_sym_DQUOTE, + ACTIONS(8037), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(4418), 2, + sym_comment, + aux_sym_string_content_repeat1, + [126936] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, + STATE(4419), 1, + sym_comment, + ACTIONS(2525), 2, anon_sym_LPAREN2, - ACTIONS(5804), 1, sym__entry_separator, - ACTIONS(5806), 1, + ACTIONS(2527), 2, anon_sym_RBRACE, - STATE(4275), 1, - sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [122048] = 3, + sym__unquoted_pattern_in_record, + [126951] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4276), 1, + STATE(4420), 1, sym_comment, - ACTIONS(5241), 4, - ts_builtin_sym_end, + ACTIONS(8033), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [122061] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126964] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5808), 1, - sym__entry_separator, - ACTIONS(5810), 1, + ACTIONS(1614), 1, anon_sym_RBRACE, - STATE(4277), 1, + ACTIONS(1713), 1, + sym__entry_separator, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_record, + STATE(4421), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [122080] = 5, + [126983] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7862), 1, + anon_sym_DOT_DOT2, + ACTIONS(8040), 1, + anon_sym_LBRACE, + STATE(4422), 1, + sym_comment, + ACTIONS(7864), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127000] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7798), 1, - sym__space, - STATE(4198), 1, - aux_sym_attribute_repeat1, - STATE(4278), 1, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4313), 1, + sym_block, + STATE(4423), 1, sym_comment, - ACTIONS(7885), 2, - sym__newline, - anon_sym_SEMI, - [122097] = 6, - ACTIONS(3), 1, + [127019] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(8042), 1, anon_sym_LPAREN, - STATE(3753), 1, - sym_parameter_parens, - STATE(3754), 1, - sym_parameter_bracks, - STATE(4279), 1, + STATE(4424), 1, sym_comment, - [122116] = 6, - ACTIONS(3), 1, + ACTIONS(8044), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [127034] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3040), 1, + STATE(3073), 1, sym_block, - STATE(4272), 1, - aux_sym__repeat_newline, - STATE(4280), 1, + STATE(4425), 1, sym_comment, - [122135] = 3, + [127053] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4281), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(8046), 1, + anon_sym_DOT_DOT2, + STATE(4426), 1, sym_comment, - ACTIONS(6115), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT2, - anon_sym_LBRACE, - [122148] = 4, + ACTIONS(8048), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127070] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8050), 1, + sym__space, + ACTIONS(5937), 2, + sym__newline, + anon_sym_SEMI, + STATE(4427), 2, + sym_comment, + aux_sym_attribute_repeat1, + [127085] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1956), 1, + sym__entry_separator, + ACTIONS(1958), 1, + anon_sym_RBRACE, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(4428), 1, + sym_comment, + [127104] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3077), 1, + ACTIONS(3069), 1, anon_sym_RPAREN, - ACTIONS(7887), 2, + ACTIONS(8053), 2, sym__newline, anon_sym_SEMI, - STATE(4282), 2, + STATE(4429), 2, sym_comment, aux_sym__block_body_repeat1, - [122163] = 3, + [127119] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4283), 1, - sym_comment, - ACTIONS(7890), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122176] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4284), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(8056), 1, + anon_sym_DOT_DOT2, + STATE(4430), 1, sym_comment, - ACTIONS(7892), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7894), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [122191] = 3, + ACTIONS(8058), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127136] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4285), 1, + STATE(4431), 1, sym_comment, - ACTIONS(7896), 4, + ACTIONS(8060), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122204] = 6, + [127149] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(2569), 1, + STATE(2262), 1, + aux_sym__types_body_repeat2, + STATE(4432), 1, + sym_comment, + ACTIONS(7562), 2, anon_sym_RBRACK, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_list, - STATE(4286), 1, + anon_sym_DOT_DOT, + [127166] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4433), 1, sym_comment, - [122223] = 3, + ACTIONS(1770), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [127181] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4287), 1, + STATE(4434), 1, sym_comment, - ACTIONS(7898), 4, - anon_sym_if, + ACTIONS(8062), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122236] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127194] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4288), 1, + STATE(4435), 1, sym_comment, - ACTIONS(7900), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122249] = 3, + ACTIONS(1852), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [127209] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4289), 1, + STATE(4436), 1, + sym_comment, + ACTIONS(1870), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [127224] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4437), 1, sym_comment, - ACTIONS(7902), 4, + ACTIONS(4140), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122262] = 5, + anon_sym_LBRACE, + [127237] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(1616), 1, + anon_sym_RBRACE, + ACTIONS(1622), 1, sym__entry_separator, - STATE(2234), 1, + ACTIONS(1624), 1, + anon_sym_COLON2, + STATE(1470), 1, aux_sym__types_body_repeat2, - STATE(4290), 1, + STATE(4438), 1, sym_comment, - ACTIONS(7315), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122279] = 4, - ACTIONS(103), 1, + [127256] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4291), 1, + STATE(4439), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [122294] = 4, + ACTIONS(4142), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [127269] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(4292), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2597), 1, + sym__entry_separator, + ACTIONS(2599), 1, + anon_sym_RBRACE, + STATE(4440), 1, sym_comment, - ACTIONS(7906), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [122309] = 3, + [127288] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4293), 1, + STATE(4441), 1, sym_comment, - ACTIONS(7908), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122322] = 3, + ACTIONS(7460), 4, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + anon_sym_AT, + [127301] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1973), 1, + sym__entry_separator, + ACTIONS(1975), 1, + anon_sym_RBRACE, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_record, + STATE(4442), 1, + sym_comment, + [127320] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4294), 1, + STATE(4443), 1, sym_comment, - ACTIONS(7910), 4, + ACTIONS(8064), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122335] = 5, + [127333] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(6208), 1, sym__entry_separator, - STATE(2235), 1, - aux_sym__types_body_repeat2, - STATE(4295), 1, + ACTIONS(6210), 1, + anon_sym_RBRACE, + STATE(4444), 1, sym_comment, - ACTIONS(7912), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122352] = 5, + STATE(5178), 1, + sym__expr_parenthesized_immediate, + [127352] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4445), 1, + sym_comment, + ACTIONS(8066), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127365] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(1912), 1, sym__entry_separator, - STATE(2236), 1, - aux_sym__types_body_repeat2, - STATE(4296), 1, + STATE(4446), 1, sym_comment, - ACTIONS(7912), 2, + ACTIONS(1914), 3, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122369] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4297), 1, - sym_comment, - ACTIONS(7914), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122382] = 6, + anon_sym_GT2, + anon_sym_RBRACE, + [127380] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2541), 1, sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7916), 1, + ACTIONS(2543), 1, anon_sym_RBRACE, - STATE(1480), 1, - aux_sym__types_body_repeat2, - STATE(4298), 1, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(4447), 1, sym_comment, - [122401] = 3, + [127399] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4299), 1, - sym_comment, - ACTIONS(7204), 4, - anon_sym_if, + ACTIONS(7650), 1, sym__newline, + ACTIONS(7652), 1, anon_sym_PIPE, + ACTIONS(8068), 1, anon_sym_EQ_GT, - [122414] = 6, + STATE(4353), 1, + aux_sym_match_pattern_repeat1, + STATE(4448), 1, + sym_comment, + [127418] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(2589), 1, sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7918), 1, + ACTIONS(2591), 1, anon_sym_RBRACE, - STATE(1484), 1, - aux_sym__types_body_repeat2, - STATE(4300), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern_in_record, + STATE(4449), 1, sym_comment, - [122433] = 4, + [127437] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(4301), 1, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(8070), 1, + anon_sym_DOT_DOT2, + STATE(4450), 1, sym_comment, - ACTIONS(1706), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [122448] = 3, + ACTIONS(8072), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127454] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4302), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern, + STATE(4451), 1, sym_comment, - ACTIONS(7920), 4, - anon_sym_if, + ACTIONS(1770), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122461] = 4, + [127469] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4303), 1, - sym_comment, - ACTIONS(1870), 2, + ACTIONS(5197), 1, anon_sym_LPAREN2, + ACTIONS(6212), 1, sym__entry_separator, - ACTIONS(1872), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [122476] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4304), 1, - sym_comment, - ACTIONS(7922), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(6214), 1, anon_sym_RBRACE, - [122489] = 5, + STATE(4452), 1, + sym_comment, + STATE(5178), 1, + sym__expr_parenthesized_immediate, + [127488] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7230), 1, + ACTIONS(1770), 1, anon_sym_LBRACE, - STATE(3114), 1, - sym__blosure, - STATE(4305), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [122506] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4306), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern, + ACTIONS(8074), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8076), 1, + aux_sym__immediate_decimal_token5, + STATE(4453), 1, sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(5924), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [122521] = 3, + [127507] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4307), 1, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(4454), 1, sym_comment, - ACTIONS(7924), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122534] = 5, + ACTIONS(2525), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127522] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5328), 1, - anon_sym_COLON2, - STATE(4308), 1, + ACTIONS(2648), 1, + sym__entry_separator, + ACTIONS(2650), 1, + anon_sym_RBRACE, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern_in_record, + STATE(4455), 1, sym_comment, - STATE(4319), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5322), 2, - sym__newline, - sym__space, - [122551] = 3, + [127541] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4309), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern, + STATE(4456), 1, sym_comment, - ACTIONS(7210), 4, - anon_sym_if, + ACTIONS(1852), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122564] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4310), 1, - sym_comment, - ACTIONS(1726), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122579] = 3, + [127556] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4311), 1, + ACTIONS(1872), 1, + sym__unquoted_pattern, + STATE(4457), 1, sym_comment, - ACTIONS(7926), 4, + ACTIONS(1870), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122592] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127571] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3041), 1, - sym_block, - STATE(4312), 1, + ACTIONS(7079), 1, + sym__unquoted_pattern, + STATE(4458), 1, sym_comment, - [122611] = 3, + ACTIONS(886), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127586] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4313), 1, + STATE(4459), 1, sym_comment, - ACTIONS(7928), 4, + ACTIONS(8078), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122624] = 4, + [127599] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4314), 1, + ACTIONS(7862), 1, + anon_sym_DOT_DOT2, + ACTIONS(8080), 1, + anon_sym_LBRACE, + STATE(4460), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(7864), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122639] = 3, + [127616] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4315), 1, + STATE(4461), 1, sym_comment, - ACTIONS(7930), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122652] = 3, + ACTIONS(8066), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127629] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4316), 1, + ACTIONS(7482), 1, + anon_sym_RPAREN, + STATE(4429), 1, + aux_sym__block_body_repeat1, + STATE(4462), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(7858), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122665] = 4, + [127646] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4317), 1, + STATE(4463), 1, sym_comment, - ACTIONS(1870), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122680] = 4, - ACTIONS(103), 1, + ACTIONS(8082), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [127659] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1558), 1, - sym__entry_separator, - STATE(4318), 1, + STATE(4464), 1, sym_comment, - ACTIONS(1556), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [122695] = 5, + ACTIONS(8084), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [127672] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7932), 1, - anon_sym_COLON2, - STATE(4181), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(4319), 1, + ACTIONS(6670), 1, + anon_sym_LPAREN2, + ACTIONS(8086), 1, + anon_sym_RBRACK, + ACTIONS(8088), 1, + sym__entry_separator, + STATE(4465), 1, sym_comment, - ACTIONS(5322), 2, - sym__newline, - sym__space, - [122712] = 3, + STATE(5208), 1, + sym__expr_parenthesized_immediate, + [127691] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4320), 1, + STATE(4466), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(8090), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122725] = 3, - ACTIONS(3), 1, + [127704] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4321), 1, + ACTIONS(2196), 1, + sym__entry_separator, + STATE(4467), 1, sym_comment, - ACTIONS(7804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2198), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [122738] = 3, + anon_sym_DOT_DOT, + [127719] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4322), 1, + STATE(4468), 1, sym_comment, - ACTIONS(7804), 4, + ACTIONS(8092), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122751] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7934), 1, - anon_sym_DOT_DOT2, - STATE(4323), 1, - sym_comment, - ACTIONS(7936), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122768] = 3, + [127732] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4324), 1, + STATE(4469), 1, sym_comment, - ACTIONS(7938), 4, + ACTIONS(8094), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122781] = 3, + [127745] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4325), 1, + STATE(4470), 1, sym_comment, - ACTIONS(7940), 4, + ACTIONS(8096), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122794] = 3, + [127758] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4326), 1, + STATE(4471), 1, sym_comment, - ACTIONS(7942), 4, + ACTIONS(8098), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122807] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127771] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4327), 1, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(7870), 1, + anon_sym_LBRACK, + ACTIONS(8100), 1, + anon_sym_RBRACK, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(4472), 1, sym_comment, - ACTIONS(7944), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122820] = 3, - ACTIONS(3), 1, + [127790] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4328), 1, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(7870), 1, + anon_sym_LBRACK, + ACTIONS(8102), 1, + anon_sym_RBRACK, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(4473), 1, sym_comment, - ACTIONS(7946), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122833] = 3, - ACTIONS(3), 1, + [127809] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4329), 1, + ACTIONS(6670), 1, + anon_sym_LPAREN2, + ACTIONS(8104), 1, + anon_sym_RBRACK, + ACTIONS(8106), 1, + sym__entry_separator, + STATE(4474), 1, sym_comment, - ACTIONS(7948), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122846] = 3, + STATE(5208), 1, + sym__expr_parenthesized_immediate, + [127828] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4330), 1, + STATE(4475), 1, sym_comment, - ACTIONS(7938), 4, + ACTIONS(7363), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122859] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127841] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4331), 1, + STATE(4476), 1, sym_comment, - ACTIONS(7950), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122872] = 3, + ACTIONS(1770), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1772), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [127856] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4332), 1, + STATE(4477), 1, sym_comment, - ACTIONS(4078), 4, + ACTIONS(4169), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [122885] = 3, + [127869] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4333), 1, + STATE(4478), 1, sym_comment, - ACTIONS(4080), 4, + ACTIONS(4171), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [122898] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4334), 1, - sym_comment, - ACTIONS(7952), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122911] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1866), 1, - sym__entry_separator, - STATE(4335), 1, - sym_comment, - ACTIONS(1868), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [122926] = 3, + [127882] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4336), 1, + STATE(4479), 1, sym_comment, - ACTIONS(7954), 4, + ACTIONS(8108), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122939] = 3, + [127895] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4337), 1, + STATE(4480), 1, sym_comment, - ACTIONS(7956), 4, + ACTIONS(8108), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122952] = 3, + [127908] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4338), 1, + STATE(4481), 1, sym_comment, - ACTIONS(7958), 4, + ACTIONS(8110), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122965] = 3, + [127921] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4339), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8112), 1, + anon_sym_DOT_DOT2, + STATE(4482), 1, + sym_comment, + ACTIONS(8114), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127938] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4483), 1, sym_comment, - ACTIONS(7960), 4, + ACTIONS(8116), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122978] = 3, + [127951] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4340), 1, + STATE(4484), 1, sym_comment, - ACTIONS(7954), 4, + ACTIONS(8118), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122991] = 3, - ACTIONS(3), 1, + [127964] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4341), 1, - sym_comment, - ACTIONS(7952), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1020), 1, anon_sym_RBRACE, - [123004] = 4, - ACTIONS(3), 1, + ACTIONS(1022), 1, + sym__entry_separator, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern_in_record, + STATE(4485), 1, + sym_comment, + [127983] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(4342), 1, + ACTIONS(994), 1, + anon_sym_RBRACE, + ACTIONS(1030), 1, + sym__entry_separator, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern_in_record, + STATE(4486), 1, sym_comment, - ACTIONS(1726), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123019] = 3, + [128002] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4343), 1, + STATE(4487), 1, sym_comment, - ACTIONS(6936), 4, + ACTIONS(7188), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [123032] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7962), 1, - sym__newline, - ACTIONS(7965), 1, - anon_sym_PIPE, - ACTIONS(7968), 1, - anon_sym_EQ_GT, - STATE(4344), 2, - sym_comment, - aux_sym_match_pattern_repeat1, - [123049] = 3, + [128015] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4345), 1, + STATE(4488), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(8118), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123062] = 3, + [128028] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4346), 1, + STATE(4489), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(7268), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123075] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128041] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7268), 1, + sym__entry_separator, + STATE(4490), 1, + sym_comment, + ACTIONS(7555), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128058] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4347), 1, + STATE(4491), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(8120), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123088] = 3, + [128071] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4348), 1, + STATE(4492), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(8120), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123101] = 4, + [128084] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(4349), 1, + ACTIONS(8122), 1, + anon_sym_LBRACE, + STATE(3417), 1, + sym__blosure, + STATE(4493), 1, sym_comment, - ACTIONS(1802), 3, + STATE(3494), 2, + sym_block, + sym_val_closure, + [128101] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123116] = 6, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3460), 1, + sym_block, + STATE(4494), 1, + sym_comment, + STATE(4498), 1, + aux_sym__repeat_newline, + [128120] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, + ACTIONS(8124), 1, + anon_sym_GT2, + ACTIONS(8126), 1, + anon_sym_AT2, + ACTIONS(8128), 1, sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACK, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(4350), 1, + STATE(4495), 1, sym_comment, - [123135] = 3, - ACTIONS(3), 1, + STATE(4826), 1, + sym_param_completer, + [128139] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4351), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2597), 1, + sym__entry_separator, + ACTIONS(2599), 1, + anon_sym_RBRACK, + STATE(4496), 1, sym_comment, - ACTIONS(7696), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123148] = 6, + [128158] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3214), 1, + STATE(3463), 1, sym_block, - STATE(4352), 1, + STATE(4497), 1, sym_comment, - STATE(4356), 1, + STATE(4500), 1, aux_sym__repeat_newline, - [123167] = 4, + [128177] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(4353), 1, - sym_comment, - ACTIONS(1870), 3, + ACTIONS(2907), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123182] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACK, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, - STATE(4354), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3464), 1, + sym_block, + STATE(4498), 1, sym_comment, - [123201] = 6, + [128196] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3317), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3082), 1, sym_block, - STATE(4355), 1, + STATE(4499), 1, sym_comment, - STATE(4358), 1, - aux_sym__repeat_newline, - [123220] = 6, + [128215] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3318), 1, + STATE(3466), 1, sym_block, - STATE(4356), 1, + STATE(4500), 1, sym_comment, - [123239] = 6, + [128234] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACK, - ACTIONS(1018), 1, + ACTIONS(1973), 1, sym__entry_separator, - ACTIONS(2583), 1, + ACTIONS(1975), 1, + anon_sym_RBRACK, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1983), 1, sym__unquoted_pattern_in_list, - STATE(4357), 1, + STATE(4501), 1, sym_comment, - [123258] = 6, + [128253] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, + ACTIONS(3144), 1, + anon_sym_SEMI, + STATE(1369), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4502), 1, + sym_comment, + STATE(4562), 1, aux_sym__repeat_newline, - STATE(3320), 1, - sym_block, - STATE(4358), 1, + [128272] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4503), 1, + sym_comment, + ACTIONS(8130), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128285] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4504), 1, sym_comment, - [123277] = 6, + ACTIONS(1870), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1872), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [128300] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4505), 1, + sym_comment, + ACTIONS(7848), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128313] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + STATE(4506), 1, + sym_comment, + ACTIONS(1852), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7972), 1, + ACTIONS(1854), 2, anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(4359), 1, + sym__unquoted_pattern_in_list, + [128328] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2102), 1, + anon_sym_LBRACE, + ACTIONS(8132), 1, + anon_sym_DOT_DOT2, + STATE(4507), 1, + sym_comment, + ACTIONS(8134), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128345] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2110), 1, + anon_sym_LBRACE, + ACTIONS(8136), 1, + anon_sym_DOT_DOT2, + STATE(4508), 1, + sym_comment, + ACTIONS(8138), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128362] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2118), 1, + anon_sym_LBRACE, + ACTIONS(8140), 1, + anon_sym_DOT_DOT2, + STATE(4509), 1, sym_comment, - [123296] = 6, + ACTIONS(8142), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128379] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3183), 1, + STATE(3326), 1, sym_block, - STATE(4360), 1, + STATE(4510), 1, sym_comment, - STATE(4362), 1, + STATE(4512), 1, aux_sym__repeat_newline, - [123315] = 6, + [128398] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3184), 1, + STATE(3328), 1, sym_block, - STATE(4361), 1, + STATE(4511), 1, sym_comment, - STATE(4363), 1, + STATE(4513), 1, aux_sym__repeat_newline, - [123334] = 6, + [128417] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3185), 1, + STATE(3329), 1, sym_block, - STATE(4362), 1, + STATE(4512), 1, sym_comment, - [123353] = 6, + [128436] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3187), 1, + STATE(3331), 1, sym_block, - STATE(4363), 1, + STATE(4513), 1, sym_comment, - [123372] = 3, - ACTIONS(3), 1, + [128455] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4364), 1, - sym_comment, - ACTIONS(7974), 4, - anon_sym_EQ, - anon_sym_in, + ACTIONS(3478), 1, + anon_sym_COLON2, + ACTIONS(8144), 2, sym__newline, - anon_sym_COLON, - [123385] = 5, + sym__space, + STATE(4514), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat1, + [128470] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(2200), 1, sym__entry_separator, - STATE(2232), 1, - aux_sym__types_body_repeat2, - STATE(4365), 1, + STATE(4515), 1, sym_comment, - ACTIONS(7448), 2, + ACTIONS(2202), 3, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [123402] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4366), 1, - sym_comment, - ACTIONS(7032), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [123415] = 5, + [128485] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(7363), 1, sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(4367), 1, + ACTIONS(7536), 1, + anon_sym_DOT_DOT2, + STATE(4516), 1, sym_comment, - [123431] = 3, + ACTIONS(7538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128502] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4368), 1, - sym_comment, - ACTIONS(1860), 3, - anon_sym_RBRACK, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(6081), 1, sym__entry_separator, - sym__table_head_separator, - [123443] = 3, + ACTIONS(6083), 1, + anon_sym_RBRACE, + STATE(4517), 1, + sym_comment, + STATE(5178), 1, + sym__expr_parenthesized_immediate, + [128521] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4369), 1, + STATE(4518), 1, sym_comment, - ACTIONS(7976), 3, + ACTIONS(7951), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [123455] = 3, + anon_sym_RBRACE, + [128534] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4370), 1, + STATE(4519), 1, sym_comment, - ACTIONS(7978), 3, + ACTIONS(8011), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [123467] = 3, + [128546] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4371), 1, + STATE(4520), 1, sym_comment, - ACTIONS(7980), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123479] = 3, + ACTIONS(2174), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [128558] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4372), 1, + ACTIONS(1744), 1, + anon_sym_LBRACE, + ACTIONS(7361), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8147), 1, + anon_sym_DOT, + STATE(4521), 1, sym_comment, - ACTIONS(7982), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123491] = 5, + [128574] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7984), 1, - anon_sym_export, - ACTIONS(7986), 1, - anon_sym_def, - ACTIONS(7988), 1, - anon_sym_extern, - STATE(4373), 1, + STATE(4522), 1, + sym_comment, + ACTIONS(4682), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [128586] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8149), 1, + anon_sym_RBRACK, + ACTIONS(8151), 1, + sym_hex_digit, + STATE(4523), 1, sym_comment, - [123507] = 5, + STATE(4616), 1, + aux_sym_val_binary_repeat1, + [128602] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(4456), 1, sym__entry_separator, - ACTIONS(7990), 1, + ACTIONS(8153), 1, anon_sym_RBRACK, - STATE(2110), 1, + STATE(2134), 1, aux_sym__types_body_repeat2, - STATE(4374), 1, + STATE(4524), 1, sym_comment, - [123523] = 4, + [128618] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7992), 1, - anon_sym_BANG, - STATE(4375), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8155), 1, + anon_sym_RBRACK, + STATE(4525), 1, sym_comment, - ACTIONS(1440), 2, - sym__table_head_separator, - anon_sym_DOT2, - [123537] = 3, - ACTIONS(3), 1, + STATE(4530), 1, + aux_sym_val_binary_repeat1, + [128634] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4376), 1, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(8157), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym__types_body_repeat2, + STATE(4526), 1, sym_comment, - ACTIONS(7690), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123549] = 4, + [128650] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2563), 1, + ACTIONS(1622), 1, sym__entry_separator, - STATE(4377), 1, - sym_comment, - ACTIONS(2565), 2, - anon_sym_RBRACK, + ACTIONS(8159), 1, anon_sym_RBRACE, - [123563] = 5, + STATE(1484), 1, + aux_sym__types_body_repeat2, + STATE(4527), 1, + sym_comment, + [128666] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7994), 1, - anon_sym_RBRACK, - ACTIONS(7996), 1, - anon_sym_DOT_DOT, - STATE(4378), 1, + STATE(4528), 1, sym_comment, - STATE(4863), 1, - sym__match_pattern_rest, - [123579] = 3, + ACTIONS(3148), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [128678] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4379), 1, + STATE(4529), 1, sym_comment, - ACTIONS(7883), 3, + ACTIONS(7892), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123591] = 4, + [128690] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8161), 1, + anon_sym_RBRACK, + STATE(4530), 1, + sym_comment, + STATE(4766), 1, + aux_sym_val_binary_repeat1, + [128706] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3073), 1, + sym_block, + STATE(4531), 1, + sym_comment, + [128722] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2571), 1, + ACTIONS(2533), 1, sym__entry_separator, - STATE(4380), 1, + STATE(4532), 1, sym_comment, - ACTIONS(2573), 2, + ACTIONS(2535), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [123605] = 5, - ACTIONS(3), 1, + [128736] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7998), 1, - anon_sym_RBRACK, - ACTIONS(8000), 1, - sym_hex_digit, - STATE(4381), 1, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(8163), 1, + anon_sym_GT2, + STATE(1971), 1, + aux_sym__types_body_repeat2, + STATE(4533), 1, sym_comment, - STATE(4498), 1, - aux_sym_val_binary_repeat1, - [123621] = 3, - ACTIONS(3), 1, + [128752] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4382), 1, + ACTIONS(5235), 1, + sym__entry_separator, + STATE(4534), 1, sym_comment, - ACTIONS(2092), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123633] = 3, + ACTIONS(5879), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128766] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4383), 1, + STATE(4535), 1, sym_comment, - ACTIONS(7861), 3, + ACTIONS(7913), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123645] = 3, + [128778] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4384), 1, + STATE(4536), 1, sym_comment, - ACTIONS(7881), 3, + ACTIONS(7915), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123657] = 3, + [128790] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5275), 1, + sym__entry_separator, + STATE(4537), 1, + sym_comment, + ACTIONS(5798), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128804] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1713), 1, + sym__entry_separator, + STATE(4538), 1, + sym_comment, + ACTIONS(1614), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [128818] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4385), 1, + STATE(4539), 1, sym_comment, - ACTIONS(7804), 3, + ACTIONS(8064), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123669] = 5, + [128830] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4456), 1, sym__entry_separator, - ACTIONS(8002), 1, - anon_sym_RBRACE, - STATE(1464), 1, + ACTIONS(8165), 1, + anon_sym_RBRACK, + STATE(2018), 1, aux_sym__types_body_repeat2, - STATE(4386), 1, + STATE(4540), 1, + sym_comment, + [128846] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5239), 1, + sym__entry_separator, + STATE(4541), 1, sym_comment, - [123685] = 3, + ACTIONS(5883), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128860] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4387), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8167), 1, + anon_sym_RBRACK, + STATE(4542), 1, sym_comment, - ACTIONS(7690), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123697] = 5, + STATE(4708), 1, + aux_sym_val_binary_repeat1, + [128876] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(8004), 1, - anon_sym_RBRACE, - STATE(1467), 1, + ACTIONS(1624), 1, + anon_sym_COLON2, + STATE(1499), 1, aux_sym__types_body_repeat2, - STATE(4388), 1, + STATE(4543), 1, sym_comment, - [123713] = 3, - ACTIONS(3), 1, + [128892] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4389), 1, + ACTIONS(5036), 1, + sym__entry_separator, + ACTIONS(8169), 1, + anon_sym_GT2, + STATE(2404), 1, + aux_sym__types_body_repeat2, + STATE(4544), 1, sym_comment, - ACTIONS(7863), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123725] = 3, - ACTIONS(3), 1, + [128908] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4390), 1, + ACTIONS(5036), 1, + sym__entry_separator, + ACTIONS(8171), 1, + anon_sym_GT2, + STATE(2412), 1, + aux_sym__types_body_repeat2, + STATE(4545), 1, sym_comment, - ACTIONS(7865), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123737] = 5, + [128924] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3454), 1, - sym__newline, - ACTIONS(3456), 1, - sym__space, - STATE(1398), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(4391), 1, + ACTIONS(5255), 1, + sym__entry_separator, + STATE(4546), 1, sym_comment, - [123753] = 3, + ACTIONS(5815), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128938] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4392), 1, + STATE(4547), 1, sym_comment, - ACTIONS(7839), 3, - ts_builtin_sym_end, + ACTIONS(8173), 3, sym__newline, anon_sym_SEMI, - [123765] = 5, + anon_sym_RPAREN, + [128950] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4393), 1, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(8175), 1, + anon_sym_RBRACK, + STATE(1956), 1, + aux_sym__types_body_repeat2, + STATE(4548), 1, sym_comment, - STATE(4416), 1, - sym_block, - [123781] = 3, - ACTIONS(3), 1, + [128966] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4394), 1, + ACTIONS(4456), 1, + sym__entry_separator, + ACTIONS(8177), 1, + anon_sym_RBRACK, + STATE(2119), 1, + aux_sym__types_body_repeat2, + STATE(4549), 1, sym_comment, - ACTIONS(7938), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123793] = 3, - ACTIONS(3), 1, + [128982] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4395), 1, + ACTIONS(7943), 1, + sym__entry_separator, + STATE(4550), 1, sym_comment, - ACTIONS(7938), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123805] = 4, - ACTIONS(3), 1, + ACTIONS(8179), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128996] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1382), 1, - aux_sym__block_body_repeat1, - STATE(4396), 1, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(8181), 1, + anon_sym_RBRACK, + STATE(1987), 1, + aux_sym__types_body_repeat2, + STATE(4551), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - [123819] = 3, + [129012] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4397), 1, + STATE(4552), 1, sym_comment, - ACTIONS(7804), 3, - ts_builtin_sym_end, + ACTIONS(8183), 3, sym__newline, anon_sym_SEMI, - [123831] = 4, + anon_sym_RPAREN, + [129024] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7992), 1, - anon_sym_QMARK2, - STATE(4398), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(8185), 1, + anon_sym_GT2, + STATE(4553), 1, sym_comment, - ACTIONS(1440), 2, - sym__table_head_separator, - anon_sym_DOT2, - [123845] = 3, + STATE(5368), 1, + sym_param_completer, + [129040] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2290), 1, + sym__entry_separator, + STATE(4554), 1, + sym_comment, + ACTIONS(2292), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [129054] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4399), 1, + STATE(4555), 1, sym_comment, - ACTIONS(7902), 3, + ACTIONS(7917), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123857] = 3, - ACTIONS(3), 1, + [129066] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4400), 1, + ACTIONS(5281), 1, + sym__entry_separator, + STATE(4556), 1, sym_comment, - ACTIONS(2084), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123869] = 5, + ACTIONS(5817), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [129080] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2294), 1, + sym__entry_separator, + STATE(4557), 1, + sym_comment, + ACTIONS(2296), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [129094] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5294), 1, + sym__entry_separator, + STATE(4558), 1, + sym_comment, + ACTIONS(5921), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [129108] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5779), 1, - anon_sym_EQ, - STATE(3239), 1, - sym_param_completer, - STATE(4401), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(8187), 1, + anon_sym_COLON, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(4559), 1, sym_comment, - [123885] = 5, + [129124] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8006), 1, - anon_sym_GT2, - STATE(4402), 1, + ACTIONS(1852), 1, + anon_sym_LBRACE, + ACTIONS(1854), 1, + sym__unquoted_pattern, + ACTIONS(8189), 1, + aux_sym__immediate_decimal_token5, + STATE(4560), 1, sym_comment, - STATE(5004), 1, - sym_param_completer, - [123901] = 3, + [129140] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4403), 1, + STATE(4561), 1, sym_comment, - ACTIONS(7924), 3, - ts_builtin_sym_end, + ACTIONS(8191), 3, sym__newline, anon_sym_SEMI, - [123913] = 5, + anon_sym_RPAREN, + [129152] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3362), 1, + ACTIONS(3384), 1, anon_sym_SEMI, - STATE(540), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(4404), 1, + STATE(4562), 1, sym_comment, - [123929] = 3, + [129168] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4405), 1, + STATE(4563), 1, sym_comment, - ACTIONS(8008), 3, + ACTIONS(7905), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [123941] = 3, + [129180] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4406), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8193), 1, + anon_sym_RBRACK, + STATE(4564), 1, sym_comment, - ACTIONS(7833), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123953] = 5, + STATE(4599), 1, + aux_sym_val_binary_repeat1, + [129196] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4407), 1, - sym_comment, - STATE(4444), 1, - sym_block, - [123969] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5779), 1, - anon_sym_EQ, - STATE(3241), 1, - sym_param_completer, - STATE(4408), 1, + ACTIONS(8195), 1, + anon_sym_RBRACK, + ACTIONS(8198), 1, + anon_sym_DOT_DOT, + ACTIONS(8200), 1, + sym__entry_separator, + STATE(4565), 1, sym_comment, - [123985] = 3, + [129212] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4409), 1, + STATE(4566), 1, sym_comment, - ACTIONS(7950), 3, + ACTIONS(7905), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123997] = 3, + [129224] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4410), 1, + STATE(4567), 1, sym_comment, - ACTIONS(7835), 3, + ACTIONS(7888), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124009] = 4, + [129236] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8203), 1, + anon_sym_DQUOTE, + STATE(4568), 1, + sym_comment, + ACTIONS(8205), 2, + sym__escaped_str_content, + sym_escape_sequence, + [129250] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8012), 1, - anon_sym_COMMA, - STATE(4411), 1, + STATE(4569), 1, sym_comment, - ACTIONS(8010), 2, - anon_sym_RBRACK, - sym_hex_digit, - [124023] = 3, + ACTIONS(8025), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129262] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4412), 1, + STATE(4570), 1, sym_comment, - ACTIONS(7910), 3, + ACTIONS(7981), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124035] = 5, + [129274] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8014), 1, - anon_sym_RBRACK, - STATE(4413), 1, + STATE(4571), 1, sym_comment, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - [124051] = 4, + ACTIONS(8207), 3, + sym__newline, + anon_sym_LBRACK, + anon_sym_RBRACK, + [129286] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7960), 1, + ACTIONS(2632), 1, sym__entry_separator, - STATE(4414), 1, + STATE(4572), 1, sym_comment, - ACTIONS(6947), 2, + ACTIONS(2634), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124065] = 3, + anon_sym_RBRACE, + [129300] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4415), 1, + STATE(4573), 1, sym_comment, - ACTIONS(7954), 3, + ACTIONS(7848), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124077] = 3, + [129312] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4574), 1, + sym_comment, + ACTIONS(850), 3, + sym__newline, + sym__space, + anon_sym_COLON2, + [129324] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4416), 1, + STATE(4575), 1, sym_comment, - ACTIONS(7869), 3, + ACTIONS(7848), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124089] = 3, + [129336] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4417), 1, + STATE(4576), 1, sym_comment, - ACTIONS(7954), 3, + ACTIONS(7937), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124101] = 3, + [129348] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4418), 1, + STATE(4577), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(7933), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124113] = 3, + [129360] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4419), 1, + STATE(4578), 1, sym_comment, - ACTIONS(7696), 3, - ts_builtin_sym_end, + ACTIONS(8209), 3, sym__newline, - anon_sym_SEMI, - [124125] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + [129372] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4420), 1, + STATE(4579), 1, sym_comment, - ACTIONS(7675), 3, + ACTIONS(7919), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124137] = 3, + [129384] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4421), 1, + ACTIONS(7945), 1, + sym__entry_separator, + STATE(4580), 1, sym_comment, - ACTIONS(2593), 3, + ACTIONS(8211), 2, anon_sym_RBRACK, + anon_sym_DOT_DOT, + [129398] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8060), 1, sym__entry_separator, - sym__table_head_separator, - [124149] = 3, + STATE(4581), 1, + sym_comment, + ACTIONS(7133), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [129412] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4422), 1, + STATE(4582), 1, + sym_comment, + ACTIONS(4615), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [129424] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4583), 1, sym_comment, - ACTIONS(7675), 3, + ACTIONS(8033), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124161] = 5, + [129436] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(8016), 1, - anon_sym_COLON, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(4423), 1, + STATE(4584), 1, sym_comment, - [124177] = 4, - ACTIONS(103), 1, + ACTIONS(8033), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129448] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2607), 1, - sym__entry_separator, - STATE(4424), 1, + STATE(4585), 1, sym_comment, - ACTIONS(2609), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124191] = 4, + ACTIONS(7888), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129460] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2511), 1, - sym__entry_separator, - STATE(4425), 1, + ACTIONS(8213), 1, + anon_sym_LPAREN, + STATE(4586), 1, sym_comment, - ACTIONS(2513), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124205] = 4, + ACTIONS(8215), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [129474] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2515), 1, + ACTIONS(1622), 1, sym__entry_separator, - STATE(4426), 1, - sym_comment, - ACTIONS(2517), 2, - anon_sym_RBRACK, + ACTIONS(8217), 1, anon_sym_RBRACE, - [124219] = 3, + STATE(1493), 1, + aux_sym__types_body_repeat2, + STATE(4587), 1, + sym_comment, + [129490] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4427), 1, + STATE(4588), 1, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7977), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124231] = 5, + [129502] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(1804), 1, + ACTIONS(1746), 1, sym__unquoted_pattern, - ACTIONS(8018), 1, + ACTIONS(7903), 1, aux_sym__immediate_decimal_token5, - STATE(4428), 1, + STATE(4589), 1, sym_comment, - [124247] = 3, - ACTIONS(3), 1, + [129518] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4429), 1, + ACTIONS(8220), 1, + anon_sym_LPAREN, + STATE(4590), 1, sym_comment, - ACTIONS(7683), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124259] = 3, + ACTIONS(8222), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [129532] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4430), 1, + STATE(4591), 1, sym_comment, - ACTIONS(7922), 3, + ACTIONS(7890), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124271] = 5, - ACTIONS(3), 1, + [129544] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8020), 1, - anon_sym_GT2, - STATE(4431), 1, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(8224), 1, + anon_sym_RBRACK, + STATE(1981), 1, + aux_sym__types_body_repeat2, + STATE(4592), 1, sym_comment, - STATE(4933), 1, - sym_param_completer, - [124287] = 3, + [129560] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7949), 1, + sym__entry_separator, + STATE(4593), 1, + sym_comment, + ACTIONS(8198), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [129574] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4432), 1, + STATE(4594), 1, sym_comment, - ACTIONS(7675), 3, - ts_builtin_sym_end, + ACTIONS(8226), 3, sym__newline, anon_sym_SEMI, - [124299] = 3, + anon_sym_RPAREN, + [129586] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4433), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(6779), 1, + sym__unquoted_pattern_in_record, + STATE(4595), 1, sym_comment, - ACTIONS(7675), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124311] = 3, + STATE(4903), 1, + sym__expr_parenthesized_immediate, + [129602] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4434), 1, + STATE(4596), 1, sym_comment, - ACTIONS(7683), 3, - ts_builtin_sym_end, + ACTIONS(8228), 3, sym__newline, anon_sym_SEMI, - [124323] = 3, + anon_sym_RPAREN, + [129614] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4435), 1, + STATE(4597), 1, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7935), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124335] = 4, - ACTIONS(103), 1, + [129626] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2537), 1, - sym__entry_separator, - STATE(4436), 1, + ACTIONS(8232), 1, + anon_sym_COMMA, + STATE(4598), 1, sym_comment, - ACTIONS(2539), 2, + ACTIONS(8230), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [124349] = 3, + sym_hex_digit, + [129640] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4437), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8234), 1, + anon_sym_RBRACK, + STATE(4599), 1, sym_comment, - ACTIONS(7711), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124361] = 5, + STATE(4766), 1, + aux_sym_val_binary_repeat1, + [129656] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4313), 1, + sym_block, + STATE(4600), 1, + sym_comment, + [129672] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, + ACTIONS(5197), 1, anon_sym_LPAREN2, - STATE(4438), 1, + ACTIONS(5207), 1, + sym__unquoted_pattern_in_record, + STATE(4601), 1, sym_comment, - STATE(4728), 1, + STATE(4854), 1, sym__expr_parenthesized_immediate, - [124377] = 5, + [129688] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(8236), 1, + anon_sym_COLON, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(4602), 1, + sym_comment, + [129704] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(8022), 1, - anon_sym_GT2, - STATE(2376), 1, + ACTIONS(8238), 1, + anon_sym_RBRACK, + STATE(4472), 1, aux_sym__types_body_repeat2, - STATE(4439), 1, + STATE(4603), 1, sym_comment, - [124393] = 3, + [129720] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4440), 1, + STATE(4604), 1, sym_comment, - ACTIONS(7711), 3, + ACTIONS(7977), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124405] = 5, + [129732] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(866), 1, + anon_sym_RBRACE, + ACTIONS(886), 1, + sym__entry_separator, + ACTIONS(6779), 1, + sym__unquoted_pattern_in_record, + STATE(4605), 1, + sym_comment, + [129748] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(5776), 1, + anon_sym_EQ, + STATE(3168), 1, + sym_param_completer, + STATE(4606), 1, + sym_comment, + [129764] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(8024), 1, + ACTIONS(8240), 1, anon_sym_GT2, - STATE(2372), 1, + STATE(1985), 1, aux_sym__types_body_repeat2, - STATE(4441), 1, + STATE(4607), 1, sym_comment, - [124421] = 3, + [129780] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4442), 1, + STATE(4608), 1, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8062), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124433] = 3, + [129792] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4443), 1, + STATE(4609), 1, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8108), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124445] = 3, + [129804] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4444), 1, + STATE(4610), 1, sym_comment, - ACTIONS(7873), 3, + ACTIONS(8108), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124457] = 5, + [129816] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(8026), 1, - anon_sym_GT2, - STATE(2362), 1, + ACTIONS(8242), 1, + anon_sym_RBRACK, + STATE(1977), 1, aux_sym__types_body_repeat2, - STATE(4445), 1, + STATE(4611), 1, sym_comment, - [124473] = 5, + [129832] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(4446), 1, - sym_comment, - STATE(4725), 1, - sym__expr_parenthesized_immediate, - [124489] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4257), 1, - sym_block, - STATE(4447), 1, - sym_comment, - [124505] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8028), 1, - anon_sym_GT2, - STATE(1938), 1, - aux_sym__types_body_repeat2, - STATE(4448), 1, + ACTIONS(3946), 1, + anon_sym_LBRACK, + STATE(4612), 1, sym_comment, - [124521] = 5, - ACTIONS(103), 1, + STATE(4661), 1, + aux_sym__table_body_repeat1, + STATE(4706), 1, + sym_val_list, + [129848] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8030), 1, - anon_sym_RBRACK, - ACTIONS(8033), 1, - anon_sym_DOT_DOT, - ACTIONS(8035), 1, - sym__entry_separator, - STATE(4449), 1, + STATE(4613), 1, sym_comment, - [124537] = 5, - ACTIONS(103), 1, + ACTIONS(7890), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129860] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8038), 1, - anon_sym_RBRACE, - STATE(1483), 1, - aux_sym__types_body_repeat2, - STATE(4450), 1, + STATE(4614), 1, sym_comment, - [124553] = 5, + ACTIONS(8244), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [129872] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(8041), 1, - anon_sym_RBRACK, - STATE(2087), 1, + ACTIONS(8246), 1, + anon_sym_GT2, + STATE(1976), 1, aux_sym__types_body_repeat2, - STATE(4451), 1, - sym_comment, - [124569] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2254), 1, - sym__entry_separator, - STATE(4452), 1, - sym_comment, - ACTIONS(2256), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124583] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2254), 1, - sym__entry_separator, - STATE(4453), 1, + STATE(4615), 1, sym_comment, - ACTIONS(2256), 2, + [129888] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8248), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [124597] = 4, - ACTIONS(103), 1, + STATE(4616), 1, + sym_comment, + STATE(4766), 1, + aux_sym_val_binary_repeat1, + [129904] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5287), 1, - sym__entry_separator, - STATE(4454), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(5160), 1, + sym__unquoted_pattern, + STATE(4617), 1, sym_comment, - ACTIONS(5289), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [124611] = 3, + STATE(4806), 1, + sym__expr_parenthesized_immediate, + [129920] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4455), 1, + STATE(4618), 1, sym_comment, - ACTIONS(7940), 3, + ACTIONS(8066), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124623] = 3, + [129932] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4456), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(4619), 1, + sym_comment, + STATE(4801), 1, + sym__expr_parenthesized_immediate, + [129948] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(3303), 1, + sym_block, + STATE(4620), 1, + sym_comment, + [129964] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4621), 1, sym_comment, - ACTIONS(7942), 3, + ACTIONS(8066), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124635] = 3, + [129976] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4457), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(5776), 1, + anon_sym_EQ, + STATE(3163), 1, + sym_param_completer, + STATE(4622), 1, sym_comment, - ACTIONS(7944), 3, - ts_builtin_sym_end, + [129992] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, sym__newline, - anon_sym_SEMI, - [124647] = 3, + ACTIONS(8250), 1, + anon_sym_COLON, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(4623), 1, + sym_comment, + [130008] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4458), 1, + STATE(4624), 1, sym_comment, - ACTIONS(7946), 3, + ACTIONS(8120), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124659] = 3, + [130020] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4459), 1, + STATE(4625), 1, sym_comment, - ACTIONS(7948), 3, + ACTIONS(8120), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124671] = 3, + [130032] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4460), 1, + STATE(4626), 1, sym_comment, - ACTIONS(8043), 3, + ACTIONS(7939), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [124683] = 4, + [130044] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8045), 1, - sym__table_head_separator, - STATE(4461), 1, - sym_comment, - ACTIONS(1619), 2, - anon_sym_RBRACK, + ACTIONS(4420), 1, sym__entry_separator, - [124697] = 3, + ACTIONS(8252), 1, + anon_sym_RBRACK, + STATE(2007), 1, + aux_sym__types_body_repeat2, + STATE(4627), 1, + sym_comment, + [130060] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4462), 1, + STATE(4628), 1, sym_comment, - ACTIONS(4625), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124709] = 3, + ACTIONS(7848), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130072] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4463), 1, + STATE(4629), 1, sym_comment, - ACTIONS(4629), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124721] = 4, + ACTIONS(7848), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130084] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8047), 1, - anon_sym_GT2, - STATE(4464), 1, - sym_comment, - ACTIONS(8049), 2, - anon_sym_AT2, - sym__entry_separator, - [124735] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8051), 1, - anon_sym_RBRACK, - ACTIONS(8053), 1, - anon_sym_DOT_DOT, - STATE(4465), 1, + ACTIONS(8254), 1, + anon_sym_POUND_BANG, + ACTIONS(8256), 1, + sym__newline, + STATE(4630), 1, sym_comment, - STATE(5010), 1, - sym__match_pattern_rest, - [124751] = 3, + STATE(4660), 1, + aux_sym__repeat_newline, + [130100] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4466), 1, + STATE(4631), 1, sym_comment, - ACTIONS(4633), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124763] = 4, + ACTIONS(7979), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130112] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8055), 1, - anon_sym_RBRACK, - ACTIONS(8057), 1, - sym_hex_digit, - STATE(4467), 2, + STATE(4632), 1, sym_comment, - aux_sym_val_binary_repeat1, - [124777] = 5, + ACTIONS(7850), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130124] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4259), 1, - sym_block, - STATE(4468), 1, + ACTIONS(4420), 1, + sym__entry_separator, + ACTIONS(8258), 1, + anon_sym_RBRACK, + STATE(2023), 1, + aux_sym__types_body_repeat2, + STATE(4633), 1, sym_comment, - [124793] = 5, + [130140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8060), 1, - anon_sym_DOT, - STATE(4469), 1, + STATE(4634), 1, sym_comment, - [124809] = 4, + ACTIONS(8110), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130152] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5253), 1, + ACTIONS(4420), 1, sym__entry_separator, - STATE(4470), 1, - sym_comment, - ACTIONS(5255), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [124823] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8062), 1, + ACTIONS(8260), 1, anon_sym_RBRACK, - STATE(4471), 1, - sym_comment, - STATE(4474), 1, - aux_sym_val_binary_repeat1, - [124839] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(2986), 1, - sym_block, - STATE(4472), 1, + STATE(2069), 1, + aux_sym__types_body_repeat2, + STATE(4635), 1, sym_comment, - [124855] = 5, + [130168] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, + ACTIONS(4420), 1, sym__entry_separator, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - STATE(4473), 1, + ACTIONS(8262), 1, + anon_sym_RBRACK, + STATE(2033), 1, + aux_sym__types_body_repeat2, + STATE(4636), 1, sym_comment, - [124871] = 5, + [130184] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8064), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - STATE(4474), 1, + STATE(4637), 1, sym_comment, - [124887] = 5, + ACTIONS(8264), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [130196] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(4475), 1, + STATE(4638), 1, sym_comment, - STATE(4625), 1, - sym__expr_parenthesized_immediate, - [124903] = 4, - ACTIONS(103), 1, + ACTIONS(7852), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130208] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7898), 1, - sym__entry_separator, - STATE(4476), 1, + STATE(4639), 1, sym_comment, - ACTIONS(8066), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124917] = 4, - ACTIONS(103), 1, + ACTIONS(7991), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130220] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7900), 1, - sym__entry_separator, - STATE(4477), 1, + STATE(4640), 1, sym_comment, - ACTIONS(8068), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124931] = 4, - ACTIONS(103), 1, + ACTIONS(7993), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130232] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7914), 1, - sym__entry_separator, - STATE(4478), 1, + STATE(4641), 1, sym_comment, - ACTIONS(8033), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124945] = 4, - ACTIONS(103), 1, + ACTIONS(7939), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130244] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2258), 1, - sym__entry_separator, - STATE(4479), 1, + STATE(4642), 1, sym_comment, - ACTIONS(2260), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124959] = 4, - ACTIONS(103), 1, + ACTIONS(7995), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130256] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2262), 1, - sym__entry_separator, - STATE(4480), 1, + STATE(4643), 1, sym_comment, - ACTIONS(2264), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124973] = 3, + ACTIONS(8266), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130268] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4481), 1, + STATE(4644), 1, sym_comment, - ACTIONS(7956), 3, + ACTIONS(8118), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124985] = 5, - ACTIONS(103), 1, + [130280] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8070), 1, - anon_sym_GT2, - STATE(1930), 1, - aux_sym__types_body_repeat2, - STATE(4482), 1, + STATE(4645), 1, sym_comment, - [125001] = 4, + ACTIONS(7979), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130292] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(8128), 1, sym__entry_separator, - STATE(4483), 1, + ACTIONS(8268), 1, + anon_sym_AT2, + STATE(4646), 1, sym_comment, - ACTIONS(5249), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125015] = 5, - ACTIONS(103), 1, + STATE(4826), 1, + sym_param_completer, + [130308] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8072), 1, - anon_sym_GT2, - STATE(1931), 1, - aux_sym__types_body_repeat2, - STATE(4484), 1, + STATE(4647), 1, sym_comment, - [125031] = 5, + ACTIONS(7997), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130320] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - STATE(4485), 1, + ACTIONS(8270), 1, + anon_sym_RBRACK, + ACTIONS(8272), 1, + anon_sym_DOT_DOT, + STATE(4648), 1, sym_comment, - STATE(4630), 1, - sym__expr_parenthesized_immediate, - [125047] = 3, + STATE(5340), 1, + sym__match_pattern_rest, + [130336] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4486), 1, + STATE(4649), 1, sym_comment, - ACTIONS(7958), 3, + ACTIONS(7999), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125059] = 3, + [130348] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4487), 1, + STATE(4650), 1, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7931), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125071] = 3, + [130360] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4488), 1, + ACTIONS(8274), 1, + anon_sym_QMARK2, + STATE(4651), 1, + sym_comment, + ACTIONS(1450), 2, + sym__table_head_separator, + anon_sym_DOT2, + [130374] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4652), 1, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7983), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125083] = 3, + [130386] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4489), 1, + STATE(4653), 1, sym_comment, - ACTIONS(7725), 3, + ACTIONS(8118), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125095] = 5, + [130398] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8074), 1, - anon_sym_RBRACK, - STATE(4490), 1, + STATE(4654), 1, sym_comment, - STATE(4493), 1, - aux_sym_val_binary_repeat1, - [125111] = 4, + ACTIONS(7892), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130410] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(4491), 1, + STATE(4655), 1, sym_comment, - ACTIONS(7906), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125125] = 3, + ACTIONS(1864), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [130422] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4492), 1, + STATE(1387), 1, + aux_sym__block_body_repeat1, + STATE(4656), 1, sym_comment, - ACTIONS(7725), 3, - ts_builtin_sym_end, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - [125137] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8076), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - STATE(4493), 1, - sym_comment, - [125153] = 3, + [130436] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4494), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8276), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8278), 1, + aux_sym__immediate_decimal_token5, + STATE(4657), 1, sym_comment, - ACTIONS(7735), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125165] = 3, + [130452] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4495), 1, + STATE(4658), 1, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7951), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125177] = 5, + [130464] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(1616), 1, + anon_sym_RBRACE, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(8078), 1, - anon_sym_RBRACK, - STATE(1926), 1, + STATE(1470), 1, aux_sym__types_body_repeat2, - STATE(4496), 1, + STATE(4659), 1, + sym_comment, + [130480] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1966), 1, + anon_sym_POUND_BANG, + ACTIONS(8280), 1, + sym__newline, + STATE(4660), 2, + aux_sym__repeat_newline, sym_comment, - [125193] = 5, + [130494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8080), 1, - anon_sym_RBRACK, - STATE(4413), 1, - aux_sym_val_binary_repeat1, - STATE(4497), 1, + ACTIONS(8283), 1, + anon_sym_LBRACK, + STATE(4918), 1, + sym_val_list, + STATE(4661), 2, sym_comment, - [125209] = 5, + aux_sym__table_body_repeat1, + [130508] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8082), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - STATE(4498), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(8286), 1, + anon_sym_GT2, + STATE(4662), 1, sym_comment, - [125225] = 5, + STATE(5347), 1, + sym_param_completer, + [130524] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(4499), 1, + STATE(4663), 1, sym_comment, - STATE(4775), 1, - sym__expr_parenthesized_immediate, - [125241] = 3, + ACTIONS(7951), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130536] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4500), 1, + STATE(4664), 1, sym_comment, - ACTIONS(7952), 3, + ACTIONS(7939), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125253] = 5, + [130548] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8084), 1, - anon_sym_RBRACK, - STATE(4501), 1, + STATE(4665), 1, sym_comment, - STATE(4621), 1, - aux_sym_val_binary_repeat1, - [125269] = 4, - ACTIONS(103), 1, + ACTIONS(8013), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130560] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8086), 1, - anon_sym_DQUOTE, - STATE(4502), 1, + ACTIONS(8288), 1, + anon_sym_export, + ACTIONS(8290), 1, + anon_sym_def, + ACTIONS(8292), 1, + anon_sym_extern, + STATE(4666), 1, sym_comment, - ACTIONS(8088), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125283] = 3, + [130576] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4503), 1, + STATE(4667), 1, sym_comment, - ACTIONS(8090), 3, + ACTIONS(7939), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [125295] = 3, + [130588] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4504), 1, + ACTIONS(7648), 1, + anon_sym_if, + ACTIONS(8294), 1, + anon_sym_EQ_GT, + STATE(4668), 1, sym_comment, - ACTIONS(7692), 3, - ts_builtin_sym_end, + STATE(5168), 1, + sym_match_guard, + [130604] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4669), 1, + sym_comment, + ACTIONS(8296), 3, sym__newline, anon_sym_SEMI, - [125307] = 4, + anon_sym_RPAREN, + [130616] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2268), 1, + ACTIONS(7542), 1, + anon_sym_RBRACK, + ACTIONS(7544), 1, + anon_sym_DOT_DOT, + ACTIONS(7550), 1, sym__entry_separator, - STATE(4505), 1, + STATE(4670), 1, sym_comment, - ACTIONS(2270), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125321] = 4, + [130632] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(7552), 1, + anon_sym_RBRACK, + ACTIONS(7555), 1, + anon_sym_DOT_DOT, + ACTIONS(7557), 1, sym__entry_separator, - STATE(4506), 1, + STATE(4671), 1, sym_comment, - ACTIONS(2274), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125335] = 3, + [130648] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4507), 1, + STATE(4672), 1, sym_comment, - ACTIONS(7747), 3, + ACTIONS(7941), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125347] = 3, - ACTIONS(3), 1, + [130660] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4508), 1, + ACTIONS(8298), 1, + anon_sym_GT2, + STATE(4673), 1, sym_comment, - ACTIONS(7747), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125359] = 5, + ACTIONS(8300), 2, + anon_sym_AT2, + sym__entry_separator, + [130674] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(8151), 1, sym_hex_digit, - ACTIONS(8092), 1, + ACTIONS(8302), 1, anon_sym_RBRACK, - STATE(4509), 1, + STATE(4674), 1, sym_comment, - STATE(4512), 1, + STATE(4684), 1, aux_sym_val_binary_repeat1, - [125375] = 4, + [130690] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7757), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4310), 1, + sym_block, + STATE(4675), 1, + sym_comment, + [130706] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2581), 1, sym__entry_separator, - STATE(4510), 1, + STATE(4676), 1, sym_comment, - ACTIONS(8094), 2, + ACTIONS(2583), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125389] = 4, + anon_sym_RBRACE, + [130720] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7757), 1, + ACTIONS(2593), 1, sym__entry_separator, - STATE(4511), 1, + STATE(4677), 1, sym_comment, - ACTIONS(8094), 2, + ACTIONS(2595), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125403] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [130734] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8096), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - STATE(4512), 1, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(7899), 1, + anon_sym_RBRACE, + STATE(1482), 1, + aux_sym__types_body_repeat2, + STATE(4678), 1, sym_comment, - [125419] = 4, + [130750] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7825), 1, + ACTIONS(4780), 1, sym__entry_separator, - STATE(4513), 1, + ACTIONS(4786), 1, + anon_sym_RBRACE, + STATE(2255), 1, + aux_sym__types_body_repeat2, + STATE(4679), 1, sym_comment, - ACTIONS(8098), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125433] = 4, + [130766] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5940), 1, + ACTIONS(2276), 1, sym__entry_separator, - STATE(4514), 1, + STATE(4680), 1, sym_comment, - ACTIONS(5938), 2, + ACTIONS(2278), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [125447] = 4, + [130780] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7204), 1, + ACTIONS(4328), 1, sym__entry_separator, - STATE(4515), 1, + ACTIONS(8304), 1, + anon_sym_GT2, + STATE(1947), 1, + aux_sym__types_body_repeat2, + STATE(4681), 1, sym_comment, - ACTIONS(7272), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125461] = 4, + [130796] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7920), 1, + ACTIONS(4780), 1, sym__entry_separator, - STATE(4516), 1, + ACTIONS(8306), 1, + anon_sym_RBRACE, + STATE(2257), 1, + aux_sym__types_body_repeat2, + STATE(4682), 1, sym_comment, - ACTIONS(8100), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125475] = 4, + [130812] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(2276), 1, sym__entry_separator, - STATE(4517), 1, + STATE(4683), 1, sym_comment, - ACTIONS(7278), 2, + ACTIONS(2278), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125489] = 3, + anon_sym_RBRACE, + [130826] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4518), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8308), 1, + anon_sym_RBRACK, + STATE(4684), 1, sym_comment, - ACTIONS(7926), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125501] = 3, + STATE(4766), 1, + aux_sym_val_binary_repeat1, + [130842] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4519), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + sym__unquoted_pattern, + STATE(4685), 1, sym_comment, - ACTIONS(7952), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125513] = 4, + STATE(4929), 1, + sym__expr_parenthesized_immediate, + [130858] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(5778), 1, + anon_sym_EQ, + STATE(3195), 1, + sym_param_completer, + STATE(4686), 1, + sym_comment, + [130874] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5241), 1, + ACTIONS(1622), 1, sym__entry_separator, - STATE(4520), 1, + ACTIONS(8310), 1, + anon_sym_RBRACE, + STATE(1473), 1, + aux_sym__types_body_repeat2, + STATE(4687), 1, sym_comment, - ACTIONS(5243), 2, - anon_sym_RBRACK, + [130890] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(8312), 1, anon_sym_GT2, - [125527] = 3, + STATE(4688), 1, + sym_comment, + STATE(5351), 1, + sym_param_completer, + [130906] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4521), 1, + STATE(4689), 1, sym_comment, - ACTIONS(7741), 3, + ACTIONS(7927), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125539] = 4, + [130918] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3082), 1, - anon_sym_RPAREN, - STATE(4522), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(8314), 1, + anon_sym_GT2, + STATE(4690), 1, sym_comment, - ACTIONS(2932), 2, - sym__newline, - anon_sym_SEMI, - [125553] = 3, + STATE(5089), 1, + sym_param_completer, + [130934] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4523), 1, + STATE(4691), 1, sym_comment, - ACTIONS(7741), 3, + ACTIONS(7929), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125565] = 5, + [130946] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(6100), 1, sym__entry_separator, - ACTIONS(8102), 1, - anon_sym_RBRACK, - STATE(1968), 1, - aux_sym__types_body_repeat2, - STATE(4524), 1, + STATE(4692), 1, sym_comment, - [125581] = 3, + ACTIONS(6098), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [130960] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4525), 1, + ACTIONS(6479), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6670), 1, + anon_sym_LPAREN2, + STATE(4693), 1, sym_comment, - ACTIONS(7751), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125593] = 5, + STATE(4803), 1, + sym__expr_parenthesized_immediate, + [130976] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1621), 1, - anon_sym_RBRACE, - ACTIONS(1627), 1, + ACTIONS(4328), 1, sym__entry_separator, - STATE(1475), 1, + ACTIONS(8316), 1, + anon_sym_RBRACK, + STATE(4231), 1, aux_sym__types_body_repeat2, - STATE(4526), 1, + STATE(4694), 1, + sym_comment, + [130992] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(8318), 1, + anon_sym_RBRACE, + STATE(1485), 1, + aux_sym__types_body_repeat2, + STATE(4695), 1, sym_comment, - [125609] = 3, + [131008] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4527), 1, + STATE(4696), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7888), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125621] = 3, + [131020] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4528), 1, + ACTIONS(8320), 1, + anon_sym_RBRACK, + ACTIONS(8322), 1, + anon_sym_DOT_DOT, + STATE(4697), 1, sym_comment, - ACTIONS(7804), 3, + STATE(5110), 1, + sym__match_pattern_rest, + [131036] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4698), 1, + sym_comment, + ACTIONS(7888), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125633] = 3, + [131048] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4529), 1, + STATE(4699), 1, sym_comment, - ACTIONS(7970), 3, + ACTIONS(7941), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125645] = 4, - ACTIONS(103), 1, + [131060] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8104), 1, - anon_sym_LPAREN, - STATE(4530), 1, + STATE(4700), 1, sym_comment, - ACTIONS(8106), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125659] = 5, + ACTIONS(7890), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [131072] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(8108), 1, - anon_sym_RBRACK, - STATE(1935), 1, + ACTIONS(7955), 1, + anon_sym_RBRACE, + STATE(1487), 1, aux_sym__types_body_repeat2, - STATE(4531), 1, + STATE(4701), 1, sym_comment, - [125675] = 3, - ACTIONS(3), 1, + [131088] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4532), 1, + ACTIONS(1878), 1, + sym__entry_separator, + STATE(4702), 1, sym_comment, - ACTIONS(3082), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [125687] = 3, + ACTIONS(1880), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131102] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4533), 1, + STATE(4703), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(8090), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125699] = 3, + [131114] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4534), 1, + STATE(4704), 1, sym_comment, - ACTIONS(7804), 3, + ACTIONS(7985), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125711] = 3, + [131126] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4535), 1, + STATE(4705), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(7985), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125723] = 4, + [131138] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(4328), 1, sym__entry_separator, - STATE(4536), 1, - sym_comment, - ACTIONS(1619), 2, + ACTIONS(8324), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [125737] = 3, + STATE(4361), 1, + aux_sym__types_body_repeat2, + STATE(4706), 1, + sym_comment, + [131154] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4537), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(5772), 1, + anon_sym_EQ, + STATE(3107), 1, + sym_param_completer, + STATE(4707), 1, sym_comment, - ACTIONS(8110), 3, - sym__newline, - anon_sym_LBRACK, + [131170] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8326), 1, anon_sym_RBRACK, - [125749] = 3, + STATE(4708), 1, + sym_comment, + STATE(4766), 1, + aux_sym_val_binary_repeat1, + [131186] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4538), 1, + STATE(4709), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(7941), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125761] = 5, + [131198] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(8112), 1, - anon_sym_GT2, - STATE(2373), 1, - aux_sym__types_body_repeat2, - STATE(4539), 1, - sym_comment, - [125777] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_POUND_BANG, - ACTIONS(8114), 1, - sym__newline, - STATE(4540), 2, - aux_sym__repeat_newline, - sym_comment, - [125791] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8117), 1, - anon_sym_GT2, - STATE(4541), 1, - sym_comment, - STATE(4953), 1, - sym_param_completer, - [125807] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8119), 1, + ACTIONS(7961), 1, anon_sym_RBRACE, - STATE(1466), 1, + STATE(1476), 1, aux_sym__types_body_repeat2, - STATE(4542), 1, + STATE(4710), 1, sym_comment, - [125823] = 5, - ACTIONS(103), 1, + [131214] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8122), 1, - anon_sym_GT2, - STATE(1921), 1, - aux_sym__types_body_repeat2, - STATE(4543), 1, + STATE(4711), 1, sym_comment, - [125839] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8124), 1, + ACTIONS(4718), 3, + anon_sym_LBRACK, anon_sym_LPAREN, - STATE(4544), 1, - sym_comment, - ACTIONS(8126), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125853] = 3, + anon_sym_DASH_DASH, + [131226] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4545), 1, + STATE(4712), 1, sym_comment, - ACTIONS(7970), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125865] = 3, + ACTIONS(4722), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [131238] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4546), 1, + STATE(4713), 1, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7890), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125877] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4547), 1, - sym_comment, - ACTIONS(4569), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [125889] = 3, + [131250] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4548), 1, + STATE(4714), 1, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7951), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125901] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4716), 1, - anon_sym_RBRACE, - STATE(2225), 1, - aux_sym__types_body_repeat2, - STATE(4549), 1, - sym_comment, - [125917] = 3, + [131262] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4550), 1, + STATE(4715), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(7892), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125929] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8128), 1, - anon_sym_RBRACE, - STATE(1478), 1, - aux_sym__types_body_repeat2, - STATE(4551), 1, - sym_comment, - [125945] = 5, + [131274] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5944), 1, - anon_sym_EQ, - STATE(3284), 1, - sym_param_completer, - STATE(4552), 1, + STATE(4716), 1, sym_comment, - [125961] = 3, + ACTIONS(4732), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [131286] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4553), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8328), 1, + anon_sym_RBRACK, + STATE(4717), 1, sym_comment, - ACTIONS(7827), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125973] = 4, + STATE(4722), 1, + aux_sym_val_binary_repeat1, + [131302] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5961), 1, + ACTIONS(7874), 1, sym__entry_separator, - STATE(4554), 1, + STATE(4718), 1, sym_comment, - ACTIONS(5959), 2, + ACTIONS(8330), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [125987] = 3, + anon_sym_DOT_DOT, + [131316] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4555), 1, + STATE(4719), 1, sym_comment, - ACTIONS(8130), 3, + ACTIONS(7892), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [125999] = 4, + anon_sym_SEMI, + [131328] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2615), 1, + ACTIONS(7874), 1, sym__entry_separator, - STATE(4556), 1, + STATE(4720), 1, sym_comment, - ACTIONS(2617), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [126013] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8132), 1, + ACTIONS(8330), 2, anon_sym_RBRACK, - STATE(1922), 1, - aux_sym__types_body_repeat2, - STATE(4557), 1, - sym_comment, - [126029] = 5, + anon_sym_DOT_DOT, + [131342] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(7894), 1, sym__entry_separator, - ACTIONS(8134), 1, - anon_sym_RBRACE, - STATE(1474), 1, - aux_sym__types_body_repeat2, - STATE(4558), 1, + STATE(4721), 1, sym_comment, - [126045] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8136), 1, + ACTIONS(8332), 2, anon_sym_RBRACK, - STATE(1923), 1, - aux_sym__types_body_repeat2, - STATE(4559), 1, - sym_comment, - [126061] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4560), 1, - sym_comment, - ACTIONS(7847), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126073] = 3, + anon_sym_DOT_DOT, + [131356] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4561), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8334), 1, + anon_sym_RBRACK, + STATE(4722), 1, sym_comment, - ACTIONS(7847), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126085] = 3, - ACTIONS(3), 1, + STATE(4766), 1, + aux_sym_val_binary_repeat1, + [131372] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4562), 1, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4597), 1, + sym_block, + STATE(4723), 1, sym_comment, - ACTIONS(7741), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126097] = 3, + [131388] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4563), 1, + STATE(4724), 1, sym_comment, - ACTIONS(7741), 3, - ts_builtin_sym_end, + ACTIONS(7969), 3, sym__newline, - anon_sym_SEMI, - [126109] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131400] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4564), 1, + STATE(4725), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7951), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126121] = 3, + [131412] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4565), 1, + STATE(4726), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7973), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126133] = 5, + [131424] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7723), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(8138), 1, - anon_sym_AT2, - STATE(4566), 1, + ACTIONS(8336), 1, + anon_sym_RBRACK, + STATE(4473), 1, + aux_sym__types_body_repeat2, + STATE(4727), 1, sym_comment, - STATE(4652), 1, - sym_param_completer, - [126149] = 3, + [131440] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4567), 1, + STATE(4728), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(8092), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126161] = 5, + [131452] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(4778), 1, + anon_sym_RBRACE, + ACTIONS(4780), 1, sym__entry_separator, - ACTIONS(8140), 1, - anon_sym_RBRACK, - STATE(1990), 1, + STATE(2256), 1, aux_sym__types_body_repeat2, - STATE(4568), 1, + STATE(4729), 1, sym_comment, - [126177] = 5, + [131468] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8142), 1, - anon_sym_RBRACK, - STATE(4236), 1, - aux_sym__types_body_repeat2, - STATE(4569), 1, + ACTIONS(3470), 1, + sym__newline, + ACTIONS(3472), 1, + sym__space, + STATE(1406), 1, + aux_sym_pipe_element_parenthesized_repeat1, + STATE(4730), 1, sym_comment, - [126193] = 5, + [131484] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(2282), 1, sym__entry_separator, - ACTIONS(8144), 1, - anon_sym_RBRACK, - STATE(4359), 1, - aux_sym__types_body_repeat2, - STATE(4570), 1, + STATE(4731), 1, sym_comment, - [126209] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8146), 1, + ACTIONS(2284), 2, anon_sym_RBRACK, - STATE(4196), 1, - aux_sym__types_body_repeat2, - STATE(4571), 1, + anon_sym_RBRACE, + [131498] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4732), 1, sym_comment, - [126225] = 4, - ACTIONS(103), 1, + ACTIONS(8338), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [131510] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5221), 1, - sym__entry_separator, - STATE(4572), 1, + STATE(4733), 1, sym_comment, - ACTIONS(5223), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [126239] = 5, + ACTIONS(8340), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [131522] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7745), 1, - aux_sym__immediate_decimal_token5, - STATE(4573), 1, + ACTIONS(8342), 1, + anon_sym_export, + ACTIONS(8344), 1, + anon_sym_def, + ACTIONS(8346), 1, + anon_sym_extern, + STATE(4734), 1, sym_comment, - [126255] = 4, + [131538] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(2286), 1, sym__entry_separator, - STATE(4574), 1, + STATE(4735), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(2288), 2, anon_sym_RBRACK, - anon_sym_GT2, - [126269] = 5, + anon_sym_RBRACE, + [131552] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7272), 1, - anon_sym_DOT_DOT, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, + ACTIONS(7363), 1, sym__entry_separator, - STATE(4575), 1, + STATE(4736), 1, sym_comment, - [126285] = 5, + ACTIONS(7544), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131566] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7278), 1, - anon_sym_DOT_DOT, - ACTIONS(7442), 1, - anon_sym_RBRACK, - ACTIONS(7445), 1, + ACTIONS(8116), 1, sym__entry_separator, - STATE(4576), 1, - sym_comment, - [126301] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - STATE(4577), 1, + STATE(4737), 1, sym_comment, - STATE(4580), 1, - sym_val_list, - STATE(4591), 1, - aux_sym__table_body_repeat1, - [126317] = 5, + ACTIONS(8348), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131580] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(7843), 1, - anon_sym_RBRACE, - STATE(1469), 1, - aux_sym__types_body_repeat2, - STATE(4578), 1, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4577), 1, + sym_block, + STATE(4738), 1, sym_comment, - [126333] = 5, + [131596] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - STATE(4570), 1, - sym_val_list, - STATE(4579), 1, - sym_comment, - STATE(4591), 1, - aux_sym__table_body_repeat1, - [126349] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8148), 1, - anon_sym_RBRACK, - STATE(4238), 1, - aux_sym__types_body_repeat2, - STATE(4580), 1, + STATE(4739), 1, sym_comment, - [126365] = 5, + ACTIONS(7973), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [131608] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - STATE(1491), 1, + ACTIONS(8350), 1, + anon_sym_RBRACE, + STATE(1492), 1, aux_sym__types_body_repeat2, - STATE(4581), 1, + STATE(4740), 1, sym_comment, - [126381] = 3, - ACTIONS(3), 1, + [131624] = 3, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4582), 1, + STATE(4741), 1, sym_comment, - ACTIONS(7831), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126393] = 5, + ACTIONS(2622), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [131636] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(7268), 1, sym__entry_separator, - ACTIONS(8150), 1, - anon_sym_RBRACK, - STATE(2104), 1, - aux_sym__types_body_repeat2, - STATE(4583), 1, + STATE(4742), 1, sym_comment, - [126409] = 5, + ACTIONS(7555), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131650] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACK, - ACTIONS(968), 1, + ACTIONS(1892), 1, sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - STATE(4584), 1, + STATE(4743), 1, sym_comment, - [126425] = 3, + ACTIONS(1894), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131664] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4585), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(1820), 1, + sym__unquoted_pattern, + STATE(4744), 1, + sym_comment, + STATE(4881), 1, + sym__expr_parenthesized_immediate, + [131680] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4745), 1, sym_comment, - ACTIONS(7816), 3, + ACTIONS(7977), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126437] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(7916), 1, - anon_sym_RBRACE, - STATE(1480), 1, - aux_sym__types_body_repeat2, - STATE(4586), 1, - sym_comment, - [126453] = 3, + [131692] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4587), 1, + STATE(4746), 1, sym_comment, - ACTIONS(8152), 3, + ACTIONS(7977), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126465] = 5, - ACTIONS(103), 1, + anon_sym_SEMI, + [131704] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(7918), 1, - anon_sym_RBRACE, - STATE(1485), 1, - aux_sym__types_body_repeat2, - STATE(4588), 1, + STATE(4747), 1, sym_comment, - [126481] = 3, + ACTIONS(2142), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [131716] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4589), 1, + STATE(4748), 1, sym_comment, - ACTIONS(8154), 3, + ACTIONS(8353), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [126493] = 5, + [131728] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(8156), 1, - anon_sym_RBRACK, - STATE(2105), 1, - aux_sym__types_body_repeat2, - STATE(4590), 1, - sym_comment, - [126509] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8158), 1, + ACTIONS(7870), 1, anon_sym_LBRACK, + STATE(1881), 1, + aux_sym__types_body_repeat2, STATE(4749), 1, - sym_val_list, - STATE(4591), 2, sym_comment, - aux_sym__table_body_repeat1, - [126523] = 3, + [131744] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4592), 1, + STATE(4750), 1, sym_comment, - ACTIONS(8161), 3, + ACTIONS(8355), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [126535] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7287), 1, - anon_sym_if, - ACTIONS(8163), 1, - anon_sym_EQ_GT, - STATE(4593), 1, - sym_comment, - STATE(4917), 1, - sym_match_guard, - [126551] = 5, + [131756] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8165), 1, - anon_sym_DOT, - ACTIONS(8167), 1, - aux_sym__immediate_decimal_token5, - STATE(4594), 1, + STATE(4751), 1, sym_comment, - [126567] = 5, + ACTIONS(8357), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [131768] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(5036), 1, sym__entry_separator, - ACTIONS(8169), 1, - anon_sym_RBRACK, - STATE(1995), 1, + ACTIONS(8359), 1, + anon_sym_GT2, + STATE(2418), 1, aux_sym__types_body_repeat2, - STATE(4595), 1, + STATE(4752), 1, sym_comment, - [126583] = 4, + [131784] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1874), 1, + ACTIONS(2664), 1, sym__entry_separator, - STATE(4596), 1, + STATE(4753), 1, sym_comment, - ACTIONS(1876), 2, + ACTIONS(2666), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126597] = 3, + anon_sym_RBRACE, + [131798] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4597), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8361), 1, + anon_sym_RBRACK, + STATE(4754), 1, sym_comment, - ACTIONS(8171), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126609] = 5, + STATE(4762), 1, + aux_sym_val_binary_repeat1, + [131814] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - STATE(4598), 1, + ACTIONS(8274), 1, + anon_sym_BANG, + STATE(4755), 1, sym_comment, - [126625] = 3, - ACTIONS(3), 1, + ACTIONS(1450), 2, + sym__table_head_separator, + anon_sym_DOT2, + [131828] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4599), 1, + ACTIONS(5036), 1, + sym__entry_separator, + ACTIONS(8363), 1, + anon_sym_GT2, + STATE(2400), 1, + aux_sym__types_body_repeat2, + STATE(4756), 1, sym_comment, - ACTIONS(4651), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [126637] = 5, + [131844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8177), 1, - anon_sym_RBRACK, - STATE(4600), 1, + ACTIONS(3148), 1, + anon_sym_RPAREN, + STATE(4757), 1, sym_comment, - STATE(4609), 1, - aux_sym_val_binary_repeat1, - [126653] = 5, + ACTIONS(2952), 2, + sym__newline, + anon_sym_SEMI, + [131858] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2573), 1, + sym__entry_separator, + STATE(4758), 1, + sym_comment, + ACTIONS(2575), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [131872] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5116), 1, + ACTIONS(1746), 1, sym__unquoted_pattern_in_record, - STATE(4601), 1, + ACTIONS(8365), 1, + anon_sym_DOT, + ACTIONS(8367), 1, + aux_sym__immediate_decimal_token5, + STATE(4759), 1, sym_comment, - STATE(4649), 1, - sym__expr_parenthesized_immediate, - [126669] = 3, + [131888] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(866), 1, + anon_sym_RBRACK, + ACTIONS(886), 1, + sym__entry_separator, + ACTIONS(6479), 1, + sym__unquoted_pattern_in_list, + STATE(4760), 1, + sym_comment, + [131904] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4602), 1, + STATE(4761), 1, sym_comment, - ACTIONS(7968), 3, + ACTIONS(7941), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126681] = 5, + anon_sym_SEMI, + [131916] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(6009), 1, - anon_sym_EQ, - STATE(3300), 1, - sym_param_completer, - STATE(4603), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8369), 1, + anon_sym_RBRACK, + STATE(4762), 1, sym_comment, - [126697] = 3, + STATE(4766), 1, + aux_sym_val_binary_repeat1, + [131932] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4604), 1, + STATE(4763), 1, sym_comment, - ACTIONS(7837), 3, + ACTIONS(8094), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126709] = 5, + [131944] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8179), 1, - anon_sym_export, - ACTIONS(8181), 1, - anon_sym_def, - ACTIONS(8183), 1, - anon_sym_extern, - STATE(4605), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(8371), 1, + anon_sym_COLON, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(4764), 1, sym_comment, - [126725] = 4, + [131960] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1886), 1, + ACTIONS(2608), 1, sym__entry_separator, - STATE(4606), 1, + STATE(4765), 1, sym_comment, - ACTIONS(1888), 2, + ACTIONS(2610), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126739] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(8185), 1, - anon_sym_RBRACE, - STATE(2227), 1, - aux_sym__types_body_repeat2, - STATE(4607), 1, - sym_comment, - [126755] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4711), 1, anon_sym_RBRACE, - STATE(2223), 1, - aux_sym__types_body_repeat2, - STATE(4608), 1, - sym_comment, - [126771] = 5, + [131974] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8187), 1, + ACTIONS(8373), 1, anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - STATE(4609), 1, + ACTIONS(8375), 1, + sym_hex_digit, + STATE(4766), 2, sym_comment, - [126787] = 5, - ACTIONS(3), 1, + aux_sym_val_binary_repeat1, + [131988] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(4610), 1, + ACTIONS(8001), 1, + anon_sym_LPAREN, + STATE(4767), 1, sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - [126803] = 3, + ACTIONS(8003), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [132002] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4611), 1, + STATE(4768), 1, sym_comment, - ACTIONS(7694), 3, + ACTIONS(8096), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126815] = 3, - ACTIONS(103), 1, + [132014] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4612), 1, + ACTIONS(3946), 1, + anon_sym_LBRACK, + STATE(4661), 1, + aux_sym__table_body_repeat1, + STATE(4727), 1, + sym_val_list, + STATE(4769), 1, sym_comment, - ACTIONS(858), 3, - sym__newline, - sym__space, - anon_sym_COLON2, - [126827] = 5, + [132030] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3100), 1, - sym_block, - STATE(4613), 1, + ACTIONS(5416), 1, + sym__entry_separator, + STATE(4770), 1, sym_comment, - [126843] = 5, + ACTIONS(5414), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132044] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8189), 1, - anon_sym_POUND_BANG, - ACTIONS(8191), 1, - sym__newline, - STATE(4540), 1, - aux_sym__repeat_newline, - STATE(4614), 1, + ACTIONS(8378), 1, + sym__table_head_separator, + STATE(4771), 1, sym_comment, - [126859] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(8193), 1, + ACTIONS(1614), 2, anon_sym_RBRACK, - STATE(2108), 1, - aux_sym__types_body_repeat2, - STATE(4615), 1, - sym_comment, - [126875] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4616), 1, - sym_comment, - ACTIONS(8195), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126887] = 3, + sym__entry_separator, + [132058] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4617), 1, + STATE(4772), 1, sym_comment, - ACTIONS(8197), 3, + ACTIONS(7921), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126899] = 5, + [132070] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7855), 1, + ACTIONS(7911), 1, sym__entry_separator, - ACTIONS(8199), 1, + ACTIONS(8380), 1, anon_sym_COLON, - STATE(4618), 1, + STATE(4773), 1, sym_comment, - STATE(4709), 1, + STATE(4922), 1, sym__collection_annotation, - [126915] = 3, + [132086] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4619), 1, + STATE(4774), 1, sym_comment, - ACTIONS(8201), 3, + ACTIONS(7937), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126927] = 4, + [132098] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5257), 1, + ACTIONS(6181), 1, sym__entry_separator, - STATE(4620), 1, + STATE(4775), 1, sym_comment, - ACTIONS(5259), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [126941] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8203), 1, + ACTIONS(6179), 2, anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - STATE(4621), 1, - sym_comment, - [126957] = 4, + anon_sym_RBRACE, + [132112] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4237), 1, - sym_block, - STATE(4622), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(8382), 1, + anon_sym_COLON, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(4776), 1, sym_comment, - [126970] = 3, + [132128] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8205), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 2, + ACTIONS(4456), 1, + sym__entry_separator, + ACTIONS(8384), 1, + anon_sym_RBRACK, + STATE(2017), 1, + aux_sym__types_body_repeat2, + STATE(4777), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [126981] = 3, + [132144] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4624), 1, + STATE(4778), 1, sym_comment, - ACTIONS(8208), 2, + ACTIONS(7983), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126992] = 4, - ACTIONS(103), 1, + [132156] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8210), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4625), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(2597), 1, + anon_sym_LBRACE, + STATE(4779), 1, sym_comment, - STATE(4627), 1, - aux_sym__unquoted_with_expr_repeat1, - [127005] = 4, + [132169] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8212), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4626), 1, + ACTIONS(8386), 1, + anon_sym_RBRACE, + ACTIONS(8388), 1, + sym__entry_separator, + STATE(4780), 1, sym_comment, - STATE(4628), 1, - aux_sym__unquoted_with_expr_repeat1, - [127018] = 4, + [132182] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8214), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4627), 1, + ACTIONS(8390), 1, + anon_sym_LPAREN2, + ACTIONS(8392), 1, + aux_sym__record_key_token1, + STATE(4781), 1, sym_comment, - [127031] = 4, + [132195] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8216), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4628), 1, - sym_comment, - [127044] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4432), 1, - sym_block, - STATE(4629), 1, + ACTIONS(7714), 1, + anon_sym_RBRACE, + ACTIONS(7716), 1, + sym__entry_separator, + STATE(4782), 1, sym_comment, - [127057] = 4, + [132208] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8218), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4630), 1, + ACTIONS(8394), 1, + anon_sym_RBRACE, + ACTIONS(8396), 1, + sym__entry_separator, + STATE(4783), 1, sym_comment, - STATE(4789), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127070] = 4, + [132221] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8220), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4631), 1, + ACTIONS(7720), 1, + anon_sym_RBRACE, + ACTIONS(7722), 1, + sym__entry_separator, + STATE(4784), 1, sym_comment, - STATE(4714), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127083] = 4, + [132234] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8222), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4632), 1, + ACTIONS(8398), 1, + anon_sym_RBRACE, + ACTIONS(8400), 1, + sym__entry_separator, + STATE(4785), 1, sym_comment, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127096] = 4, + [132247] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8224), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4633), 1, - sym_comment, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127109] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4083), 1, - sym_block, - STATE(4634), 1, + ACTIONS(3516), 1, + sym__space, + STATE(1417), 1, + aux_sym_pipe_element_repeat1, + STATE(4786), 1, sym_comment, - [127122] = 4, - ACTIONS(3), 1, + [132260] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4085), 1, - sym_block, - STATE(4635), 1, + ACTIONS(8402), 1, + sym__newline, + ACTIONS(8404), 1, + sym__space, + STATE(4787), 1, sym_comment, - [127135] = 4, + [132273] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7572), 1, + ACTIONS(7808), 1, anon_sym_RBRACE, - ACTIONS(7574), 1, + ACTIONS(7810), 1, sym__entry_separator, - STATE(4636), 1, + STATE(4788), 1, sym_comment, - [127148] = 4, - ACTIONS(3), 1, + [132286] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4094), 1, - sym_block, - STATE(4637), 1, + ACTIONS(4780), 1, + sym__entry_separator, + STATE(2264), 1, + aux_sym__types_body_repeat2, + STATE(4789), 1, sym_comment, - [127161] = 4, + [132299] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(2589), 1, anon_sym_LBRACE, - STATE(4433), 1, - sym_block, - STATE(4638), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(4790), 1, sym_comment, - [127174] = 4, + [132312] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4098), 1, - sym_block, - STATE(4639), 1, - sym_comment, - [127187] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4640), 1, + ACTIONS(6670), 1, + anon_sym_LPAREN2, + STATE(4791), 1, sym_comment, - ACTIONS(2096), 2, - anon_sym_POUND_BANG, - sym__newline, - [127198] = 3, + STATE(5208), 1, + sym__expr_parenthesized_immediate, + [132325] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4641), 1, + ACTIONS(8406), 1, + anon_sym_DASH2, + STATE(4792), 1, sym_comment, - ACTIONS(1464), 2, - sym__table_head_separator, - anon_sym_DOT2, - [127209] = 4, - ACTIONS(3), 1, + STATE(5142), 1, + sym_param_short_flag, + [132338] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - STATE(4642), 1, + ACTIONS(4806), 1, + sym__entry_separator, + STATE(2283), 1, + aux_sym__types_body_repeat2, + STATE(4793), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [127222] = 4, + [132351] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(1870), 1, anon_sym_LBRACE, - STATE(4519), 1, - sym_block, - STATE(4643), 1, + ACTIONS(1872), 1, + sym__unquoted_pattern, + STATE(4794), 1, sym_comment, - [127235] = 4, + [132364] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4241), 1, + STATE(4365), 1, sym_block, - STATE(4644), 1, + STATE(4795), 1, sym_comment, - [127248] = 4, + [132377] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4243), 1, + STATE(4367), 1, sym_block, - STATE(4645), 1, + STATE(4796), 1, sym_comment, - [127261] = 4, - ACTIONS(103), 1, + [132390] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8226), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4646), 1, + STATE(4797), 1, sym_comment, - STATE(4665), 1, - aux_sym__unquoted_with_expr_repeat1, - [127274] = 4, + ACTIONS(8408), 2, + anon_sym_RBRACK, + sym_hex_digit, + [132401] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4442), 1, + STATE(4369), 1, sym_block, - STATE(4647), 1, + STATE(4798), 1, sym_comment, - [127287] = 4, + [132414] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4507), 1, + STATE(4371), 1, sym_block, - STATE(4648), 1, + STATE(4799), 1, sym_comment, - [127300] = 4, + [132427] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8228), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4632), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4649), 1, + ACTIONS(2589), 1, + sym__entry_separator, + ACTIONS(2591), 1, + anon_sym_RBRACE, + STATE(4800), 1, sym_comment, - [127313] = 3, + [132440] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8230), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 2, - sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127324] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4508), 1, - sym_block, - STATE(4651), 1, + ACTIONS(8410), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4801), 1, sym_comment, - [127337] = 4, + STATE(4838), 1, + aux_sym__unquoted_with_expr_repeat1, + [132453] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8233), 1, - anon_sym_GT2, - ACTIONS(8235), 1, - sym__entry_separator, - STATE(4652), 1, - sym_comment, - [127350] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2635), 1, - anon_sym_LBRACE, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(4653), 1, + ACTIONS(8412), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4802), 1, sym_comment, - [127363] = 4, + STATE(4839), 1, + aux_sym__unquoted_with_expr_repeat1, + [132466] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8237), 1, - anon_sym_RBRACE, - ACTIONS(8239), 1, - sym__entry_separator, - STATE(4654), 1, + ACTIONS(8414), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4803), 1, sym_comment, - [127376] = 4, + STATE(4935), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [132479] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8241), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4633), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4655), 1, + ACTIONS(5784), 1, + sym__entry_separator, + ACTIONS(6527), 1, + anon_sym_GT2, + STATE(4804), 1, sym_comment, - [127389] = 4, + [132492] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7589), 1, - anon_sym_RBRACE, - ACTIONS(7591), 1, + ACTIONS(5796), 1, sym__entry_separator, - STATE(4656), 1, + ACTIONS(6383), 1, + anon_sym_GT2, + STATE(4805), 1, sym_comment, - [127402] = 4, + [132505] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8243), 1, + ACTIONS(8416), 1, aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4657), 1, + STATE(4806), 1, sym_comment, - [127415] = 4, + STATE(4808), 1, + aux_sym__unquoted_with_expr_repeat1, + [132518] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8245), 1, + ACTIONS(8418), 1, aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4658), 1, - sym_comment, - [127428] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4443), 1, - sym_block, - STATE(4659), 1, + STATE(4807), 1, sym_comment, - [127441] = 4, - ACTIONS(3), 1, + STATE(4811), 1, + aux_sym__unquoted_with_expr_repeat1, + [132531] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - anon_sym_LBRACE, - STATE(4660), 1, + ACTIONS(8420), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4808), 1, sym_comment, - [127454] = 4, - ACTIONS(3), 1, + STATE(4893), 1, + aux_sym__unquoted_with_expr_repeat1, + [132544] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_LBRACE, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(4661), 1, + ACTIONS(7502), 1, + anon_sym_RBRACE, + ACTIONS(7504), 1, + sym__entry_separator, + STATE(4809), 1, sym_comment, - [127467] = 4, - ACTIONS(3), 1, + [132557] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4348), 1, - sym_block, - STATE(4662), 1, + ACTIONS(3771), 1, + sym__entry_separator, + ACTIONS(8422), 1, + anon_sym_RBRACE, + STATE(4810), 1, sym_comment, - [127480] = 4, + [132570] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8247), 1, + ACTIONS(8425), 1, aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4663), 1, + STATE(4811), 1, sym_comment, - [127493] = 4, + STATE(4893), 1, + aux_sym__unquoted_with_expr_repeat1, + [132583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4101), 1, - sym_block, - STATE(4664), 1, - sym_comment, - [127506] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8249), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4665), 1, + STATE(4812), 1, sym_comment, - [127519] = 4, + ACTIONS(1549), 2, + sym__table_head_separator, + anon_sym_DOT2, + [132594] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4110), 1, + STATE(4374), 1, sym_block, - STATE(4666), 1, + STATE(4813), 1, sym_comment, - [127532] = 4, + [132607] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4129), 1, + STATE(4376), 1, sym_block, - STATE(4667), 1, + STATE(4814), 1, sym_comment, - [127545] = 4, + [132620] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4136), 1, - sym_block, - STATE(4668), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + STATE(4815), 1, sym_comment, - [127558] = 4, + STATE(5178), 1, + sym__expr_parenthesized_immediate, + [132633] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2585), 1, + ACTIONS(2614), 1, sym__unquoted_pattern, - STATE(4669), 1, + STATE(4816), 1, sym_comment, - [127571] = 4, + [132646] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4351), 1, + STATE(4699), 1, sym_block, - STATE(4670), 1, + STATE(4817), 1, sym_comment, - [127584] = 4, + [132659] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(4671), 1, + STATE(4390), 1, + sym_block, + STATE(4818), 1, sym_comment, - [127597] = 4, - ACTIONS(3), 1, + [132672] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4049), 1, - sym_block, - STATE(4672), 1, + ACTIONS(8427), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4819), 2, sym_comment, - [127610] = 4, + aux_sym__unquoted_in_record_with_expr_repeat1, + [132683] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(1770), 1, anon_sym_LBRACE, - ACTIONS(2585), 1, + ACTIONS(1772), 1, sym__unquoted_pattern, - STATE(4673), 1, - sym_comment, - [127623] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8251), 1, - anon_sym_DASH2, - STATE(4674), 1, + STATE(4820), 1, sym_comment, - STATE(4982), 1, - sym_param_short_flag, - [127636] = 4, + [132696] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4052), 1, + STATE(4704), 1, sym_block, - STATE(4675), 1, + STATE(4821), 1, sym_comment, - [127649] = 4, + [132709] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2523), 1, + ACTIONS(5418), 1, + anon_sym_RBRACK, + ACTIONS(5420), 1, sym__entry_separator, - ACTIONS(2525), 1, - anon_sym_RBRACE, - STATE(4676), 1, + STATE(4822), 1, sym_comment, - [127662] = 4, - ACTIONS(3), 1, + [132722] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, - anon_sym_LBRACE, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(4677), 1, + ACTIONS(1020), 1, + anon_sym_RBRACE, + ACTIONS(1022), 1, + sym__entry_separator, + STATE(4823), 1, sym_comment, - [127675] = 4, + [132735] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_RBRACK, - ACTIONS(5247), 1, + ACTIONS(994), 1, + anon_sym_RBRACE, + ACTIONS(1030), 1, sym__entry_separator, - STATE(4678), 1, + STATE(4824), 1, sym_comment, - [127688] = 4, + [132748] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4149), 1, + STATE(4705), 1, sym_block, - STATE(4679), 1, + STATE(4825), 1, + sym_comment, + [132761] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8430), 1, + anon_sym_GT2, + ACTIONS(8432), 1, + sym__entry_separator, + STATE(4826), 1, sym_comment, - [127701] = 4, + [132774] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4151), 1, - sym_block, - STATE(4680), 1, + STATE(4827), 1, sym_comment, - [127714] = 4, + ACTIONS(1564), 2, + sym__table_head_separator, + anon_sym_DOT2, + [132785] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8253), 1, - anon_sym_RBRACE, - ACTIONS(8255), 1, + ACTIONS(8434), 1, + anon_sym_RBRACK, + ACTIONS(8436), 1, sym__entry_separator, - STATE(4681), 1, + STATE(4828), 1, + sym_comment, + [132798] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4829), 1, sym_comment, - [127727] = 4, + ACTIONS(1498), 2, + sym__table_head_separator, + anon_sym_DOT2, + [132809] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7390), 1, - anon_sym_RBRACE, - ACTIONS(7392), 1, + ACTIONS(4456), 1, sym__entry_separator, - STATE(4682), 1, + STATE(2147), 1, + aux_sym__types_body_repeat2, + STATE(4830), 1, sym_comment, - [127740] = 4, + [132822] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1724), 1, anon_sym_LPAREN2, - STATE(4683), 1, + STATE(4831), 1, sym_comment, - STATE(5024), 1, + STATE(5171), 1, sym__expr_parenthesized_immediate, - [127753] = 4, - ACTIONS(103), 1, + [132835] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8257), 1, - anon_sym_RBRACE, - ACTIONS(8259), 1, - sym__entry_separator, - STATE(4684), 1, + ACTIONS(2525), 1, + anon_sym_LBRACE, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(4832), 1, sym_comment, - [127766] = 4, + [132848] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7210), 1, - sym__entry_separator, - STATE(4685), 1, + ACTIONS(886), 1, + anon_sym_COLON2, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + STATE(4833), 1, sym_comment, - [127779] = 4, + [132861] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4521), 1, + STATE(4588), 1, sym_block, - STATE(4686), 1, + STATE(4834), 1, + sym_comment, + [132874] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7824), 1, + anon_sym_RBRACE, + ACTIONS(7826), 1, + sym__entry_separator, + STATE(4835), 1, sym_comment, - [127792] = 4, + [132887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4487), 1, + STATE(4696), 1, sym_block, - STATE(4687), 1, + STATE(4836), 1, sym_comment, - [127805] = 4, + [132900] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4488), 1, + STATE(4604), 1, sym_block, - STATE(4688), 1, + STATE(4837), 1, + sym_comment, + [132913] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8438), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4838), 1, + sym_comment, + STATE(4893), 1, + aux_sym__unquoted_with_expr_repeat1, + [132926] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8440), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4839), 1, sym_comment, - [127818] = 4, + STATE(4893), 1, + aux_sym__unquoted_with_expr_repeat1, + [132939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4418), 1, + STATE(4698), 1, sym_block, - STATE(4689), 1, + STATE(4840), 1, sym_comment, - [127831] = 4, + [132952] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4560), 1, + STATE(3308), 1, sym_block, - STATE(4690), 1, + STATE(4841), 1, sym_comment, - [127844] = 4, + [132965] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4334), 1, + STATE(4631), 1, sym_block, - STATE(4691), 1, + STATE(4842), 1, sym_comment, - [127857] = 4, + [132978] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4341), 1, + STATE(4645), 1, sym_block, - STATE(4692), 1, + STATE(4843), 1, sym_comment, - [127870] = 4, + [132991] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4489), 1, + STATE(4641), 1, sym_block, - STATE(4693), 1, + STATE(4844), 1, sym_comment, - [127883] = 4, + [133004] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4419), 1, + STATE(4664), 1, sym_block, - STATE(4694), 1, + STATE(4845), 1, sym_comment, - [127896] = 4, - ACTIONS(3), 1, + [133017] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, - anon_sym_LBRACE, - STATE(4695), 1, + ACTIONS(4328), 1, + sym__entry_separator, + STATE(2015), 1, + aux_sym__types_body_repeat2, + STATE(4846), 1, sym_comment, - [127909] = 4, + [133030] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4420), 1, + STATE(4745), 1, sym_block, - STATE(4696), 1, + STATE(4847), 1, sym_comment, - [127922] = 4, + [133043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1870), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(4697), 1, + STATE(4672), 1, + sym_block, + STATE(4848), 1, sym_comment, - [127935] = 4, + [133056] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2501), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(4698), 1, + STATE(4761), 1, + sym_block, + STATE(4849), 1, sym_comment, - [127948] = 4, + [133069] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4561), 1, + STATE(4746), 1, sym_block, - STATE(4699), 1, + STATE(4850), 1, sym_comment, - [127961] = 4, + [133082] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_COLON2, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - STATE(4700), 1, + ACTIONS(7073), 1, + sym__entry_separator, + ACTIONS(8442), 1, + anon_sym_RBRACK, + STATE(4851), 1, sym_comment, - [127974] = 4, + [133095] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(7085), 1, sym__entry_separator, - STATE(1975), 1, - aux_sym__types_body_repeat2, - STATE(4701), 1, + ACTIONS(8444), 1, + anon_sym_RBRACK, + STATE(4852), 1, sym_comment, - [127987] = 4, - ACTIONS(3), 1, + [133108] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4422), 1, - sym_block, - STATE(4702), 1, + ACTIONS(1622), 1, + sym__entry_separator, + STATE(1508), 1, + aux_sym__types_body_repeat2, + STATE(4853), 1, sym_comment, - [128000] = 4, - ACTIONS(3), 1, + [133121] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4492), 1, - sym_block, - STATE(4703), 1, + ACTIONS(8446), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4854), 1, sym_comment, - [128013] = 4, - ACTIONS(3), 1, + STATE(4925), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [133134] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4081), 1, - sym_block, - STATE(4704), 1, + ACTIONS(8448), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4855), 1, sym_comment, - [128026] = 4, - ACTIONS(3), 1, + STATE(4926), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [133147] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4082), 1, - sym_block, - STATE(4705), 1, + ACTIONS(8450), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4856), 1, sym_comment, - [128039] = 4, - ACTIONS(3), 1, + STATE(4893), 1, + aux_sym__unquoted_with_expr_repeat1, + [133160] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(8261), 1, - anon_sym_RBRACK, - STATE(4706), 1, + ACTIONS(8452), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4857), 1, sym_comment, - [128052] = 4, + STATE(4893), 1, + aux_sym__unquoted_with_expr_repeat1, + [133173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4269), 1, + STATE(4618), 1, sym_block, - STATE(4707), 1, - sym_comment, - [128065] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8263), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4708), 1, + STATE(4858), 1, sym_comment, - STATE(4735), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128078] = 4, + [133186] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8265), 1, - anon_sym_GT2, - ACTIONS(8267), 1, + ACTIONS(5036), 1, sym__entry_separator, - STATE(4709), 1, + STATE(2444), 1, + aux_sym__types_body_repeat2, + STATE(4859), 1, sym_comment, - [128091] = 4, - ACTIONS(103), 1, + [133199] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6894), 1, - sym__entry_separator, - ACTIONS(8269), 1, - anon_sym_RBRACK, - STATE(4710), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1956), 1, + anon_sym_LBRACE, + STATE(4860), 1, sym_comment, - [128104] = 4, + [133212] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6922), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(8271), 1, - anon_sym_RBRACK, - STATE(4711), 1, + STATE(1499), 1, + aux_sym__types_body_repeat2, + STATE(4861), 1, sym_comment, - [128117] = 3, + [133225] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4712), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4621), 1, + sym_block, + STATE(4862), 1, sym_comment, - ACTIONS(8049), 2, - anon_sym_GT2, - anon_sym_AT2, - [128128] = 4, + [133238] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(4713), 1, + STATE(4331), 1, + sym_block, + STATE(4863), 1, sym_comment, - [128141] = 4, - ACTIONS(103), 1, + [133251] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8273), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4714), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4332), 1, + sym_block, + STATE(4864), 1, sym_comment, - [128154] = 4, + [133264] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8275), 1, - anon_sym_def, - ACTIONS(8277), 1, - anon_sym_extern, - STATE(4715), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4333), 1, + sym_block, + STATE(4865), 1, sym_comment, - [128167] = 4, - ACTIONS(103), 1, + [133277] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3757), 1, - sym__entry_separator, - ACTIONS(8279), 1, - anon_sym_RBRACE, - STATE(4716), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4334), 1, + sym_block, + STATE(4866), 1, sym_comment, - [128180] = 4, + [133290] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7633), 1, - anon_sym_RBRACE, - ACTIONS(7635), 1, - sym__entry_separator, - STATE(4717), 1, + ACTIONS(8454), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4867), 1, sym_comment, - [128193] = 4, + STATE(4920), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [133303] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4384), 1, + STATE(4709), 1, sym_block, - STATE(4718), 1, + STATE(4868), 1, sym_comment, - [128206] = 4, + [133316] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4523), 1, - sym_block, - STATE(4719), 1, + STATE(4869), 1, sym_comment, - [128219] = 4, + ACTIONS(8300), 2, + anon_sym_GT2, + anon_sym_AT2, + [133327] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, + ACTIONS(2597), 1, sym__entry_separator, - ACTIONS(2637), 1, + ACTIONS(2599), 1, anon_sym_RBRACE, - STATE(4720), 1, + STATE(4870), 1, sym_comment, - [128232] = 4, + [133340] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8282), 1, - anon_sym_RBRACK, - ACTIONS(8284), 1, - sym__entry_separator, - STATE(4721), 1, + ACTIONS(8456), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4819), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4871), 1, sym_comment, - [128245] = 4, + [133353] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4562), 1, + STATE(4566), 1, sym_block, - STATE(4722), 1, + STATE(4872), 1, sym_comment, - [128258] = 4, + [133366] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4723), 1, + STATE(4350), 1, + sym_block, + STATE(4873), 1, sym_comment, - [128271] = 4, + [133379] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4338), 1, + STATE(4567), 1, sym_block, - STATE(4724), 1, + STATE(4874), 1, sym_comment, - [128284] = 4, - ACTIONS(103), 1, + [133392] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8286), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4663), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4725), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4351), 1, + sym_block, + STATE(4875), 1, + sym_comment, + [133405] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6477), 1, + anon_sym_DOLLAR2, + ACTIONS(8458), 1, + anon_sym_RBRACK, + STATE(4876), 1, sym_comment, - [128297] = 4, + [133418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(3076), 1, + STATE(4585), 1, sym_block, - STATE(4726), 1, + STATE(4877), 1, sym_comment, - [128310] = 4, + [133431] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1973), 1, sym__entry_separator, - STATE(1496), 1, - aux_sym__types_body_repeat2, - STATE(4727), 1, - sym_comment, - [128323] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8288), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4708), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(4728), 1, + ACTIONS(1975), 1, + anon_sym_RBRACE, + STATE(4878), 1, sym_comment, - [128336] = 4, + [133444] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(4328), 1, sym__entry_separator, - STATE(2402), 1, + STATE(2025), 1, aux_sym__types_body_repeat2, - STATE(4729), 1, + STATE(4879), 1, + sym_comment, + [133457] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2541), 1, + anon_sym_LBRACE, + STATE(4880), 1, sym_comment, - [128349] = 4, + [133470] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5963), 1, - anon_sym_RBRACK, - ACTIONS(5965), 1, - sym__entry_separator, - STATE(4730), 1, + ACTIONS(8460), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4856), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4881), 1, sym_comment, - [128362] = 4, + [133483] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6115), 1, + ACTIONS(5424), 1, sym__entry_separator, - ACTIONS(6117), 1, + ACTIONS(6319), 1, anon_sym_RBRACK, - STATE(4731), 1, + STATE(4882), 1, sym_comment, - [128375] = 4, + [133496] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(8462), 1, + anon_sym_RBRACE, + ACTIONS(8464), 1, sym__entry_separator, - STATE(2252), 1, - aux_sym__types_body_repeat2, - STATE(4732), 1, + STATE(4883), 1, sym_comment, - [128388] = 3, - ACTIONS(3), 1, + [133509] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4733), 1, + ACTIONS(8466), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4857), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4884), 1, sym_comment, - ACTIONS(1522), 2, - sym__table_head_separator, - anon_sym_DOT2, - [128399] = 4, + [133522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4563), 1, + STATE(4245), 1, sym_block, - STATE(4734), 1, - sym_comment, - [128412] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8290), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4735), 2, - sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128423] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1979), 1, - aux_sym__types_body_repeat2, - STATE(4736), 1, + STATE(4885), 1, sym_comment, - [128436] = 4, + [133535] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4486), 1, + STATE(4251), 1, sym_block, - STATE(4737), 1, + STATE(4886), 1, sym_comment, - [128449] = 4, + [133548] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4533), 1, + STATE(4638), 1, sym_block, - STATE(4738), 1, - sym_comment, - [128462] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8293), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4739), 1, + STATE(4887), 1, sym_comment, - STATE(4755), 1, - aux_sym__unquoted_with_expr_repeat1, - [128475] = 4, + [133561] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4535), 1, - sym_block, - STATE(4740), 1, + ACTIONS(1746), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8367), 1, + aux_sym__immediate_decimal_token5, + STATE(4888), 1, sym_comment, - [128488] = 4, + [133574] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - STATE(4741), 1, + ACTIONS(7753), 1, + anon_sym_RBRACE, + ACTIONS(7755), 1, + sym__entry_separator, + STATE(4889), 1, sym_comment, - [128501] = 4, + [133587] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8295), 1, - anon_sym_RBRACK, - ACTIONS(8297), 1, - sym__entry_separator, - STATE(4742), 1, + STATE(4890), 1, sym_comment, - [128514] = 3, + ACTIONS(2146), 2, + anon_sym_POUND_BANG, + sym__newline, + [133598] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4743), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8468), 1, + aux_sym__immediate_decimal_token5, + STATE(4891), 1, sym_comment, - ACTIONS(1537), 2, - sym__table_head_separator, - anon_sym_DOT2, - [128525] = 4, + [133611] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(8470), 1, + anon_sym_RBRACE, + ACTIONS(8472), 1, sym__entry_separator, - STATE(2120), 1, - aux_sym__types_body_repeat2, - STATE(4744), 1, - sym_comment, - [128538] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8299), 1, - sym__newline, - ACTIONS(8301), 1, - sym__space, - STATE(4745), 1, + STATE(4892), 1, sym_comment, - [128551] = 4, + [133624] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8303), 1, + ACTIONS(8474), 1, aux_sym__unquoted_with_expr_token1, - STATE(4746), 1, + STATE(4893), 2, sym_comment, - STATE(4757), 1, aux_sym__unquoted_with_expr_repeat1, - [128564] = 4, + [133635] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4500), 1, + STATE(4445), 1, sym_block, - STATE(4747), 1, + STATE(4894), 1, sym_comment, - [128577] = 4, - ACTIONS(103), 1, + [133648] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2575), 1, - sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACE, - STATE(4748), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4461), 1, + sym_block, + STATE(4895), 1, sym_comment, - [128590] = 4, - ACTIONS(103), 1, + [133661] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(4367), 1, - aux_sym__types_body_repeat2, - STATE(4749), 1, + ACTIONS(8477), 1, + anon_sym_def, + ACTIONS(8479), 1, + anon_sym_extern, + STATE(4896), 1, sym_comment, - [128603] = 4, + [133674] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1964), 1, + ACTIONS(1956), 1, sym__entry_separator, - ACTIONS(1966), 1, + ACTIONS(1958), 1, anon_sym_RBRACE, - STATE(4750), 1, + STATE(4897), 1, sym_comment, - [128616] = 4, - ACTIONS(103), 1, + [133687] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8305), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4751), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4626), 1, + sym_block, + STATE(4898), 1, sym_comment, - STATE(4764), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128629] = 4, + [133700] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(8307), 1, - anon_sym_RBRACK, - STATE(4752), 1, + ACTIONS(1022), 1, + anon_sym_LBRACE, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4899), 1, + sym_comment, + [133713] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8481), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4819), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4900), 1, sym_comment, - [128642] = 4, + [133726] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7268), 1, sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - STATE(4753), 1, + STATE(4901), 1, sym_comment, - [128655] = 4, + [133739] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, + ACTIONS(2648), 1, sym__entry_separator, - STATE(4754), 1, + ACTIONS(2650), 1, + anon_sym_RBRACE, + STATE(4902), 1, sym_comment, - [128668] = 4, + [133752] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8309), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4755), 1, + ACTIONS(8483), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4871), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4903), 1, + sym_comment, + [133765] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8485), 1, + sym_identifier, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + STATE(4904), 1, sym_comment, - [128681] = 4, + [133778] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(3106), 1, + STATE(4667), 1, sym_block, - STATE(4756), 1, + STATE(4905), 1, sym_comment, - [128694] = 4, + [133791] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8311), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4757), 1, + ACTIONS(8489), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4900), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4906), 1, sym_comment, - [128707] = 4, - ACTIONS(103), 1, + [133804] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - STATE(1491), 1, - aux_sym__types_body_repeat2, - STATE(4758), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4282), 1, + sym_block, + STATE(4907), 1, sym_comment, - [128720] = 4, - ACTIONS(103), 1, + [133817] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3490), 1, - sym__space, - STATE(1407), 1, - aux_sym_pipe_element_repeat1, - STATE(4759), 1, + ACTIONS(1030), 1, + anon_sym_LBRACE, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4908), 1, sym_comment, - [128733] = 4, - ACTIONS(103), 1, + [133830] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6061), 1, - sym__entry_separator, - ACTIONS(6063), 1, - anon_sym_GT2, - STATE(4760), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4283), 1, + sym_block, + STATE(4909), 1, + sym_comment, + [133843] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3312), 1, + sym_block, + STATE(4910), 1, sym_comment, - [128746] = 4, + [133856] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8313), 1, - anon_sym_RBRACE, - ACTIONS(8315), 1, + ACTIONS(6117), 1, + anon_sym_RBRACK, + ACTIONS(6119), 1, sym__entry_separator, - STATE(4761), 1, + STATE(4911), 1, sym_comment, - [128759] = 4, + [133869] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6065), 1, + ACTIONS(4420), 1, sym__entry_separator, - ACTIONS(6067), 1, - anon_sym_GT2, - STATE(4762), 1, + STATE(2146), 1, + aux_sym__types_body_repeat2, + STATE(4912), 1, sym_comment, - [128772] = 4, + [133882] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3159), 1, + STATE(4285), 1, sym_block, - STATE(4763), 1, - sym_comment, - [128785] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8317), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4735), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(4764), 1, - sym_comment, - [128798] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7654), 1, - anon_sym_RBRACE, - ACTIONS(7656), 1, - sym__entry_separator, - STATE(4765), 1, + STATE(4913), 1, sym_comment, - [128811] = 3, + [133895] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4766), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4665), 1, + sym_block, + STATE(4914), 1, sym_comment, - ACTIONS(8319), 2, - anon_sym_RBRACK, - sym_hex_digit, - [128822] = 4, + [133908] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(8491), 1, + anon_sym_RBRACK, + ACTIONS(8493), 1, sym__entry_separator, - STATE(2118), 1, - aux_sym__types_body_repeat2, - STATE(4767), 1, + STATE(4915), 1, sym_comment, - [128835] = 4, + [133921] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8321), 1, - anon_sym_RBRACE, - ACTIONS(8323), 1, - sym__entry_separator, - STATE(4768), 1, + ACTIONS(8495), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4916), 2, sym_comment, - [128848] = 4, + aux_sym__unquoted_in_list_with_expr_repeat1, + [133932] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8167), 1, - aux_sym__immediate_decimal_token5, - STATE(4769), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4287), 1, + sym_block, + STATE(4917), 1, sym_comment, - [128861] = 4, + [133945] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8325), 1, - anon_sym_RBRACK, - ACTIONS(8327), 1, + ACTIONS(4328), 1, sym__entry_separator, - STATE(4770), 1, + STATE(4749), 1, + aux_sym__types_body_repeat2, + STATE(4918), 1, sym_comment, - [128874] = 4, + [133958] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4240), 1, + STATE(4213), 1, sym_block, - STATE(4771), 1, + STATE(4919), 1, sym_comment, - [128887] = 4, + [133971] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8331), 1, - aux_sym__record_key_token1, - STATE(4772), 1, + ACTIONS(8498), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4916), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(4920), 1, sym_comment, - [128900] = 4, + [133984] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8333), 1, - aux_sym__immediate_decimal_token5, - STATE(4773), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3537), 1, + sym_block, + STATE(4921), 1, sym_comment, - [128913] = 4, + [133997] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7662), 1, - anon_sym_RBRACE, - ACTIONS(7664), 1, + ACTIONS(8500), 1, + anon_sym_GT2, + ACTIONS(8502), 1, sym__entry_separator, - STATE(4774), 1, + STATE(4922), 1, sym_comment, - [128926] = 4, - ACTIONS(103), 1, + [134010] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8335), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4657), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4775), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3507), 1, + sym_block, + STATE(4923), 1, sym_comment, - [128939] = 4, + [134023] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(1852), 1, anon_sym_LBRACE, - STATE(3395), 1, - sym_block, - STATE(4776), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern, + STATE(4924), 1, sym_comment, - [128952] = 4, + [134036] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8337), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4658), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4777), 1, + ACTIONS(8504), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4819), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4925), 1, sym_comment, - [128965] = 4, + [134049] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, - STATE(4778), 1, + ACTIONS(8506), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4819), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4926), 1, sym_comment, - [128978] = 4, + [134062] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(8508), 1, + anon_sym_def, + ACTIONS(8510), 1, + anon_sym_extern, + STATE(4927), 1, + sym_comment, + [134075] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3346), 1, + STATE(4354), 1, sym_block, - STATE(4779), 1, + STATE(4928), 1, sym_comment, - [128991] = 4, + [134088] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACE, - ACTIONS(1018), 1, - sym__entry_separator, - STATE(4780), 1, + ACTIONS(8512), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4929), 1, sym_comment, - [129004] = 4, - ACTIONS(3), 1, + STATE(4933), 1, + aux_sym__unquoted_with_expr_repeat1, + [134101] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4144), 1, - sym_block, - STATE(4781), 1, + ACTIONS(8514), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4930), 1, sym_comment, - [129017] = 4, + STATE(4934), 1, + aux_sym__unquoted_with_expr_repeat1, + [134114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4156), 1, + STATE(4355), 1, sym_block, - STATE(4782), 1, + STATE(4931), 1, sym_comment, - [129030] = 4, + [134127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8339), 1, - sym_identifier, - ACTIONS(8341), 1, - anon_sym_DOLLAR, - STATE(4783), 1, + ACTIONS(6477), 1, + anon_sym_DOLLAR2, + ACTIONS(8516), 1, + anon_sym_RBRACK, + STATE(4932), 1, sym_comment, - [129043] = 4, - ACTIONS(3), 1, + [134140] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8343), 1, - anon_sym_def, - ACTIONS(8345), 1, - anon_sym_extern, - STATE(4784), 1, + ACTIONS(8518), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4893), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4933), 1, sym_comment, - [129056] = 4, + [134153] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - STATE(2240), 1, - aux_sym__types_body_repeat2, - STATE(4785), 1, + ACTIONS(8520), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4893), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4934), 1, + sym_comment, + [134166] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8522), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4916), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(4935), 1, sym_comment, - [129069] = 4, + [134179] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1726), 1, + ACTIONS(886), 1, anon_sym_LBRACE, - ACTIONS(1728), 1, + ACTIONS(1734), 1, sym__unquoted_pattern, - STATE(4786), 1, + STATE(4936), 1, sym_comment, - [129082] = 4, + [134192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LBRACE, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(4787), 1, + STATE(4937), 1, sym_comment, - [129095] = 4, + ACTIONS(8524), 2, + sym__newline, + anon_sym_SEMI, + [134203] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - STATE(4788), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(3242), 1, + sym_block, + STATE(4938), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [129108] = 4, + [134216] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4789), 1, + ACTIONS(7542), 1, + anon_sym_RBRACK, + ACTIONS(7550), 1, + sym__entry_separator, + STATE(4939), 1, + sym_comment, + [134229] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + STATE(4940), 1, sym_comment, - [129121] = 4, + [134242] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2541), 1, sym__entry_separator, - ACTIONS(2569), 1, + ACTIONS(2543), 1, anon_sym_RBRACE, - STATE(4790), 1, + STATE(4941), 1, sym_comment, - [129134] = 3, + [134255] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1973), 1, + anon_sym_LBRACE, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(4942), 1, + sym_comment, + [134268] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8349), 1, - aux_sym_cmd_identifier_token2, - STATE(4791), 1, + ACTIONS(8526), 1, + anon_sym_RBRACK, + ACTIONS(8528), 1, + sym__entry_separator, + STATE(4943), 1, sym_comment, - [129144] = 3, + [134281] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8351), 1, - anon_sym_DQUOTE, - STATE(4792), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4363), 1, + sym_block, + STATE(4944), 1, sym_comment, - [129154] = 3, + [134294] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8353), 1, - anon_sym_SQUOTE2, - STATE(4793), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4364), 1, + sym_block, + STATE(4945), 1, sym_comment, - [129164] = 3, + [134307] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8355), 1, - anon_sym_BQUOTE2, - STATE(4794), 1, + ACTIONS(2648), 1, + anon_sym_LBRACE, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(4946), 1, sym_comment, - [129174] = 3, + [134320] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8357), 1, - anon_sym_LT, - STATE(4795), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4563), 1, + sym_block, + STATE(4947), 1, sym_comment, - [129184] = 3, + [134333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8359), 1, - anon_sym_RBRACE, - STATE(4796), 1, + ACTIONS(8530), 1, + anon_sym_GT2, + STATE(4948), 1, sym_comment, - [129194] = 3, - ACTIONS(3), 1, + [134343] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8361), 1, - anon_sym_RBRACK, - STATE(4797), 1, + ACTIONS(8532), 1, + aux_sym_cmd_identifier_token6, + STATE(4949), 1, sym_comment, - [129204] = 3, + [134353] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8363), 1, - anon_sym_RPAREN, - STATE(4798), 1, + ACTIONS(313), 1, + anon_sym_RBRACE, + STATE(4950), 1, sym_comment, - [129214] = 3, + [134363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8365), 1, - anon_sym_RPAREN, - STATE(4799), 1, + ACTIONS(8534), 1, + anon_sym_RBRACK, + STATE(4951), 1, sym_comment, - [129224] = 3, + [134373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8367), 1, - anon_sym_DQUOTE, - STATE(4800), 1, + ACTIONS(8536), 1, + anon_sym_RPAREN, + STATE(4952), 1, sym_comment, - [129234] = 3, + [134383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8369), 1, - sym_raw_string_end, - STATE(4801), 1, + ACTIONS(8538), 1, + anon_sym_EQ, + STATE(4953), 1, sym_comment, - [129244] = 3, - ACTIONS(103), 1, + [134393] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8371), 1, - aux_sym_cmd_identifier_token6, - STATE(4802), 1, + ACTIONS(8540), 1, + anon_sym_EQ_GT, + STATE(4954), 1, sym_comment, - [129254] = 3, + [134403] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8373), 1, + ACTIONS(8542), 1, anon_sym_RBRACE, - STATE(4803), 1, + STATE(4955), 1, sym_comment, - [129264] = 3, - ACTIONS(3), 1, + [134413] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8375), 1, - anon_sym_RPAREN, - STATE(4804), 1, + ACTIONS(8544), 1, + aux_sym_cmd_identifier_token6, + STATE(4956), 1, sym_comment, - [129274] = 3, + [134423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8377), 1, + ACTIONS(8546), 1, sym_raw_string_end, - STATE(4805), 1, + STATE(4957), 1, sym_comment, - [129284] = 3, + [134433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_RPAREN2, - STATE(4806), 1, + ACTIONS(2527), 1, + sym__unquoted_pattern_in_record, + STATE(4958), 1, sym_comment, - [129294] = 3, + [134443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8379), 1, - anon_sym_GT2, - STATE(4807), 1, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(4959), 1, sym_comment, - [129304] = 3, + [134453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8381), 1, - anon_sym_GT2, - STATE(4808), 1, + ACTIONS(8548), 1, + anon_sym_RBRACK, + STATE(4960), 1, sym_comment, - [129314] = 3, + [134463] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8383), 1, - anon_sym_RBRACK, - STATE(4809), 1, + ACTIONS(8550), 1, + anon_sym_RPAREN2, + STATE(4961), 1, sym_comment, - [129324] = 3, + [134473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(301), 1, + ACTIONS(8552), 1, anon_sym_RBRACE, - STATE(4810), 1, + STATE(4962), 1, sym_comment, - [129334] = 3, + [134483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8385), 1, - anon_sym_RBRACE, - STATE(4811), 1, + ACTIONS(8554), 1, + anon_sym_DQUOTE, + STATE(4963), 1, sym_comment, - [129344] = 3, + [134493] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8387), 1, + ACTIONS(8556), 1, anon_sym_DQUOTE, - STATE(4812), 1, + STATE(4964), 1, sym_comment, - [129354] = 3, + [134503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8389), 1, + ACTIONS(8558), 1, anon_sym_SQUOTE2, - STATE(4813), 1, + STATE(4965), 1, sym_comment, - [129364] = 3, + [134513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8391), 1, + ACTIONS(8560), 1, anon_sym_BQUOTE2, - STATE(4814), 1, + STATE(4966), 1, sym_comment, - [129374] = 3, + [134523] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8393), 1, - anon_sym_RBRACK, - STATE(4815), 1, + ACTIONS(8562), 1, + anon_sym_RPAREN, + STATE(4967), 1, sym_comment, - [129384] = 3, + [134533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8395), 1, + ACTIONS(8564), 1, anon_sym_RBRACE, - STATE(4816), 1, + STATE(4968), 1, sym_comment, - [129394] = 3, + [134543] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8397), 1, - anon_sym_RPAREN, - STATE(4817), 1, - sym_comment, - [129404] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8399), 1, - aux_sym_cmd_identifier_token6, - STATE(4818), 1, + ACTIONS(8566), 1, + sym__table_head_separator, + STATE(4969), 1, sym_comment, - [129414] = 3, + [134553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, + ACTIONS(303), 1, anon_sym_RBRACE, - STATE(4819), 1, + STATE(4970), 1, sym_comment, - [129424] = 3, + [134563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_RBRACE, - STATE(4820), 1, + ACTIONS(8568), 1, + sym_raw_string_end, + STATE(4971), 1, sym_comment, - [129434] = 3, + [134573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8405), 1, - anon_sym_DASH_GT, - STATE(4821), 1, + ACTIONS(8570), 1, + anon_sym_DQUOTE, + STATE(4972), 1, sym_comment, - [129444] = 3, + [134583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8407), 1, - sym_raw_string_end, - STATE(4822), 1, - sym_comment, - [129454] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8409), 1, - aux_sym_cmd_identifier_token6, - STATE(4823), 1, + ACTIONS(8572), 1, + anon_sym_SQUOTE2, + STATE(4973), 1, sym_comment, - [129464] = 3, + [134593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8411), 1, - anon_sym_DQUOTE, - STATE(4824), 1, - sym_comment, - [129474] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8413), 1, - aux_sym_cmd_identifier_token2, - STATE(4825), 1, + ACTIONS(8574), 1, + anon_sym_GT2, + STATE(4974), 1, sym_comment, - [129484] = 3, + [134603] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8415), 1, + ACTIONS(8576), 1, anon_sym_RBRACK, - STATE(4826), 1, + STATE(4975), 1, sym_comment, - [129494] = 3, + [134613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8417), 1, - anon_sym_RPAREN, - STATE(4827), 1, + ACTIONS(8578), 1, + anon_sym_BQUOTE2, + STATE(4976), 1, sym_comment, - [129504] = 3, + [134623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8419), 1, + ACTIONS(8580), 1, anon_sym_RBRACE, - STATE(4828), 1, + STATE(4977), 1, + sym_comment, + [134633] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8582), 1, + anon_sym_RBRACK, + STATE(4978), 1, sym_comment, - [129514] = 3, + [134643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8421), 1, + ACTIONS(8584), 1, anon_sym_DQUOTE, - STATE(4829), 1, + STATE(4979), 1, sym_comment, - [129524] = 3, + [134653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, + ACTIONS(8586), 1, anon_sym_SQUOTE2, - STATE(4830), 1, + STATE(4980), 1, sym_comment, - [129534] = 3, + [134663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8425), 1, + ACTIONS(8588), 1, anon_sym_BQUOTE2, - STATE(4831), 1, + STATE(4981), 1, sym_comment, - [129544] = 3, + [134673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8427), 1, + ACTIONS(8590), 1, anon_sym_RPAREN, - STATE(4832), 1, + STATE(4982), 1, sym_comment, - [129554] = 3, - ACTIONS(103), 1, + [134683] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, - aux_sym__record_key_token1, - STATE(4833), 1, + ACTIONS(8592), 1, + anon_sym_GT2, + STATE(4983), 1, sym_comment, - [129564] = 3, + [134693] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8429), 1, - anon_sym_SQUOTE2, - STATE(4834), 1, + ACTIONS(8594), 1, + anon_sym_GT2, + STATE(4984), 1, sym_comment, - [129574] = 3, + [134703] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8431), 1, - anon_sym_RPAREN, - STATE(4835), 1, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4985), 1, sym_comment, - [129584] = 3, + [134713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8433), 1, - anon_sym_EQ, - STATE(4836), 1, + ACTIONS(8596), 1, + sym_raw_string_end, + STATE(4986), 1, sym_comment, - [129594] = 3, + [134723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8435), 1, + ACTIONS(8598), 1, sym_raw_string_end, - STATE(4837), 1, + STATE(4987), 1, sym_comment, - [129604] = 3, + [134733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - STATE(4838), 1, + ACTIONS(8600), 1, + anon_sym_SQUOTE2, + STATE(4988), 1, sym_comment, - [129614] = 3, + [134743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_RPAREN, - STATE(4839), 1, + ACTIONS(8602), 1, + anon_sym_BQUOTE2, + STATE(4989), 1, sym_comment, - [129624] = 3, + [134753] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8439), 1, + ACTIONS(8604), 1, anon_sym_RBRACK, - STATE(4840), 1, - sym_comment, - [129634] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4841), 1, + STATE(4990), 1, sym_comment, - [129644] = 3, + [134763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8441), 1, - anon_sym_RBRACK, - STATE(4842), 1, + ACTIONS(7458), 1, + sym__unquoted_pattern, + STATE(4991), 1, sym_comment, - [129654] = 3, + [134773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8443), 1, + ACTIONS(8606), 1, anon_sym_DQUOTE, - STATE(4843), 1, + STATE(4992), 1, sym_comment, - [129664] = 3, + [134783] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8445), 1, + ACTIONS(8608), 1, anon_sym_SQUOTE2, - STATE(4844), 1, + STATE(4993), 1, sym_comment, - [129674] = 3, + [134793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8447), 1, + ACTIONS(8610), 1, anon_sym_BQUOTE2, - STATE(4845), 1, + STATE(4994), 1, + sym_comment, + [134803] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8612), 1, + aux_sym_cmd_identifier_token6, + STATE(4995), 1, sym_comment, - [129684] = 3, + [134813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8449), 1, + ACTIONS(8614), 1, anon_sym_RPAREN, - STATE(4846), 1, + STATE(4996), 1, sym_comment, - [129694] = 3, + [134823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8451), 1, + ACTIONS(8616), 1, sym_raw_string_end, - STATE(4847), 1, + STATE(4997), 1, sym_comment, - [129704] = 3, + [134833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8453), 1, - sym_identifier, - STATE(4848), 1, + ACTIONS(8618), 1, + anon_sym_RBRACE, + STATE(4998), 1, sym_comment, - [129714] = 3, - ACTIONS(3), 1, + [134843] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8455), 1, - anon_sym_DASH_GT, - STATE(4849), 1, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + STATE(4999), 1, sym_comment, - [129724] = 3, + [134853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8457), 1, - sym_raw_string_end, - STATE(4850), 1, + ACTIONS(1862), 1, + sym__table_head_separator, + STATE(5000), 1, sym_comment, - [129734] = 3, + [134863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(4851), 1, + ACTIONS(8620), 1, + anon_sym_RBRACK, + STATE(5001), 1, sym_comment, - [129744] = 3, + [134873] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8459), 1, + ACTIONS(8622), 1, anon_sym_RBRACE, - STATE(4852), 1, - sym_comment, - [129754] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - STATE(4853), 1, - sym_comment, - [129764] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8461), 1, - anon_sym_RBRACK, - STATE(4854), 1, + STATE(5002), 1, sym_comment, - [129774] = 3, + [134883] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8463), 1, + ACTIONS(8624), 1, anon_sym_DQUOTE, - STATE(4855), 1, + STATE(5003), 1, sym_comment, - [129784] = 3, + [134893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8465), 1, + ACTIONS(8626), 1, anon_sym_SQUOTE2, - STATE(4856), 1, + STATE(5004), 1, sym_comment, - [129794] = 3, + [134903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8467), 1, + ACTIONS(8628), 1, anon_sym_BQUOTE2, - STATE(4857), 1, + STATE(5005), 1, sym_comment, - [129804] = 3, + [134913] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8469), 1, - anon_sym_RBRACE, - STATE(4858), 1, + ACTIONS(8630), 1, + anon_sym_RBRACK, + STATE(5006), 1, sym_comment, - [129814] = 3, + [134923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8471), 1, + ACTIONS(8632), 1, anon_sym_RBRACE, - STATE(4859), 1, + STATE(5007), 1, sym_comment, - [129824] = 3, + [134933] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8473), 1, + ACTIONS(8634), 1, sym_raw_string_end, - STATE(4860), 1, + STATE(5008), 1, + sym_comment, + [134943] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8636), 1, + anon_sym_RBRACE, + STATE(5009), 1, sym_comment, - [129834] = 3, + [134953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6616), 1, + ACTIONS(2646), 1, sym__unquoted_pattern_in_record, - STATE(4861), 1, + STATE(5010), 1, sym_comment, - [129844] = 3, + [134963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8475), 1, - sym_identifier, - STATE(4862), 1, + ACTIONS(8638), 1, + anon_sym_EQ, + STATE(5011), 1, sym_comment, - [129854] = 3, + [134973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8477), 1, - anon_sym_RBRACK, - STATE(4863), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_record, + STATE(5012), 1, sym_comment, - [129864] = 3, + [134983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8479), 1, + ACTIONS(8640), 1, anon_sym_DQUOTE, - STATE(4864), 1, + STATE(5013), 1, sym_comment, - [129874] = 3, + [134993] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8481), 1, + ACTIONS(8642), 1, anon_sym_SQUOTE2, - STATE(4865), 1, + STATE(5014), 1, sym_comment, - [129884] = 3, + [135003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8483), 1, + ACTIONS(8644), 1, anon_sym_BQUOTE2, - STATE(4866), 1, + STATE(5015), 1, sym_comment, - [129894] = 3, - ACTIONS(3), 1, + [135013] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(4867), 1, + ACTIONS(1880), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5016), 1, sym_comment, - [129904] = 3, + [135023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8485), 1, - anon_sym_RPAREN, - STATE(4868), 1, + ACTIONS(8646), 1, + anon_sym_RBRACE, + STATE(5017), 1, sym_comment, - [129914] = 3, + [135033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8487), 1, + ACTIONS(8648), 1, sym_raw_string_end, - STATE(4869), 1, - sym_comment, - [129924] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8489), 1, - anon_sym_RBRACK, - STATE(4870), 1, - sym_comment, - [129934] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8491), 1, - anon_sym_GT2, - STATE(4871), 1, + STATE(5018), 1, sym_comment, - [129944] = 3, - ACTIONS(3), 1, + [135043] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(4872), 1, + ACTIONS(8650), 1, + aux_sym_comment_token1, + STATE(5019), 1, sym_comment, - [129954] = 3, + [135053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8493), 1, + ACTIONS(8652), 1, anon_sym_DQUOTE, - STATE(4873), 1, + STATE(5020), 1, sym_comment, - [129964] = 3, + [135063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8495), 1, + ACTIONS(8654), 1, anon_sym_SQUOTE2, - STATE(4874), 1, + STATE(5021), 1, sym_comment, - [129974] = 3, + [135073] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8497), 1, + ACTIONS(8656), 1, anon_sym_BQUOTE2, - STATE(4875), 1, + STATE(5022), 1, sym_comment, - [129984] = 3, + [135083] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, - anon_sym_RPAREN, - STATE(4876), 1, + ACTIONS(8658), 1, + anon_sym_RBRACK, + STATE(5023), 1, sym_comment, - [129994] = 3, - ACTIONS(103), 1, + [135093] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4877), 1, + ACTIONS(8660), 1, + anon_sym_RPAREN, + STATE(5024), 1, sym_comment, - [130004] = 3, + [135103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8501), 1, + ACTIONS(8662), 1, sym_raw_string_end, - STATE(4878), 1, + STATE(5025), 1, sym_comment, - [130014] = 3, + [135113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7841), 1, - anon_sym_LBRACE, - STATE(4879), 1, + ACTIONS(8664), 1, + sym_identifier, + STATE(5026), 1, sym_comment, - [130024] = 3, + [135123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8503), 1, + ACTIONS(8666), 1, anon_sym_DQUOTE, - STATE(4880), 1, + STATE(5027), 1, sym_comment, - [130034] = 3, + [135133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8505), 1, + ACTIONS(8668), 1, anon_sym_SQUOTE2, - STATE(4881), 1, + STATE(5028), 1, sym_comment, - [130044] = 3, + [135143] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8507), 1, + ACTIONS(8670), 1, anon_sym_BQUOTE2, - STATE(4882), 1, + STATE(5029), 1, sym_comment, - [130054] = 3, - ACTIONS(3), 1, + [135153] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8509), 1, - sym_raw_string_end, - STATE(4883), 1, + ACTIONS(8672), 1, + aux_sym_cmd_identifier_token6, + STATE(5030), 1, sym_comment, - [130064] = 3, + [135163] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(4884), 1, + ACTIONS(8674), 1, + anon_sym_RBRACE, + STATE(5031), 1, sym_comment, - [130074] = 3, + [135173] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8511), 1, + ACTIONS(8676), 1, sym_raw_string_end, - STATE(4885), 1, + STATE(5032), 1, sym_comment, - [130084] = 3, + [135183] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8513), 1, - anon_sym_RBRACK, - STATE(4886), 1, + ACTIONS(6779), 1, + sym__unquoted_pattern_in_record, + STATE(5033), 1, sym_comment, - [130094] = 3, + [135193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8515), 1, + ACTIONS(8678), 1, anon_sym_DQUOTE, - STATE(4887), 1, + STATE(5034), 1, sym_comment, - [130104] = 3, + [135203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8517), 1, + ACTIONS(8680), 1, anon_sym_SQUOTE2, - STATE(4888), 1, + STATE(5035), 1, sym_comment, - [130114] = 3, + [135213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8519), 1, + ACTIONS(8682), 1, anon_sym_BQUOTE2, - STATE(4889), 1, + STATE(5036), 1, sym_comment, - [130124] = 3, + [135223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8521), 1, - anon_sym_SQUOTE2, - STATE(4890), 1, + ACTIONS(8684), 1, + anon_sym_RBRACE, + STATE(5037), 1, sym_comment, - [130134] = 3, + [135233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8523), 1, + ACTIONS(8686), 1, anon_sym_RPAREN, - STATE(4891), 1, + STATE(5038), 1, sym_comment, - [130144] = 3, + [135243] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8525), 1, + ACTIONS(8688), 1, sym_raw_string_end, - STATE(4892), 1, + STATE(5039), 1, sym_comment, - [130154] = 3, + [135253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8527), 1, - anon_sym_RPAREN, - STATE(4893), 1, + ACTIONS(403), 1, + ts_builtin_sym_end, + STATE(5040), 1, sym_comment, - [130164] = 3, + [135263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8529), 1, + ACTIONS(8690), 1, anon_sym_DQUOTE, - STATE(4894), 1, + STATE(5041), 1, sym_comment, - [130174] = 3, + [135273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8531), 1, + ACTIONS(8692), 1, anon_sym_SQUOTE2, - STATE(4895), 1, + STATE(5042), 1, sym_comment, - [130184] = 3, + [135283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8533), 1, + ACTIONS(8694), 1, anon_sym_BQUOTE2, - STATE(4896), 1, + STATE(5043), 1, sym_comment, - [130194] = 3, + [135293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8535), 1, - anon_sym_GT2, - STATE(4897), 1, + ACTIONS(8696), 1, + anon_sym_RBRACE, + STATE(5044), 1, sym_comment, - [130204] = 3, + [135303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(297), 1, - anon_sym_RBRACE, - STATE(4898), 1, + ACTIONS(8698), 1, + anon_sym_RPAREN, + STATE(5045), 1, sym_comment, - [130214] = 3, + [135313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8537), 1, + ACTIONS(8700), 1, sym_raw_string_end, - STATE(4899), 1, + STATE(5046), 1, sym_comment, - [130224] = 3, - ACTIONS(3), 1, + [135323] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(309), 1, - anon_sym_RBRACE, - STATE(4900), 1, + ACTIONS(8702), 1, + aux_sym_cmd_identifier_token2, + STATE(5047), 1, sym_comment, - [130234] = 3, + [135333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8539), 1, + ACTIONS(8704), 1, anon_sym_DQUOTE, - STATE(4901), 1, + STATE(5048), 1, sym_comment, - [130244] = 3, + [135343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8541), 1, + ACTIONS(8706), 1, anon_sym_SQUOTE2, - STATE(4902), 1, + STATE(5049), 1, sym_comment, - [130254] = 3, + [135353] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8543), 1, + ACTIONS(8708), 1, anon_sym_BQUOTE2, - STATE(4903), 1, + STATE(5050), 1, sym_comment, - [130264] = 3, + [135363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8545), 1, + ACTIONS(8710), 1, anon_sym_RBRACE, - STATE(4904), 1, - sym_comment, - [130274] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4905), 1, + STATE(5051), 1, sym_comment, - [130284] = 3, + [135373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8547), 1, + ACTIONS(8712), 1, sym_raw_string_end, - STATE(4906), 1, + STATE(5052), 1, sym_comment, - [130294] = 3, + [135383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8549), 1, - anon_sym_RBRACE, - STATE(4907), 1, + ACTIONS(8714), 1, + anon_sym_LBRACE, + STATE(5053), 1, sym_comment, - [130304] = 3, + [135393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8551), 1, + ACTIONS(8716), 1, anon_sym_DQUOTE, - STATE(4908), 1, + STATE(5054), 1, sym_comment, - [130314] = 3, + [135403] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8553), 1, + ACTIONS(8718), 1, anon_sym_SQUOTE2, - STATE(4909), 1, + STATE(5055), 1, sym_comment, - [130324] = 3, + [135413] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8555), 1, + ACTIONS(8720), 1, anon_sym_BQUOTE2, - STATE(4910), 1, + STATE(5056), 1, sym_comment, - [130334] = 3, + [135423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8557), 1, - anon_sym_RBRACK, - STATE(4911), 1, + ACTIONS(297), 1, + anon_sym_RBRACE, + STATE(5057), 1, sym_comment, - [130344] = 3, + [135433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8559), 1, + ACTIONS(8722), 1, sym_raw_string_end, - STATE(4912), 1, + STATE(5058), 1, sym_comment, - [130354] = 3, + [135443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8561), 1, + ACTIONS(8724), 1, + anon_sym_RPAREN, + STATE(5059), 1, + sym_comment, + [135453] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8726), 1, anon_sym_DQUOTE, - STATE(4913), 1, + STATE(5060), 1, sym_comment, - [130364] = 3, + [135463] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8563), 1, + ACTIONS(8728), 1, anon_sym_SQUOTE2, - STATE(4914), 1, + STATE(5061), 1, sym_comment, - [130374] = 3, + [135473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8565), 1, + ACTIONS(8730), 1, anon_sym_BQUOTE2, - STATE(4915), 1, + STATE(5062), 1, + sym_comment, + [135483] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8714), 1, + anon_sym_LBRACE, + STATE(5063), 1, sym_comment, - [130384] = 3, + [135493] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8567), 1, + ACTIONS(8732), 1, sym_raw_string_content, - STATE(4916), 1, + STATE(5064), 1, sym_comment, - [130394] = 3, + [135503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7770), 1, - anon_sym_EQ_GT, - STATE(4917), 1, + ACTIONS(8734), 1, + anon_sym_RPAREN, + STATE(5065), 1, sym_comment, - [130404] = 3, + [135513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7342), 1, - sym__unquoted_pattern, - STATE(4918), 1, + ACTIONS(8736), 1, + anon_sym_DASH_GT, + STATE(5066), 1, sym_comment, - [130414] = 3, + [135523] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8569), 1, - anon_sym_RBRACE, - STATE(4919), 1, + ACTIONS(8738), 1, + anon_sym_GT2, + STATE(5067), 1, sym_comment, - [130424] = 3, + [135533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2132), 1, + ACTIONS(2092), 1, anon_sym_LBRACK2, - STATE(4920), 1, + STATE(5068), 1, sym_comment, - [130434] = 3, + [135543] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8571), 1, + ACTIONS(8740), 1, aux_sym__str_single_quotes_token1, - STATE(4921), 1, + STATE(5069), 1, sym_comment, - [130444] = 3, + [135553] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8573), 1, + ACTIONS(8742), 1, aux_sym__str_back_ticks_token1, - STATE(4922), 1, - sym_comment, - [130454] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8575), 1, - aux_sym_shebang_token1, - STATE(4923), 1, + STATE(5070), 1, sym_comment, - [130464] = 3, + [135563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8577), 1, - anon_sym_in, - STATE(4924), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + STATE(5071), 1, sym_comment, - [130474] = 3, - ACTIONS(3), 1, + [135573] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8579), 1, - anon_sym_GT2, - STATE(4925), 1, + ACTIONS(8744), 1, + aux_sym_cmd_identifier_token6, + STATE(5072), 1, sym_comment, - [130484] = 3, + [135583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8581), 1, - anon_sym_RBRACK, - STATE(4926), 1, + ACTIONS(8746), 1, + anon_sym_LBRACE, + STATE(5073), 1, sym_comment, - [130494] = 3, + [135593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, - STATE(4927), 1, + ACTIONS(8746), 1, + anon_sym_LBRACE, + STATE(5074), 1, sym_comment, - [130504] = 3, + [135603] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, - STATE(4928), 1, + ACTIONS(8748), 1, + anon_sym_LBRACE, + STATE(5075), 1, sym_comment, - [130514] = 3, + [135613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8583), 1, + ACTIONS(8750), 1, anon_sym_RBRACE, - STATE(4929), 1, + STATE(5076), 1, sym_comment, - [130524] = 3, + [135623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8585), 1, - anon_sym_PIPE, - STATE(4930), 1, + ACTIONS(8752), 1, + sym_raw_string_end, + STATE(5077), 1, sym_comment, - [130534] = 3, + [135633] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7867), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(4931), 1, + STATE(5078), 1, sym_comment, - [130544] = 3, + [135643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(8754), 1, anon_sym_LBRACE, - STATE(4932), 1, + STATE(5079), 1, sym_comment, - [130554] = 3, + [135653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8589), 1, - anon_sym_GT2, - STATE(4933), 1, + ACTIONS(8756), 1, + anon_sym_RBRACK, + STATE(5080), 1, sym_comment, - [130564] = 3, + [135663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8591), 1, + ACTIONS(8758), 1, anon_sym_RBRACK, - STATE(4934), 1, + STATE(5081), 1, sym_comment, - [130574] = 3, + [135673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5241), 1, - anon_sym_EQ2, - STATE(4935), 1, + ACTIONS(8760), 1, + anon_sym_RBRACE, + STATE(5082), 1, sym_comment, - [130584] = 3, + [135683] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4936), 1, + ACTIONS(8762), 1, + aux_sym_cmd_identifier_token6, + STATE(5083), 1, sym_comment, - [130594] = 3, + [135693] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1708), 1, - anon_sym_COLON2, - STATE(4937), 1, + ACTIONS(8764), 1, + anon_sym_RBRACK, + STATE(5084), 1, sym_comment, - [130604] = 3, + [135703] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8593), 1, + ACTIONS(8766), 1, anon_sym_RPAREN, - STATE(4938), 1, + STATE(5085), 1, sym_comment, - [130614] = 3, + [135713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_DQUOTE, - STATE(4939), 1, + ACTIONS(8768), 1, + anon_sym_GT2, + STATE(5086), 1, sym_comment, - [130624] = 3, + [135723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8597), 1, - anon_sym_SQUOTE2, - STATE(4940), 1, + ACTIONS(2620), 1, + sym__table_head_separator, + STATE(5087), 1, sym_comment, - [130634] = 3, + [135733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8599), 1, + ACTIONS(8770), 1, anon_sym_RBRACE, - STATE(4941), 1, + STATE(5088), 1, sym_comment, - [130644] = 3, + [135743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_RPAREN2, - STATE(4942), 1, + ACTIONS(8772), 1, + anon_sym_GT2, + STATE(5089), 1, sym_comment, - [130654] = 3, + [135753] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8603), 1, + ACTIONS(8774), 1, sym__space, - STATE(4943), 1, - sym_comment, - [130664] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8605), 1, - anon_sym_RBRACK, - STATE(4944), 1, + STATE(5090), 1, sym_comment, - [130674] = 3, + [135763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8607), 1, - anon_sym_BQUOTE2, - STATE(4945), 1, + ACTIONS(8776), 1, + anon_sym_RBRACE, + STATE(5091), 1, sym_comment, - [130684] = 3, + [135773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6902), 1, + ACTIONS(5071), 1, sym__unquoted_pattern, - STATE(4946), 1, + STATE(5092), 1, sym_comment, - [130694] = 3, + [135783] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8609), 1, - anon_sym_RBRACE, - STATE(4947), 1, - sym_comment, - [130704] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4948), 1, + ACTIONS(8778), 1, + anon_sym_GT2, + STATE(5093), 1, sym_comment, - [130714] = 3, + [135793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8611), 1, + ACTIONS(8780), 1, anon_sym_RBRACK, - STATE(4949), 1, + STATE(5094), 1, sym_comment, - [130724] = 3, + [135803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8613), 1, - anon_sym_EQ, - STATE(4950), 1, + ACTIONS(8782), 1, + anon_sym_RBRACE, + STATE(5095), 1, sym_comment, - [130734] = 3, + [135813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, - sym__table_head_separator, - STATE(4951), 1, - sym_comment, - [130744] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8617), 1, - aux_sym_cmd_identifier_token6, - STATE(4952), 1, + ACTIONS(8784), 1, + anon_sym_RBRACK, + STATE(5096), 1, sym_comment, - [130754] = 3, + [135823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8619), 1, + ACTIONS(8786), 1, anon_sym_GT2, - STATE(4953), 1, + STATE(5097), 1, sym_comment, - [130764] = 3, + [135833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8621), 1, - sym_attribute_identifier, - STATE(4954), 1, + ACTIONS(8788), 1, + anon_sym_RBRACK, + STATE(5098), 1, sym_comment, - [130774] = 3, + [135843] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8623), 1, + ACTIONS(8790), 1, anon_sym_RBRACK, - STATE(4955), 1, + STATE(5099), 1, sym_comment, - [130784] = 3, + [135853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8625), 1, - anon_sym_BQUOTE2, - STATE(4956), 1, + ACTIONS(8792), 1, + anon_sym_EQ, + STATE(5100), 1, sym_comment, - [130794] = 3, + [135863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8627), 1, - sym__table_head_separator, - STATE(4957), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(5101), 1, sym_comment, - [130804] = 3, + [135873] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8629), 1, - anon_sym_RBRACE, - STATE(4958), 1, + ACTIONS(8794), 1, + anon_sym_RPAREN, + STATE(5102), 1, sym_comment, - [130814] = 3, + [135883] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8631), 1, - anon_sym_EQ, - STATE(4959), 1, + ACTIONS(8796), 1, + anon_sym_RPAREN, + STATE(5103), 1, sym_comment, - [130824] = 3, + [135893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8633), 1, - anon_sym_EQ, - STATE(4960), 1, + ACTIONS(315), 1, + anon_sym_RBRACE, + STATE(5104), 1, sym_comment, - [130834] = 3, + [135903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8635), 1, - anon_sym_RBRACE, - STATE(4961), 1, + ACTIONS(8798), 1, + sym_raw_string_end, + STATE(5105), 1, sym_comment, - [130844] = 3, - ACTIONS(103), 1, + [135913] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8637), 1, - aux_sym_cmd_identifier_token6, - STATE(4962), 1, + ACTIONS(8800), 1, + anon_sym_RBRACE, + STATE(5106), 1, sym_comment, - [130854] = 3, + [135923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__table_head_separator, - STATE(4963), 1, + ACTIONS(8802), 1, + anon_sym_GT2, + STATE(5107), 1, sym_comment, - [130864] = 3, + [135933] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8639), 1, - anon_sym_RBRACE, - STATE(4964), 1, + ACTIONS(8804), 1, + ts_builtin_sym_end, + STATE(5108), 1, sym_comment, - [130874] = 3, + [135943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8641), 1, - anon_sym_LBRACE, - STATE(4965), 1, + ACTIONS(8806), 1, + anon_sym_DASH_GT, + STATE(5109), 1, sym_comment, - [130884] = 3, - ACTIONS(103), 1, + [135953] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8643), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4966), 1, + ACTIONS(8808), 1, + anon_sym_RBRACK, + STATE(5110), 1, sym_comment, - [130894] = 3, + [135963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(8810), 1, anon_sym_EQ, - STATE(4967), 1, + STATE(5111), 1, sym_comment, - [130904] = 3, + [135973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8647), 1, - anon_sym_RPAREN, - STATE(4968), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern, + STATE(5112), 1, sym_comment, - [130914] = 3, + [135983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5287), 1, - anon_sym_EQ2, - STATE(4969), 1, + ACTIONS(6533), 1, + anon_sym_EQ, + STATE(5113), 1, sym_comment, - [130924] = 3, - ACTIONS(103), 1, + [135993] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8649), 1, - aux_sym_cmd_identifier_token6, - STATE(4970), 1, + ACTIONS(2834), 1, + anon_sym_LBRACK2, + STATE(5114), 1, sym_comment, - [130934] = 3, + [136003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2666), 1, - anon_sym_COLON2, - STATE(4971), 1, + ACTIONS(8812), 1, + anon_sym_GT2, + STATE(5115), 1, sym_comment, - [130944] = 3, + [136013] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8327), 1, - anon_sym_LBRACE, - STATE(4972), 1, + ACTIONS(8814), 1, + anon_sym_RBRACE, + STATE(5116), 1, sym_comment, - [130954] = 3, - ACTIONS(103), 1, + [136023] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8651), 1, - aux_sym__str_single_quotes_token1, - STATE(4973), 1, + ACTIONS(8816), 1, + sym_identifier, + STATE(5117), 1, sym_comment, - [130964] = 3, + [136033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8653), 1, - anon_sym_RBRACE, - STATE(4974), 1, + ACTIONS(8818), 1, + anon_sym_DQUOTE, + STATE(5118), 1, sym_comment, - [130974] = 3, + [136043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8655), 1, - anon_sym_RBRACK, - STATE(4975), 1, + ACTIONS(8820), 1, + anon_sym_SQUOTE2, + STATE(5119), 1, sym_comment, - [130984] = 3, + [136053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8657), 1, - anon_sym_RBRACE, - STATE(4976), 1, + ACTIONS(8822), 1, + sym_raw_string_content, + STATE(5120), 1, sym_comment, - [130994] = 3, - ACTIONS(103), 1, + [136063] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8659), 1, - aux_sym_comment_token1, - STATE(4977), 1, + ACTIONS(8824), 1, + anon_sym_RBRACE, + STATE(5121), 1, sym_comment, - [131004] = 3, - ACTIONS(103), 1, + [136073] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8661), 1, - aux_sym_cmd_identifier_token2, - STATE(4978), 1, + ACTIONS(8826), 1, + anon_sym_RBRACK, + STATE(5122), 1, sym_comment, - [131014] = 3, + [136083] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8663), 1, - aux_sym_cmd_identifier_token6, - STATE(4979), 1, + ACTIONS(1894), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5123), 1, sym_comment, - [131024] = 3, + [136093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8665), 1, - anon_sym_RBRACK, - STATE(4980), 1, + ACTIONS(8828), 1, + ts_builtin_sym_end, + STATE(5124), 1, sym_comment, - [131034] = 3, - ACTIONS(103), 1, + [136103] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8667), 1, - aux_sym__str_back_ticks_token1, - STATE(4981), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(5125), 1, sym_comment, - [131044] = 3, + [136113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8669), 1, - anon_sym_RPAREN, - STATE(4982), 1, + ACTIONS(5255), 1, + anon_sym_EQ2, + STATE(5126), 1, sym_comment, - [131054] = 3, + [136123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8671), 1, + ACTIONS(8830), 1, anon_sym_RPAREN, - STATE(4983), 1, + STATE(5127), 1, sym_comment, - [131064] = 3, + [136133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(351), 1, - anon_sym_RPAREN2, - STATE(4984), 1, + ACTIONS(8832), 1, + anon_sym_RBRACE, + STATE(5128), 1, sym_comment, - [131074] = 3, - ACTIONS(3), 1, + [136143] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2920), 1, - anon_sym_LBRACK2, - STATE(4985), 1, + ACTIONS(8834), 1, + aux_sym_cmd_identifier_token2, + STATE(5129), 1, sym_comment, - [131084] = 3, + [136153] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8673), 1, - anon_sym_LBRACE, - STATE(4986), 1, + ACTIONS(8836), 1, + anon_sym_EQ, + STATE(5130), 1, sym_comment, - [131094] = 3, + [136163] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5221), 1, - anon_sym_EQ2, - STATE(4987), 1, + ACTIONS(8838), 1, + anon_sym_DQUOTE, + STATE(5131), 1, sym_comment, - [131104] = 3, - ACTIONS(3), 1, + [136173] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8675), 1, - sym_raw_string_end, - STATE(4988), 1, + ACTIONS(8840), 1, + aux_sym_cmd_identifier_token6, + STATE(5132), 1, sym_comment, - [131114] = 3, + [136183] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(4989), 1, + ACTIONS(8842), 1, + anon_sym_LBRACE, + STATE(5133), 1, sym_comment, - [131124] = 3, + [136193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8677), 1, - sym_raw_string_end, - STATE(4990), 1, + ACTIONS(8844), 1, + anon_sym_SQUOTE2, + STATE(5134), 1, sym_comment, - [131134] = 3, - ACTIONS(103), 1, + [136203] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8679), 1, - aux_sym_shebang_token1, - STATE(4991), 1, + ACTIONS(8846), 1, + anon_sym_BQUOTE2, + STATE(5135), 1, sym_comment, - [131144] = 3, + [136213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(4992), 1, + ACTIONS(8848), 1, + anon_sym_EQ, + STATE(5136), 1, sym_comment, - [131154] = 3, + [136223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8681), 1, + ACTIONS(8850), 1, anon_sym_RBRACK, - STATE(4993), 1, + STATE(5137), 1, sym_comment, - [131164] = 3, + [136233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(303), 1, + ACTIONS(8852), 1, anon_sym_RBRACE, - STATE(4994), 1, + STATE(5138), 1, sym_comment, - [131174] = 3, + [136243] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8683), 1, - anon_sym_RBRACE, - STATE(4995), 1, + ACTIONS(355), 1, + anon_sym_RPAREN2, + STATE(5139), 1, sym_comment, - [131184] = 3, + [136253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(4996), 1, + ACTIONS(6479), 1, + sym__unquoted_pattern_in_list, + STATE(5140), 1, sym_comment, - [131194] = 3, + [136263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - STATE(4997), 1, + ACTIONS(5281), 1, + anon_sym_EQ2, + STATE(5141), 1, sym_comment, - [131204] = 3, + [136273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8685), 1, - sym_raw_string_content, - STATE(4998), 1, + ACTIONS(8854), 1, + anon_sym_RPAREN, + STATE(5142), 1, sym_comment, - [131214] = 3, + [136283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_EQ2, - STATE(4999), 1, + ACTIONS(8436), 1, + anon_sym_LBRACE, + STATE(5143), 1, sym_comment, - [131224] = 3, - ACTIONS(3), 1, + [136293] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8687), 1, - sym_identifier, - STATE(5000), 1, + ACTIONS(8856), 1, + aux_sym_cmd_identifier_token2, + STATE(5144), 1, sym_comment, - [131234] = 3, + [136303] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8689), 1, - aux_sym_cmd_identifier_token2, - STATE(5001), 1, + ACTIONS(8858), 1, + aux_sym_cmd_identifier_token6, + STATE(5145), 1, sym_comment, - [131244] = 3, + [136313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8691), 1, - anon_sym_EQ, - STATE(5002), 1, + ACTIONS(8860), 1, + sym__table_head_separator, + STATE(5146), 1, + sym_comment, + [136323] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8862), 1, + anon_sym_DQUOTE, + STATE(5147), 1, sym_comment, - [131254] = 3, + [136333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8693), 1, + ACTIONS(8864), 1, anon_sym_RBRACK, - STATE(5003), 1, + STATE(5148), 1, sym_comment, - [131264] = 3, + [136343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8695), 1, - anon_sym_GT2, - STATE(5004), 1, + ACTIONS(8866), 1, + anon_sym_RBRACE, + STATE(5149), 1, sym_comment, - [131274] = 3, + [136353] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8697), 1, - sym_identifier, - STATE(5005), 1, + ACTIONS(8868), 1, + anon_sym_RBRACK, + STATE(5150), 1, + sym_comment, + [136363] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8870), 1, + aux_sym_shebang_token1, + STATE(5151), 1, sym_comment, - [131284] = 3, + [136373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8699), 1, - anon_sym_RPAREN, - STATE(5006), 1, + ACTIONS(8872), 1, + anon_sym_RBRACK, + STATE(5152), 1, sym_comment, - [131294] = 3, + [136383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, - anon_sym_LBRACE, - STATE(5007), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern_in_record, + STATE(5153), 1, sym_comment, - [131304] = 3, + [136393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8703), 1, + ACTIONS(8874), 1, anon_sym_RBRACE, - STATE(5008), 1, + STATE(5154), 1, sym_comment, - [131314] = 3, - ACTIONS(103), 1, + [136403] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(5009), 1, + ACTIONS(8876), 1, + anon_sym_RBRACE, + STATE(5155), 1, sym_comment, - [131324] = 3, + [136413] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8705), 1, - anon_sym_RBRACK, - STATE(5010), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + STATE(5156), 1, sym_comment, - [131334] = 3, + [136423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(289), 1, - anon_sym_RBRACE, - STATE(5011), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern_in_record, + STATE(5157), 1, sym_comment, - [131344] = 3, + [136433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8707), 1, - anon_sym_RBRACE, - STATE(5012), 1, + ACTIONS(8878), 1, + anon_sym_BQUOTE2, + STATE(5158), 1, sym_comment, - [131354] = 3, + [136443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8709), 1, - anon_sym_RBRACE, - STATE(5013), 1, + ACTIONS(1872), 1, + sym__unquoted_pattern_in_record, + STATE(5159), 1, sym_comment, - [131364] = 3, + [136453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8711), 1, - anon_sym_RBRACK, - STATE(5014), 1, + ACTIONS(8880), 1, + anon_sym_RBRACE, + STATE(5160), 1, sym_comment, - [131374] = 3, + [136463] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8713), 1, + ACTIONS(8882), 1, anon_sym_RBRACE, - STATE(5015), 1, + STATE(5161), 1, sym_comment, - [131384] = 3, + [136473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_RBRACE, - STATE(5016), 1, + ACTIONS(8884), 1, + anon_sym_RPAREN, + STATE(5162), 1, sym_comment, - [131394] = 3, + [136483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8717), 1, - ts_builtin_sym_end, - STATE(5017), 1, + ACTIONS(8886), 1, + anon_sym_SQUOTE2, + STATE(5163), 1, + sym_comment, + [136493] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8888), 1, + aux_sym_cmd_identifier_token6, + STATE(5164), 1, sym_comment, - [131404] = 3, + [136503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8719), 1, - anon_sym_RBRACK, - STATE(5018), 1, + ACTIONS(8890), 1, + anon_sym_COLON2, + STATE(5165), 1, sym_comment, - [131414] = 3, + [136513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8721), 1, - anon_sym_GT2, - STATE(5019), 1, + ACTIONS(8892), 1, + anon_sym_RBRACE, + STATE(5166), 1, sym_comment, - [131424] = 3, + [136523] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8723), 1, + ACTIONS(8894), 1, sym_raw_string_end, - STATE(5020), 1, + STATE(5167), 1, sym_comment, - [131434] = 3, + [136533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(5021), 1, + ACTIONS(8068), 1, + anon_sym_EQ_GT, + STATE(5168), 1, sym_comment, - [131444] = 3, + [136543] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8725), 1, - anon_sym_DQUOTE, - STATE(5022), 1, + ACTIONS(2654), 1, + sym__unquoted_pattern_in_record, + STATE(5169), 1, sym_comment, - [131454] = 3, + [136553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8727), 1, - anon_sym_EQ, - STATE(5023), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_record, + STATE(5170), 1, sym_comment, - [131464] = 3, + [136563] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8729), 1, + ACTIONS(8896), 1, aux_sym__unquoted_with_expr_token1, - STATE(5024), 1, + STATE(5171), 1, sym_comment, - [131474] = 3, + [136573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8731), 1, - anon_sym_GT2, - STATE(5025), 1, + ACTIONS(8898), 1, + anon_sym_EQ, + STATE(5172), 1, sym_comment, - [131484] = 3, + [136583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_EQ2, - STATE(5026), 1, + ACTIONS(8900), 1, + anon_sym_PIPE, + STATE(5173), 1, sym_comment, - [131494] = 3, - ACTIONS(3), 1, + [136593] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8733), 1, - anon_sym_GT2, - STATE(5027), 1, + ACTIONS(1880), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5174), 1, sym_comment, - [131504] = 3, - ACTIONS(3), 1, + [136603] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8735), 1, - anon_sym_SQUOTE2, - STATE(5028), 1, + ACTIONS(8902), 1, + aux_sym_cmd_identifier_token2, + STATE(5175), 1, sym_comment, - [131514] = 3, + [136613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8737), 1, - sym_raw_string_end, - STATE(5029), 1, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(5176), 1, sym_comment, - [131524] = 3, + [136623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_EQ_GT, - STATE(5030), 1, + ACTIONS(7424), 1, + sym__unquoted_pattern, + STATE(5177), 1, sym_comment, - [131534] = 3, - ACTIONS(3), 1, + [136633] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8741), 1, - anon_sym_BQUOTE2, - STATE(5031), 1, + ACTIONS(8904), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5178), 1, sym_comment, - [131544] = 3, + [136643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7264), 1, - sym__unquoted_pattern, - STATE(5032), 1, + ACTIONS(8906), 1, + anon_sym_in, + STATE(5179), 1, sym_comment, - [131554] = 3, + [136653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8743), 1, - anon_sym_EQ, - STATE(5033), 1, + ACTIONS(8908), 1, + sym_identifier, + STATE(5180), 1, + sym_comment, + [136663] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8910), 1, + aux_sym__str_single_quotes_token1, + STATE(5181), 1, sym_comment, - [131564] = 3, + [136673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8745), 1, + ACTIONS(8912), 1, anon_sym_RPAREN, - STATE(5034), 1, + STATE(5182), 1, sym_comment, - [131574] = 3, + [136683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8747), 1, - anon_sym_LPAREN2, - STATE(5035), 1, + ACTIONS(8914), 1, + anon_sym_RBRACE, + STATE(5183), 1, + sym_comment, + [136693] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8916), 1, + anon_sym_RBRACE, + STATE(5184), 1, + sym_comment, + [136703] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8918), 1, + aux_sym_cmd_identifier_token6, + STATE(5185), 1, sym_comment, - [131584] = 3, + [136713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8749), 1, + ACTIONS(8920), 1, anon_sym_EQ, - STATE(5036), 1, + STATE(5186), 1, sym_comment, - [131594] = 3, + [136723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8751), 1, - anon_sym_BQUOTE2, - STATE(5037), 1, + ACTIONS(8922), 1, + anon_sym_RBRACE, + STATE(5187), 1, sym_comment, - [131604] = 3, + [136733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(5038), 1, + ACTIONS(5275), 1, + anon_sym_EQ2, + STATE(5188), 1, sym_comment, - [131614] = 3, + [136743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8753), 1, + ACTIONS(8924), 1, sym_identifier, - STATE(5039), 1, + STATE(5189), 1, sym_comment, - [131624] = 3, + [136753] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8755), 1, - anon_sym_RBRACK, - STATE(5040), 1, + ACTIONS(8926), 1, + sym_param_short_flag_identifier, + STATE(5190), 1, sym_comment, - [131634] = 3, + [136763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8757), 1, + ACTIONS(8928), 1, anon_sym_RBRACK, - STATE(5041), 1, + STATE(5191), 1, sym_comment, - [131644] = 3, - ACTIONS(103), 1, + [136773] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8759), 1, - aux_sym_cmd_identifier_token6, - STATE(5042), 1, + ACTIONS(8930), 1, + sym_raw_string_end, + STATE(5192), 1, sym_comment, - [131654] = 3, + [136783] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8761), 1, - anon_sym_RBRACE, - STATE(5043), 1, + ACTIONS(8932), 1, + anon_sym_RPAREN, + STATE(5193), 1, sym_comment, - [131664] = 3, + [136793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8763), 1, - anon_sym_RBRACK, - STATE(5044), 1, + ACTIONS(8934), 1, + anon_sym_EQ_GT, + STATE(5194), 1, sym_comment, - [131674] = 3, + [136803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, - sym__table_head_separator, - STATE(5045), 1, + ACTIONS(8936), 1, + sym_attribute_identifier, + STATE(5195), 1, sym_comment, - [131684] = 3, + [136813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8765), 1, + ACTIONS(8938), 1, anon_sym_RPAREN, - STATE(5046), 1, + STATE(5196), 1, sym_comment, - [131694] = 3, + [136823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8767), 1, - anon_sym_RBRACK, - STATE(5047), 1, + ACTIONS(8940), 1, + anon_sym_LBRACE, + STATE(5197), 1, sym_comment, - [131704] = 3, + [136833] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5048), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + STATE(5198), 1, sym_comment, - [131714] = 3, + [136843] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8769), 1, - anon_sym_RPAREN, - STATE(5049), 1, + ACTIONS(2658), 1, + sym__unquoted_pattern_in_record, + STATE(5199), 1, sym_comment, - [131724] = 3, + [136853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4147), 1, - sym__unquoted_pattern, - STATE(5050), 1, + ACTIONS(8942), 1, + anon_sym_RBRACK, + STATE(5200), 1, sym_comment, - [131734] = 3, + [136863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8771), 1, - anon_sym_RBRACK, - STATE(5051), 1, + ACTIONS(289), 1, + anon_sym_RBRACE, + STATE(5201), 1, sym_comment, - [131744] = 3, + [136873] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8773), 1, - anon_sym_RPAREN, - STATE(5052), 1, + ACTIONS(8944), 1, + anon_sym_RBRACE, + STATE(5202), 1, sym_comment, - [131754] = 3, + [136883] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8775), 1, - anon_sym_RBRACE, - STATE(5053), 1, + ACTIONS(8946), 1, + anon_sym_RBRACK, + STATE(5203), 1, sym_comment, - [131764] = 3, + [136893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8777), 1, + ACTIONS(8948), 1, anon_sym_RBRACK, - STATE(5054), 1, + STATE(5204), 1, sym_comment, - [131774] = 3, + [136903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(313), 1, + ACTIONS(8950), 1, + sym_identifier, + STATE(5205), 1, + sym_comment, + [136913] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(305), 1, anon_sym_RBRACE, - STATE(5055), 1, + STATE(5206), 1, sym_comment, - [131784] = 3, + [136923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8779), 1, - anon_sym_RBRACK, - STATE(5056), 1, + ACTIONS(8952), 1, + anon_sym_RPAREN, + STATE(5207), 1, + sym_comment, + [136933] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8954), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5208), 1, + sym_comment, + [136943] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1880), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5209), 1, + sym_comment, + [136953] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8956), 1, + anon_sym_RPAREN, + STATE(5210), 1, sym_comment, - [131794] = 3, + [136963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8781), 1, + ACTIONS(8958), 1, sym_raw_string_content, - STATE(5057), 1, + STATE(5211), 1, sym_comment, - [131804] = 3, + [136973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7518), 1, + ACTIONS(7806), 1, anon_sym_LBRACK2, - STATE(5058), 1, + STATE(5212), 1, sym_comment, - [131814] = 3, + [136983] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8783), 1, + ACTIONS(8960), 1, aux_sym__str_single_quotes_token1, - STATE(5059), 1, + STATE(5213), 1, sym_comment, - [131824] = 3, + [136993] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8785), 1, + ACTIONS(8962), 1, aux_sym__str_back_ticks_token1, - STATE(5060), 1, + STATE(5214), 1, sym_comment, - [131834] = 3, + [137003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8787), 1, - anon_sym_RBRACE, - STATE(5061), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(5215), 1, sym_comment, - [131844] = 3, + [137013] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern_in_record, - STATE(5062), 1, + ACTIONS(8964), 1, + anon_sym_RBRACE, + STATE(5216), 1, + sym_comment, + [137023] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8966), 1, + sym__space, + STATE(5217), 1, sym_comment, - [131854] = 3, + [137033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8789), 1, - anon_sym_EQ, - STATE(5063), 1, + ACTIONS(8968), 1, + sym_raw_string_end, + STATE(5218), 1, sym_comment, - [131864] = 3, - ACTIONS(103), 1, + [137043] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8791), 1, - sym__space, - STATE(5064), 1, + ACTIONS(8970), 1, + anon_sym_RPAREN, + STATE(5219), 1, sym_comment, - [131874] = 3, + [137053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8793), 1, + ACTIONS(8972), 1, anon_sym_RBRACE, - STATE(5065), 1, + STATE(5220), 1, sym_comment, - [131884] = 3, + [137063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8795), 1, - anon_sym_RBRACE, - STATE(5066), 1, + ACTIONS(8974), 1, + sym_raw_string_end, + STATE(5221), 1, sym_comment, - [131894] = 3, + [137073] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8797), 1, - anon_sym_RPAREN, - STATE(5067), 1, + ACTIONS(8976), 1, + anon_sym_EQ, + STATE(5222), 1, sym_comment, - [131904] = 3, + [137083] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(5068), 1, + ACTIONS(6285), 1, + anon_sym_EQ, + STATE(5223), 1, sym_comment, - [131914] = 3, + [137093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern_in_record, - STATE(5069), 1, + ACTIONS(8978), 1, + anon_sym_DQUOTE, + STATE(5224), 1, sym_comment, - [131924] = 3, + [137103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8799), 1, + ACTIONS(8980), 1, anon_sym_SQUOTE2, - STATE(5070), 1, + STATE(5225), 1, sym_comment, - [131934] = 3, - ACTIONS(103), 1, + [137113] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8801), 1, - aux_sym_cmd_identifier_token6, - STATE(5071), 1, + ACTIONS(8982), 1, + anon_sym_BQUOTE2, + STATE(5226), 1, sym_comment, - [131944] = 3, + [137123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8803), 1, - anon_sym_BQUOTE2, - STATE(5072), 1, + ACTIONS(4211), 1, + sym__unquoted_pattern, + STATE(5227), 1, sym_comment, - [131954] = 3, + [137133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern_in_record, - STATE(5073), 1, + ACTIONS(8984), 1, + anon_sym_DQUOTE, + STATE(5228), 1, sym_comment, - [131964] = 3, + [137143] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8805), 1, - anon_sym_RBRACE, - STATE(5074), 1, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(5229), 1, sym_comment, - [131974] = 3, + [137153] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern_in_record, - STATE(5075), 1, + ACTIONS(8986), 1, + anon_sym_SQUOTE2, + STATE(5230), 1, + sym_comment, + [137163] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8988), 1, + aux_sym_cmd_identifier_token6, + STATE(5231), 1, sym_comment, - [131984] = 3, + [137173] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8807), 1, - anon_sym_DQUOTE, - STATE(5076), 1, + ACTIONS(8990), 1, + anon_sym_EQ, + STATE(5232), 1, sym_comment, - [131994] = 3, + [137183] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - STATE(5077), 1, + ACTIONS(8992), 1, + anon_sym_RBRACK, + STATE(5233), 1, sym_comment, - [132004] = 3, + [137193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8809), 1, - anon_sym_SQUOTE2, - STATE(5078), 1, + ACTIONS(8994), 1, + anon_sym_RBRACK, + STATE(5234), 1, sym_comment, - [132014] = 3, + [137203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8811), 1, + ACTIONS(8996), 1, anon_sym_BQUOTE2, - STATE(5079), 1, + STATE(5235), 1, sym_comment, - [132024] = 3, + [137213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - anon_sym_RBRACK, - STATE(5080), 1, + ACTIONS(8998), 1, + anon_sym_RPAREN, + STATE(5236), 1, + sym_comment, + [137223] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6295), 1, + anon_sym_EQ, + STATE(5237), 1, sym_comment, - [132034] = 3, + [137233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8815), 1, + ACTIONS(307), 1, anon_sym_RBRACE, - STATE(5081), 1, + STATE(5238), 1, sym_comment, - [132044] = 3, + [137243] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8817), 1, - aux_sym_cmd_identifier_token6, - STATE(5082), 1, + ACTIONS(9000), 1, + aux_sym__str_back_ticks_token1, + STATE(5239), 1, sym_comment, - [132054] = 3, + [137253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8819), 1, - anon_sym_EQ, - STATE(5083), 1, + ACTIONS(9002), 1, + anon_sym_RPAREN, + STATE(5240), 1, sym_comment, - [132064] = 3, - ACTIONS(103), 1, + [137263] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(5084), 1, + ACTIONS(9004), 1, + anon_sym_RBRACE, + STATE(5241), 1, sym_comment, - [132074] = 3, + [137273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8821), 1, - anon_sym_RBRACE, - STATE(5085), 1, + ACTIONS(9006), 1, + anon_sym_RBRACK, + STATE(5242), 1, sym_comment, - [132084] = 3, + [137283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(1983), 1, sym__unquoted_pattern_in_record, - STATE(5086), 1, + STATE(5243), 1, sym_comment, - [132094] = 3, + [137293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8823), 1, - anon_sym_LBRACE, - STATE(5087), 1, + ACTIONS(9008), 1, + anon_sym_RPAREN, + STATE(5244), 1, sym_comment, - [132104] = 3, + [137303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8825), 1, - anon_sym_EQ, - STATE(5088), 1, + ACTIONS(9010), 1, + anon_sym_DQUOTE, + STATE(5245), 1, sym_comment, - [132114] = 3, - ACTIONS(103), 1, + [137313] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8827), 1, - sym__space, - STATE(5089), 1, + ACTIONS(9012), 1, + anon_sym_SQUOTE2, + STATE(5246), 1, sym_comment, - [132124] = 3, + [137323] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8829), 1, - anon_sym_RPAREN, - STATE(5090), 1, + ACTIONS(9014), 1, + anon_sym_BQUOTE2, + STATE(5247), 1, sym_comment, - [132134] = 3, + [137333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8831), 1, + ACTIONS(9016), 1, anon_sym_RBRACK, - STATE(5091), 1, + STATE(5248), 1, sym_comment, - [132144] = 3, + [137343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8833), 1, - anon_sym_EQ, - STATE(5092), 1, + ACTIONS(9018), 1, + anon_sym_RBRACE, + STATE(5249), 1, + sym_comment, + [137353] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9020), 1, + aux_sym_cmd_identifier_token6, + STATE(5250), 1, sym_comment, - [132154] = 3, + [137363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8835), 1, + ACTIONS(9022), 1, anon_sym_EQ, - STATE(5093), 1, + STATE(5251), 1, sym_comment, - [132164] = 3, + [137373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8837), 1, + ACTIONS(9024), 1, + anon_sym_RBRACK, + STATE(5252), 1, + sym_comment, + [137383] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9026), 1, sym_raw_string_content, - STATE(5094), 1, + STATE(5253), 1, sym_comment, - [132174] = 3, + [137393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6016), 1, + ACTIONS(6206), 1, anon_sym_LBRACK2, - STATE(5095), 1, + STATE(5254), 1, sym_comment, - [132184] = 3, + [137403] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8839), 1, + ACTIONS(9028), 1, aux_sym__str_single_quotes_token1, - STATE(5096), 1, + STATE(5255), 1, sym_comment, - [132194] = 3, + [137413] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8841), 1, + ACTIONS(9030), 1, aux_sym__str_back_ticks_token1, - STATE(5097), 1, + STATE(5256), 1, sym_comment, - [132204] = 3, - ACTIONS(3), 1, + [137423] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8843), 1, - anon_sym_RBRACK, - STATE(5098), 1, + ACTIONS(9032), 1, + aux_sym_cmd_identifier_token6, + STATE(5257), 1, sym_comment, - [132214] = 3, + [137433] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8845), 1, + ACTIONS(9034), 1, sym__space, - STATE(5099), 1, + STATE(5258), 1, sym_comment, - [132224] = 3, - ACTIONS(103), 1, + [137443] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - STATE(5100), 1, + ACTIONS(6607), 1, + anon_sym_EQ, + STATE(5259), 1, sym_comment, - [132234] = 3, + [137453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8847), 1, - anon_sym_RPAREN, - STATE(5101), 1, + ACTIONS(5469), 1, + anon_sym_EQ2, + STATE(5260), 1, sym_comment, - [132244] = 3, + [137463] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8823), 1, - anon_sym_LBRACE, - STATE(5102), 1, + ACTIONS(9036), 1, + anon_sym_BQUOTE2, + STATE(5261), 1, sym_comment, - [132254] = 3, + [137473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8849), 1, - sym_identifier, - STATE(5103), 1, + ACTIONS(9038), 1, + sym_raw_string_content, + STATE(5262), 1, sym_comment, - [132264] = 3, + [137483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8851), 1, - anon_sym_GT2, - STATE(5104), 1, + ACTIONS(4595), 1, + anon_sym_LBRACK2, + STATE(5263), 1, sym_comment, - [132274] = 3, - ACTIONS(3), 1, + [137493] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8853), 1, - anon_sym_RPAREN, - STATE(5105), 1, + ACTIONS(9040), 1, + aux_sym__str_single_quotes_token1, + STATE(5264), 1, + sym_comment, + [137503] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9042), 1, + aux_sym__str_back_ticks_token1, + STATE(5265), 1, sym_comment, - [132284] = 3, + [137513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8855), 1, + ACTIONS(9044), 1, sym_raw_string_content, - STATE(5106), 1, + STATE(5266), 1, sym_comment, - [132294] = 3, + [137523] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4527), 1, + ACTIONS(5929), 1, anon_sym_LBRACK2, - STATE(5107), 1, + STATE(5267), 1, sym_comment, - [132304] = 3, + [137533] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8857), 1, + ACTIONS(9046), 1, aux_sym__str_single_quotes_token1, - STATE(5108), 1, + STATE(5268), 1, sym_comment, - [132314] = 3, + [137543] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8859), 1, + ACTIONS(9048), 1, aux_sym__str_back_ticks_token1, - STATE(5109), 1, + STATE(5269), 1, sym_comment, - [132324] = 3, + [137553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8861), 1, + ACTIONS(9050), 1, sym_raw_string_content, - STATE(5110), 1, + STATE(5270), 1, sym_comment, - [132334] = 3, + [137563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5727), 1, + ACTIONS(5952), 1, anon_sym_LBRACK2, - STATE(5111), 1, + STATE(5271), 1, sym_comment, - [132344] = 3, + [137573] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8863), 1, + ACTIONS(9052), 1, aux_sym__str_single_quotes_token1, - STATE(5112), 1, + STATE(5272), 1, sym_comment, - [132354] = 3, + [137583] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8865), 1, + ACTIONS(9054), 1, aux_sym__str_back_ticks_token1, - STATE(5113), 1, + STATE(5273), 1, sym_comment, - [132364] = 3, + [137593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8867), 1, + ACTIONS(9056), 1, sym_raw_string_content, - STATE(5114), 1, - sym_comment, - [132374] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5751), 1, - anon_sym_LBRACK2, - STATE(5115), 1, + STATE(5274), 1, sym_comment, - [132384] = 3, + [137603] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8869), 1, + ACTIONS(9058), 1, aux_sym__str_single_quotes_token1, - STATE(5116), 1, + STATE(5275), 1, sym_comment, - [132394] = 3, + [137613] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8871), 1, + ACTIONS(9060), 1, aux_sym__str_back_ticks_token1, - STATE(5117), 1, + STATE(5276), 1, sym_comment, - [132404] = 3, + [137623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8873), 1, + ACTIONS(9062), 1, sym_raw_string_content, - STATE(5118), 1, + STATE(5277), 1, sym_comment, - [132414] = 3, + [137633] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8875), 1, + ACTIONS(9064), 1, aux_sym__str_single_quotes_token1, - STATE(5119), 1, + STATE(5278), 1, sym_comment, - [132424] = 3, + [137643] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8877), 1, + ACTIONS(9066), 1, aux_sym__str_back_ticks_token1, - STATE(5120), 1, + STATE(5279), 1, sym_comment, - [132434] = 3, + [137653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8879), 1, + ACTIONS(9068), 1, sym_raw_string_content, - STATE(5121), 1, + STATE(5280), 1, sym_comment, - [132444] = 3, + [137663] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8881), 1, + ACTIONS(9070), 1, aux_sym__str_single_quotes_token1, - STATE(5122), 1, + STATE(5281), 1, sym_comment, - [132454] = 3, + [137673] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8883), 1, + ACTIONS(9072), 1, aux_sym__str_back_ticks_token1, - STATE(5123), 1, + STATE(5282), 1, sym_comment, - [132464] = 3, + [137683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8885), 1, + ACTIONS(9074), 1, sym_raw_string_content, - STATE(5124), 1, + STATE(5283), 1, sym_comment, - [132474] = 3, + [137693] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8887), 1, + ACTIONS(9076), 1, aux_sym__str_single_quotes_token1, - STATE(5125), 1, + STATE(5284), 1, sym_comment, - [132484] = 3, + [137703] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8889), 1, + ACTIONS(9078), 1, aux_sym__str_back_ticks_token1, - STATE(5126), 1, + STATE(5285), 1, sym_comment, - [132494] = 3, + [137713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8891), 1, + ACTIONS(9080), 1, sym_raw_string_content, - STATE(5127), 1, + STATE(5286), 1, sym_comment, - [132504] = 3, + [137723] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8893), 1, + ACTIONS(9082), 1, aux_sym__str_single_quotes_token1, - STATE(5128), 1, + STATE(5287), 1, sym_comment, - [132514] = 3, + [137733] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8895), 1, + ACTIONS(9084), 1, aux_sym__str_back_ticks_token1, - STATE(5129), 1, + STATE(5288), 1, sym_comment, - [132524] = 3, + [137743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8897), 1, + ACTIONS(9086), 1, sym_raw_string_content, - STATE(5130), 1, + STATE(5289), 1, sym_comment, - [132534] = 3, + [137753] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8899), 1, + ACTIONS(9088), 1, aux_sym__str_single_quotes_token1, - STATE(5131), 1, + STATE(5290), 1, sym_comment, - [132544] = 3, + [137763] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8901), 1, + ACTIONS(9090), 1, aux_sym__str_back_ticks_token1, - STATE(5132), 1, + STATE(5291), 1, sym_comment, - [132554] = 3, + [137773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8903), 1, + ACTIONS(9092), 1, sym_raw_string_content, - STATE(5133), 1, + STATE(5292), 1, sym_comment, - [132564] = 3, + [137783] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8905), 1, + ACTIONS(9094), 1, aux_sym__str_single_quotes_token1, - STATE(5134), 1, + STATE(5293), 1, sym_comment, - [132574] = 3, + [137793] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8907), 1, + ACTIONS(9096), 1, aux_sym__str_back_ticks_token1, - STATE(5135), 1, + STATE(5294), 1, sym_comment, - [132584] = 3, + [137803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8909), 1, + ACTIONS(9098), 1, sym_raw_string_content, - STATE(5136), 1, + STATE(5295), 1, sym_comment, - [132594] = 3, + [137813] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8911), 1, + ACTIONS(9100), 1, aux_sym__str_single_quotes_token1, - STATE(5137), 1, + STATE(5296), 1, sym_comment, - [132604] = 3, + [137823] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8913), 1, + ACTIONS(9102), 1, aux_sym__str_back_ticks_token1, - STATE(5138), 1, + STATE(5297), 1, sym_comment, - [132614] = 3, + [137833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8915), 1, + ACTIONS(9104), 1, sym_raw_string_content, - STATE(5139), 1, + STATE(5298), 1, sym_comment, - [132624] = 3, + [137843] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8917), 1, + ACTIONS(9106), 1, aux_sym__str_single_quotes_token1, - STATE(5140), 1, + STATE(5299), 1, sym_comment, - [132634] = 3, + [137853] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8919), 1, + ACTIONS(9108), 1, aux_sym__str_back_ticks_token1, - STATE(5141), 1, + STATE(5300), 1, sym_comment, - [132644] = 3, + [137863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8921), 1, + ACTIONS(9110), 1, sym_raw_string_content, - STATE(5142), 1, + STATE(5301), 1, sym_comment, - [132654] = 3, + [137873] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8923), 1, + ACTIONS(9112), 1, aux_sym__str_single_quotes_token1, - STATE(5143), 1, + STATE(5302), 1, sym_comment, - [132664] = 3, + [137883] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8925), 1, + ACTIONS(9114), 1, aux_sym__str_back_ticks_token1, - STATE(5144), 1, + STATE(5303), 1, sym_comment, - [132674] = 3, + [137893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8927), 1, + ACTIONS(9116), 1, sym_raw_string_content, - STATE(5145), 1, + STATE(5304), 1, sym_comment, - [132684] = 3, + [137903] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8929), 1, + ACTIONS(9118), 1, aux_sym__str_single_quotes_token1, - STATE(5146), 1, + STATE(5305), 1, sym_comment, - [132694] = 3, + [137913] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8931), 1, + ACTIONS(9120), 1, aux_sym__str_back_ticks_token1, - STATE(5147), 1, + STATE(5306), 1, sym_comment, - [132704] = 3, + [137923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8933), 1, + ACTIONS(9122), 1, sym_raw_string_content, - STATE(5148), 1, + STATE(5307), 1, sym_comment, - [132714] = 3, + [137933] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8935), 1, + ACTIONS(9124), 1, aux_sym__str_single_quotes_token1, - STATE(5149), 1, + STATE(5308), 1, sym_comment, - [132724] = 3, + [137943] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8937), 1, + ACTIONS(9126), 1, aux_sym__str_back_ticks_token1, - STATE(5150), 1, + STATE(5309), 1, sym_comment, - [132734] = 3, + [137953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8939), 1, + ACTIONS(9128), 1, sym_raw_string_content, - STATE(5151), 1, + STATE(5310), 1, sym_comment, - [132744] = 3, + [137963] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8941), 1, + ACTIONS(9130), 1, aux_sym__str_single_quotes_token1, - STATE(5152), 1, + STATE(5311), 1, sym_comment, - [132754] = 3, + [137973] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8943), 1, + ACTIONS(9132), 1, aux_sym__str_back_ticks_token1, - STATE(5153), 1, + STATE(5312), 1, sym_comment, - [132764] = 3, + [137983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8945), 1, + ACTIONS(9134), 1, sym_raw_string_content, - STATE(5154), 1, + STATE(5313), 1, sym_comment, - [132774] = 3, + [137993] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9136), 1, aux_sym__str_single_quotes_token1, - STATE(5155), 1, + STATE(5314), 1, sym_comment, - [132784] = 3, + [138003] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8949), 1, + ACTIONS(9138), 1, aux_sym__str_back_ticks_token1, - STATE(5156), 1, + STATE(5315), 1, sym_comment, - [132794] = 3, - ACTIONS(103), 1, + [138013] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8951), 1, - aux_sym_cmd_identifier_token6, - STATE(5157), 1, + ACTIONS(5160), 1, + sym__unquoted_pattern, + STATE(5316), 1, sym_comment, - [132804] = 3, + [138023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8953), 1, - sym_raw_string_end, - STATE(5158), 1, + ACTIONS(9140), 1, + anon_sym_EQ, + STATE(5317), 1, sym_comment, - [132814] = 3, + [138033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8329), 1, + ACTIONS(8390), 1, anon_sym_LPAREN2, - STATE(5159), 1, + STATE(5318), 1, + sym_comment, + [138043] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9142), 1, + anon_sym_RBRACK, + STATE(5319), 1, sym_comment, - [132824] = 3, + [138053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(9144), 1, anon_sym_RBRACE, - STATE(5160), 1, + STATE(5320), 1, sym_comment, - [132834] = 3, + [138063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8955), 1, - anon_sym_COLON2, - STATE(5161), 1, + ACTIONS(5235), 1, + anon_sym_EQ2, + STATE(5321), 1, sym_comment, - [132844] = 3, + [138073] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8957), 1, - anon_sym_LBRACE, - STATE(5162), 1, + ACTIONS(9146), 1, + anon_sym_in, + STATE(5322), 1, + sym_comment, + [138083] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9148), 1, + anon_sym_RBRACK, + STATE(5323), 1, sym_comment, - [132854] = 3, + [138093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8959), 1, + ACTIONS(9150), 1, anon_sym_RBRACE, - STATE(5163), 1, + STATE(5324), 1, sym_comment, - [132864] = 3, + [138103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8961), 1, - anon_sym_in, - STATE(5164), 1, + ACTIONS(9152), 1, + anon_sym_RPAREN, + STATE(5325), 1, sym_comment, - [132874] = 3, + [138113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8963), 1, - ts_builtin_sym_end, - STATE(5165), 1, + ACTIONS(9154), 1, + anon_sym_RBRACK, + STATE(5326), 1, sym_comment, - [132884] = 3, + [138123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8965), 1, - sym_long_flag_identifier, - STATE(5166), 1, + ACTIONS(9156), 1, + anon_sym_RPAREN, + STATE(5327), 1, sym_comment, - [132894] = 3, + [138133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8967), 1, - anon_sym_RBRACE, - STATE(5167), 1, + ACTIONS(5239), 1, + anon_sym_EQ2, + STATE(5328), 1, + sym_comment, + [138143] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9158), 1, + aux_sym_cmd_identifier_token6, + STATE(5329), 1, + sym_comment, + [138153] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9160), 1, + sym_identifier, + STATE(5330), 1, + sym_comment, + [138163] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9162), 1, + aux_sym_cmd_identifier_token6, + STATE(5331), 1, + sym_comment, + [138173] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(335), 1, + anon_sym_RPAREN2, + STATE(5332), 1, sym_comment, - [132904] = 3, + [138183] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8969), 1, + ACTIONS(9164), 1, anon_sym_RBRACE, - STATE(5168), 1, + STATE(5333), 1, sym_comment, - [132914] = 3, + [138193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, - anon_sym_LBRACE, - STATE(5169), 1, + ACTIONS(9166), 1, + anon_sym_RBRACE, + STATE(5334), 1, sym_comment, - [132924] = 3, + [138203] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8971), 1, + ACTIONS(1894), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(5170), 1, + STATE(5335), 1, + sym_comment, + [138213] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8392), 1, + aux_sym__record_key_token1, + STATE(5336), 1, sym_comment, - [132934] = 3, + [138223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8973), 1, - sym_param_short_flag_identifier, - STATE(5171), 1, + ACTIONS(9168), 1, + anon_sym_LT, + STATE(5337), 1, sym_comment, - [132944] = 3, + [138233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8975), 1, - anon_sym_RBRACE, - STATE(5172), 1, + ACTIONS(9170), 1, + anon_sym_LT, + STATE(5338), 1, sym_comment, - [132954] = 3, + [138243] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8977), 1, - anon_sym_EQ_GT, - STATE(5173), 1, + ACTIONS(1715), 1, + anon_sym_COLON2, + STATE(5339), 1, sym_comment, - [132964] = 3, + [138253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8979), 1, - anon_sym_RBRACE, - STATE(5174), 1, + ACTIONS(9172), 1, + anon_sym_RBRACK, + STATE(5340), 1, sym_comment, - [132974] = 3, + [138263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8981), 1, - anon_sym_RPAREN, - STATE(5175), 1, + ACTIONS(2684), 1, + anon_sym_COLON2, + STATE(5341), 1, sym_comment, - [132984] = 3, + [138273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8983), 1, - anon_sym_RBRACE, - STATE(5176), 1, + ACTIONS(9174), 1, + anon_sym_LPAREN2, + STATE(5342), 1, sym_comment, - [132994] = 3, + [138283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8985), 1, - anon_sym_RBRACK, - STATE(5177), 1, + ACTIONS(9176), 1, + anon_sym_GT2, + STATE(5343), 1, + sym_comment, + [138293] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9178), 1, + sym__space, + STATE(5344), 1, sym_comment, - [133004] = 3, + [138303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8987), 1, - anon_sym_RBRACE, - STATE(5178), 1, + ACTIONS(6307), 1, + anon_sym_EQ, + STATE(5345), 1, sym_comment, - [133014] = 3, + [138313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8989), 1, - anon_sym_LT, - STATE(5179), 1, + ACTIONS(9180), 1, + sym_raw_string_end, + STATE(5346), 1, sym_comment, - [133024] = 3, + [138323] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8991), 1, - anon_sym_RBRACK, - STATE(5180), 1, + ACTIONS(9182), 1, + anon_sym_GT2, + STATE(5347), 1, sym_comment, - [133034] = 3, + [138333] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9184), 1, + aux_sym_shebang_token1, + STATE(5348), 1, + sym_comment, + [138343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8993), 1, - anon_sym_DQUOTE, - STATE(5181), 1, + ACTIONS(9186), 1, + anon_sym_GT2, + STATE(5349), 1, sym_comment, - [133044] = 3, + [138353] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8995), 1, - aux_sym_cmd_identifier_token6, - STATE(5182), 1, + ACTIONS(9188), 1, + aux_sym_cmd_identifier_token2, + STATE(5350), 1, sym_comment, - [133054] = 3, + [138363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_RPAREN2, - STATE(5183), 1, + ACTIONS(9190), 1, + anon_sym_GT2, + STATE(5351), 1, sym_comment, - [133064] = 3, + [138373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8997), 1, - anon_sym_RPAREN, - STATE(5184), 1, + ACTIONS(9192), 1, + anon_sym_RBRACK, + STATE(5352), 1, sym_comment, - [133074] = 3, + [138383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8999), 1, - anon_sym_RBRACE, - STATE(5185), 1, + ACTIONS(9194), 1, + anon_sym_RBRACK, + STATE(5353), 1, sym_comment, - [133084] = 3, + [138393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(441), 1, - ts_builtin_sym_end, - STATE(5186), 1, + ACTIONS(8080), 1, + anon_sym_LBRACE, + STATE(5354), 1, sym_comment, - [133094] = 3, + [138403] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + STATE(5355), 1, + sym_comment, + [138413] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9001), 1, - anon_sym_SQUOTE2, - STATE(5187), 1, + ACTIONS(9196), 1, + anon_sym_RBRACK, + STATE(5356), 1, sym_comment, - [133104] = 3, + [138423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9003), 1, - anon_sym_BQUOTE2, - STATE(5188), 1, + ACTIONS(9198), 1, + sym_long_flag_identifier, + STATE(5357), 1, sym_comment, - [133114] = 3, + [138433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9005), 1, - anon_sym_LT, - STATE(5189), 1, + ACTIONS(9200), 1, + anon_sym_RBRACE, + STATE(5358), 1, sym_comment, - [133124] = 3, + [138443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9007), 1, + ACTIONS(9202), 1, anon_sym_RBRACE, - STATE(5190), 1, + STATE(5359), 1, + sym_comment, + [138453] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9204), 1, + anon_sym_LT, + STATE(5360), 1, + sym_comment, + [138463] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9206), 1, + anon_sym_RPAREN, + STATE(5361), 1, sym_comment, - [133134] = 3, + [138473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9009), 1, + ACTIONS(9208), 1, anon_sym_RBRACE, - STATE(5191), 1, + STATE(5362), 1, sym_comment, - [133144] = 3, + [138483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, - STATE(5192), 1, + ACTIONS(9210), 1, + anon_sym_RPAREN, + STATE(5363), 1, sym_comment, - [133154] = 3, - ACTIONS(103), 1, + [138493] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9011), 1, - aux_sym_cmd_identifier_token6, - STATE(5193), 1, + ACTIONS(9212), 1, + anon_sym_RPAREN, + STATE(5364), 1, sym_comment, - [133164] = 3, + [138503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9013), 1, - anon_sym_EQ, - STATE(5194), 1, + ACTIONS(9214), 1, + anon_sym_DQUOTE, + STATE(5365), 1, sym_comment, - [133174] = 3, + [138513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9015), 1, - anon_sym_EQ, - STATE(5195), 1, + ACTIONS(9216), 1, + anon_sym_LT, + STATE(5366), 1, + sym_comment, + [138523] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9218), 1, + anon_sym_RBRACE, + STATE(5367), 1, + sym_comment, + [138533] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9220), 1, + anon_sym_GT2, + STATE(5368), 1, + sym_comment, + [138543] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9222), 1, + sym_raw_string_end, + STATE(5369), 1, + sym_comment, + [138553] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9224), 1, + anon_sym_RBRACE, + STATE(5370), 1, sym_comment, - [133184] = 3, + [138563] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9017), 1, + ACTIONS(9226), 1, aux_sym_cmd_identifier_token6, - STATE(5196), 1, + STATE(5371), 1, sym_comment, - [133194] = 3, + [138573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9019), 1, - anon_sym_EQ, - STATE(5197), 1, + ACTIONS(5294), 1, + anon_sym_EQ2, + STATE(5372), 1, sym_comment, - [133204] = 3, + [138583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9021), 1, - anon_sym_RPAREN, - STATE(5198), 1, + ACTIONS(7079), 1, + sym__unquoted_pattern, + STATE(5373), 1, sym_comment, - [133214] = 3, + [138593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - STATE(5199), 1, + ACTIONS(351), 1, + anon_sym_RPAREN2, + STATE(5374), 1, sym_comment, - [133224] = 3, + [138603] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9023), 1, - anon_sym_EQ, - STATE(5200), 1, + ACTIONS(9228), 1, + anon_sym_RBRACE, + STATE(5375), 1, sym_comment, - [133234] = 3, + [138613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5253), 1, - anon_sym_EQ2, - STATE(5201), 1, + ACTIONS(9230), 1, + anon_sym_SQUOTE2, + STATE(5376), 1, sym_comment, - [133244] = 3, + [138623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9025), 1, - anon_sym_DQUOTE, - STATE(5202), 1, + ACTIONS(9232), 1, + anon_sym_BQUOTE2, + STATE(5377), 1, + sym_comment, + [138633] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1894), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5378), 1, sym_comment, - [133254] = 1, - ACTIONS(9027), 1, + [138643] = 1, + ACTIONS(9234), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1263)] = 0, - [SMALL_STATE(1264)] = 73, - [SMALL_STATE(1265)] = 146, - [SMALL_STATE(1266)] = 219, - [SMALL_STATE(1267)] = 292, - [SMALL_STATE(1268)] = 391, - [SMALL_STATE(1269)] = 468, - [SMALL_STATE(1270)] = 541, - [SMALL_STATE(1271)] = 614, - [SMALL_STATE(1272)] = 687, - [SMALL_STATE(1273)] = 760, - [SMALL_STATE(1274)] = 833, - [SMALL_STATE(1275)] = 906, - [SMALL_STATE(1276)] = 1045, - [SMALL_STATE(1277)] = 1128, - [SMALL_STATE(1278)] = 1201, - [SMALL_STATE(1279)] = 1302, - [SMALL_STATE(1280)] = 1375, - [SMALL_STATE(1281)] = 1448, - [SMALL_STATE(1282)] = 1521, - [SMALL_STATE(1283)] = 1594, - [SMALL_STATE(1284)] = 1685, - [SMALL_STATE(1285)] = 1758, - [SMALL_STATE(1286)] = 1831, - [SMALL_STATE(1287)] = 1926, - [SMALL_STATE(1288)] = 2069, - [SMALL_STATE(1289)] = 2144, - [SMALL_STATE(1290)] = 2217, - [SMALL_STATE(1291)] = 2290, - [SMALL_STATE(1292)] = 2433, - [SMALL_STATE(1293)] = 2506, - [SMALL_STATE(1294)] = 2579, - [SMALL_STATE(1295)] = 2652, - [SMALL_STATE(1296)] = 2725, - [SMALL_STATE(1297)] = 2798, - [SMALL_STATE(1298)] = 2871, - [SMALL_STATE(1299)] = 2944, - [SMALL_STATE(1300)] = 3017, - [SMALL_STATE(1301)] = 3090, - [SMALL_STATE(1302)] = 3163, - [SMALL_STATE(1303)] = 3236, - [SMALL_STATE(1304)] = 3309, - [SMALL_STATE(1305)] = 3382, - [SMALL_STATE(1306)] = 3455, - [SMALL_STATE(1307)] = 3528, - [SMALL_STATE(1308)] = 3601, - [SMALL_STATE(1309)] = 3704, - [SMALL_STATE(1310)] = 3777, - [SMALL_STATE(1311)] = 3850, - [SMALL_STATE(1312)] = 3923, - [SMALL_STATE(1313)] = 3996, - [SMALL_STATE(1314)] = 4069, - [SMALL_STATE(1315)] = 4166, - [SMALL_STATE(1316)] = 4259, - [SMALL_STATE(1317)] = 4332, - [SMALL_STATE(1318)] = 4405, - [SMALL_STATE(1319)] = 4478, - [SMALL_STATE(1320)] = 4551, - [SMALL_STATE(1321)] = 4624, - [SMALL_STATE(1322)] = 4697, - [SMALL_STATE(1323)] = 4770, - [SMALL_STATE(1324)] = 4859, - [SMALL_STATE(1325)] = 4932, - [SMALL_STATE(1326)] = 5005, - [SMALL_STATE(1327)] = 5078, - [SMALL_STATE(1328)] = 5151, - [SMALL_STATE(1329)] = 5290, - [SMALL_STATE(1330)] = 5433, - [SMALL_STATE(1331)] = 5518, - [SMALL_STATE(1332)] = 5661, - [SMALL_STATE(1333)] = 5734, - [SMALL_STATE(1334)] = 5807, - [SMALL_STATE(1335)] = 5880, - [SMALL_STATE(1336)] = 5959, - [SMALL_STATE(1337)] = 6032, - [SMALL_STATE(1338)] = 6105, - [SMALL_STATE(1339)] = 6244, - [SMALL_STATE(1340)] = 6317, - [SMALL_STATE(1341)] = 6390, - [SMALL_STATE(1342)] = 6463, - [SMALL_STATE(1343)] = 6536, - [SMALL_STATE(1344)] = 6609, - [SMALL_STATE(1345)] = 6682, - [SMALL_STATE(1346)] = 6755, - [SMALL_STATE(1347)] = 6895, - [SMALL_STATE(1348)] = 7043, - [SMALL_STATE(1349)] = 7180, - [SMALL_STATE(1350)] = 7317, - [SMALL_STATE(1351)] = 7394, - [SMALL_STATE(1352)] = 7531, - [SMALL_STATE(1353)] = 7668, - [SMALL_STATE(1354)] = 7805, - [SMALL_STATE(1355)] = 7882, - [SMALL_STATE(1356)] = 7955, - [SMALL_STATE(1357)] = 8032, - [SMALL_STATE(1358)] = 8105, - [SMALL_STATE(1359)] = 8179, - [SMALL_STATE(1360)] = 8249, - [SMALL_STATE(1361)] = 8391, - [SMALL_STATE(1362)] = 8531, - [SMALL_STATE(1363)] = 8665, - [SMALL_STATE(1364)] = 8741, - [SMALL_STATE(1365)] = 8819, - [SMALL_STATE(1366)] = 8953, - [SMALL_STATE(1367)] = 9023, - [SMALL_STATE(1368)] = 9099, - [SMALL_STATE(1369)] = 9175, - [SMALL_STATE(1370)] = 9247, - [SMALL_STATE(1371)] = 9319, - [SMALL_STATE(1372)] = 9395, - [SMALL_STATE(1373)] = 9537, - [SMALL_STATE(1374)] = 9671, - [SMALL_STATE(1375)] = 9805, - [SMALL_STATE(1376)] = 9939, - [SMALL_STATE(1377)] = 10008, - [SMALL_STATE(1378)] = 10077, - [SMALL_STATE(1379)] = 10146, - [SMALL_STATE(1380)] = 10231, - [SMALL_STATE(1381)] = 10300, - [SMALL_STATE(1382)] = 10373, - [SMALL_STATE(1383)] = 10446, - [SMALL_STATE(1384)] = 10521, - [SMALL_STATE(1385)] = 10590, - [SMALL_STATE(1386)] = 10659, - [SMALL_STATE(1387)] = 10743, - [SMALL_STATE(1388)] = 10825, - [SMALL_STATE(1389)] = 10907, - [SMALL_STATE(1390)] = 10975, - [SMALL_STATE(1391)] = 11061, - [SMALL_STATE(1392)] = 11129, - [SMALL_STATE(1393)] = 11215, - [SMALL_STATE(1394)] = 11340, - [SMALL_STATE(1395)] = 11473, - [SMALL_STATE(1396)] = 11544, - [SMALL_STATE(1397)] = 11625, - [SMALL_STATE(1398)] = 11706, - [SMALL_STATE(1399)] = 11779, - [SMALL_STATE(1400)] = 11904, - [SMALL_STATE(1401)] = 11975, - [SMALL_STATE(1402)] = 12046, - [SMALL_STATE(1403)] = 12116, - [SMALL_STATE(1404)] = 12184, - [SMALL_STATE(1405)] = 12252, - [SMALL_STATE(1406)] = 12320, - [SMALL_STATE(1407)] = 12400, - [SMALL_STATE(1408)] = 12470, - [SMALL_STATE(1409)] = 12540, - [SMALL_STATE(1410)] = 12606, - [SMALL_STATE(1411)] = 12674, - [SMALL_STATE(1412)] = 12739, - [SMALL_STATE(1413)] = 12864, - [SMALL_STATE(1414)] = 12931, - [SMALL_STATE(1415)] = 13000, - [SMALL_STATE(1416)] = 13079, - [SMALL_STATE(1417)] = 13144, - [SMALL_STATE(1418)] = 13273, - [SMALL_STATE(1419)] = 13402, - [SMALL_STATE(1420)] = 13471, - [SMALL_STATE(1421)] = 13600, - [SMALL_STATE(1422)] = 13665, - [SMALL_STATE(1423)] = 13732, - [SMALL_STATE(1424)] = 13797, - [SMALL_STATE(1425)] = 13926, - [SMALL_STATE(1426)] = 13991, - [SMALL_STATE(1427)] = 14059, - [SMALL_STATE(1428)] = 14127, - [SMALL_STATE(1429)] = 14191, - [SMALL_STATE(1430)] = 14257, - [SMALL_STATE(1431)] = 14321, - [SMALL_STATE(1432)] = 14387, - [SMALL_STATE(1433)] = 14451, - [SMALL_STATE(1434)] = 14514, - [SMALL_STATE(1435)] = 14585, - [SMALL_STATE(1436)] = 14648, - [SMALL_STATE(1437)] = 14719, - [SMALL_STATE(1438)] = 14782, - [SMALL_STATE(1439)] = 14847, - [SMALL_STATE(1440)] = 14912, - [SMALL_STATE(1441)] = 14978, - [SMALL_STATE(1442)] = 15048, - [SMALL_STATE(1443)] = 15114, - [SMALL_STATE(1444)] = 15184, - [SMALL_STATE(1445)] = 15246, - [SMALL_STATE(1446)] = 15344, - [SMALL_STATE(1447)] = 15416, - [SMALL_STATE(1448)] = 15514, - [SMALL_STATE(1449)] = 15576, - [SMALL_STATE(1450)] = 15638, - [SMALL_STATE(1451)] = 15709, - [SMALL_STATE(1452)] = 15772, - [SMALL_STATE(1453)] = 15835, - [SMALL_STATE(1454)] = 15928, - [SMALL_STATE(1455)] = 16021, - [SMALL_STATE(1456)] = 16118, - [SMALL_STATE(1457)] = 16183, - [SMALL_STATE(1458)] = 16276, - [SMALL_STATE(1459)] = 16373, - [SMALL_STATE(1460)] = 16438, - [SMALL_STATE(1461)] = 16502, - [SMALL_STATE(1462)] = 16562, - [SMALL_STATE(1463)] = 16626, - [SMALL_STATE(1464)] = 16686, - [SMALL_STATE(1465)] = 16752, - [SMALL_STATE(1466)] = 16816, - [SMALL_STATE(1467)] = 16882, - [SMALL_STATE(1468)] = 16948, - [SMALL_STATE(1469)] = 17014, - [SMALL_STATE(1470)] = 17080, - [SMALL_STATE(1471)] = 17144, - [SMALL_STATE(1472)] = 17208, - [SMALL_STATE(1473)] = 17268, - [SMALL_STATE(1474)] = 17330, - [SMALL_STATE(1475)] = 17396, - [SMALL_STATE(1476)] = 17462, - [SMALL_STATE(1477)] = 17524, - [SMALL_STATE(1478)] = 17584, - [SMALL_STATE(1479)] = 17650, - [SMALL_STATE(1480)] = 17714, - [SMALL_STATE(1481)] = 17780, - [SMALL_STATE(1482)] = 17842, - [SMALL_STATE(1483)] = 17906, - [SMALL_STATE(1484)] = 17972, - [SMALL_STATE(1485)] = 18038, - [SMALL_STATE(1486)] = 18104, - [SMALL_STATE(1487)] = 18168, - [SMALL_STATE(1488)] = 18232, - [SMALL_STATE(1489)] = 18293, - [SMALL_STATE(1490)] = 18352, - [SMALL_STATE(1491)] = 18415, - [SMALL_STATE(1492)] = 18478, - [SMALL_STATE(1493)] = 18537, - [SMALL_STATE(1494)] = 18598, - [SMALL_STATE(1495)] = 18661, - [SMALL_STATE(1496)] = 18724, - [SMALL_STATE(1497)] = 18787, - [SMALL_STATE(1498)] = 18850, - [SMALL_STATE(1499)] = 18911, - [SMALL_STATE(1500)] = 18970, - [SMALL_STATE(1501)] = 19029, - [SMALL_STATE(1502)] = 19092, - [SMALL_STATE(1503)] = 19155, - [SMALL_STATE(1504)] = 19216, - [SMALL_STATE(1505)] = 19279, - [SMALL_STATE(1506)] = 19342, - [SMALL_STATE(1507)] = 19405, - [SMALL_STATE(1508)] = 19464, - [SMALL_STATE(1509)] = 19525, - [SMALL_STATE(1510)] = 19605, - [SMALL_STATE(1511)] = 19665, - [SMALL_STATE(1512)] = 19725, - [SMALL_STATE(1513)] = 19785, - [SMALL_STATE(1514)] = 19865, - [SMALL_STATE(1515)] = 19945, - [SMALL_STATE(1516)] = 20003, - [SMALL_STATE(1517)] = 20083, - [SMALL_STATE(1518)] = 20163, - [SMALL_STATE(1519)] = 20223, - [SMALL_STATE(1520)] = 20297, - [SMALL_STATE(1521)] = 20357, - [SMALL_STATE(1522)] = 20437, - [SMALL_STATE(1523)] = 20517, - [SMALL_STATE(1524)] = 20597, - [SMALL_STATE(1525)] = 20677, - [SMALL_STATE(1526)] = 20767, - [SMALL_STATE(1527)] = 20847, - [SMALL_STATE(1528)] = 20927, - [SMALL_STATE(1529)] = 21007, - [SMALL_STATE(1530)] = 21087, - [SMALL_STATE(1531)] = 21173, - [SMALL_STATE(1532)] = 21253, - [SMALL_STATE(1533)] = 21333, - [SMALL_STATE(1534)] = 21413, - [SMALL_STATE(1535)] = 21493, - [SMALL_STATE(1536)] = 21573, - [SMALL_STATE(1537)] = 21653, - [SMALL_STATE(1538)] = 21745, - [SMALL_STATE(1539)] = 21825, - [SMALL_STATE(1540)] = 21905, - [SMALL_STATE(1541)] = 21985, - [SMALL_STATE(1542)] = 22065, - [SMALL_STATE(1543)] = 22145, - [SMALL_STATE(1544)] = 22225, - [SMALL_STATE(1545)] = 22305, - [SMALL_STATE(1546)] = 22385, - [SMALL_STATE(1547)] = 22465, - [SMALL_STATE(1548)] = 22545, - [SMALL_STATE(1549)] = 22625, - [SMALL_STATE(1550)] = 22705, - [SMALL_STATE(1551)] = 22791, - [SMALL_STATE(1552)] = 22871, - [SMALL_STATE(1553)] = 22951, - [SMALL_STATE(1554)] = 23031, - [SMALL_STATE(1555)] = 23111, - [SMALL_STATE(1556)] = 23191, - [SMALL_STATE(1557)] = 23271, - [SMALL_STATE(1558)] = 23351, - [SMALL_STATE(1559)] = 23431, - [SMALL_STATE(1560)] = 23511, - [SMALL_STATE(1561)] = 23591, - [SMALL_STATE(1562)] = 23671, - [SMALL_STATE(1563)] = 23751, - [SMALL_STATE(1564)] = 23843, - [SMALL_STATE(1565)] = 23919, - [SMALL_STATE(1566)] = 23993, - [SMALL_STATE(1567)] = 24061, - [SMALL_STATE(1568)] = 24125, - [SMALL_STATE(1569)] = 24211, - [SMALL_STATE(1570)] = 24299, - [SMALL_STATE(1571)] = 24389, - [SMALL_STATE(1572)] = 24467, - [SMALL_STATE(1573)] = 24539, - [SMALL_STATE(1574)] = 24619, - [SMALL_STATE(1575)] = 24701, - [SMALL_STATE(1576)] = 24785, - [SMALL_STATE(1577)] = 24865, - [SMALL_STATE(1578)] = 24951, - [SMALL_STATE(1579)] = 25027, - [SMALL_STATE(1580)] = 25101, - [SMALL_STATE(1581)] = 25175, - [SMALL_STATE(1582)] = 25247, - [SMALL_STATE(1583)] = 25315, - [SMALL_STATE(1584)] = 25381, - [SMALL_STATE(1585)] = 25445, - [SMALL_STATE(1586)] = 25507, - [SMALL_STATE(1587)] = 25593, - [SMALL_STATE(1588)] = 25677, - [SMALL_STATE(1589)] = 25765, - [SMALL_STATE(1590)] = 25855, - [SMALL_STATE(1591)] = 25943, - [SMALL_STATE(1592)] = 26021, - [SMALL_STATE(1593)] = 26097, - [SMALL_STATE(1594)] = 26169, - [SMALL_STATE(1595)] = 26239, - [SMALL_STATE(1596)] = 26319, - [SMALL_STATE(1597)] = 26397, - [SMALL_STATE(1598)] = 26479, - [SMALL_STATE(1599)] = 26559, - [SMALL_STATE(1600)] = 26643, - [SMALL_STATE(1601)] = 26725, - [SMALL_STATE(1602)] = 26801, - [SMALL_STATE(1603)] = 26875, - [SMALL_STATE(1604)] = 26943, - [SMALL_STATE(1605)] = 27023, - [SMALL_STATE(1606)] = 27087, - [SMALL_STATE(1607)] = 27173, - [SMALL_STATE(1608)] = 27261, - [SMALL_STATE(1609)] = 27351, - [SMALL_STATE(1610)] = 27429, - [SMALL_STATE(1611)] = 27501, - [SMALL_STATE(1612)] = 27581, - [SMALL_STATE(1613)] = 27663, - [SMALL_STATE(1614)] = 27747, - [SMALL_STATE(1615)] = 27821, - [SMALL_STATE(1616)] = 27893, - [SMALL_STATE(1617)] = 27959, - [SMALL_STATE(1618)] = 28021, - [SMALL_STATE(1619)] = 28105, - [SMALL_STATE(1620)] = 28191, - [SMALL_STATE(1621)] = 28279, - [SMALL_STATE(1622)] = 28355, - [SMALL_STATE(1623)] = 28425, - [SMALL_STATE(1624)] = 28503, - [SMALL_STATE(1625)] = 28583, - [SMALL_STATE(1626)] = 28665, - [SMALL_STATE(1627)] = 28741, - [SMALL_STATE(1628)] = 28815, - [SMALL_STATE(1629)] = 28889, - [SMALL_STATE(1630)] = 28961, - [SMALL_STATE(1631)] = 29029, - [SMALL_STATE(1632)] = 29095, - [SMALL_STATE(1633)] = 29159, - [SMALL_STATE(1634)] = 29221, - [SMALL_STATE(1635)] = 29307, - [SMALL_STATE(1636)] = 29391, - [SMALL_STATE(1637)] = 29479, - [SMALL_STATE(1638)] = 29565, - [SMALL_STATE(1639)] = 29655, - [SMALL_STATE(1640)] = 29743, - [SMALL_STATE(1641)] = 29821, - [SMALL_STATE(1642)] = 29897, - [SMALL_STATE(1643)] = 29969, - [SMALL_STATE(1644)] = 30039, - [SMALL_STATE(1645)] = 30119, - [SMALL_STATE(1646)] = 30197, - [SMALL_STATE(1647)] = 30279, - [SMALL_STATE(1648)] = 30359, - [SMALL_STATE(1649)] = 30443, - [SMALL_STATE(1650)] = 30525, - [SMALL_STATE(1651)] = 30599, - [SMALL_STATE(1652)] = 30671, - [SMALL_STATE(1653)] = 30737, - [SMALL_STATE(1654)] = 30799, - [SMALL_STATE(1655)] = 30883, - [SMALL_STATE(1656)] = 30969, - [SMALL_STATE(1657)] = 31057, - [SMALL_STATE(1658)] = 31133, - [SMALL_STATE(1659)] = 31203, - [SMALL_STATE(1660)] = 31281, - [SMALL_STATE(1661)] = 31361, - [SMALL_STATE(1662)] = 31443, - [SMALL_STATE(1663)] = 31523, - [SMALL_STATE(1664)] = 31603, - [SMALL_STATE(1665)] = 31683, - [SMALL_STATE(1666)] = 31755, - [SMALL_STATE(1667)] = 31825, - [SMALL_STATE(1668)] = 31889, - [SMALL_STATE(1669)] = 31949, - [SMALL_STATE(1670)] = 32031, - [SMALL_STATE(1671)] = 32115, - [SMALL_STATE(1672)] = 32201, - [SMALL_STATE(1673)] = 32275, - [SMALL_STATE(1674)] = 32343, - [SMALL_STATE(1675)] = 32419, - [SMALL_STATE(1676)] = 32497, - [SMALL_STATE(1677)] = 32577, - [SMALL_STATE(1678)] = 32663, - [SMALL_STATE(1679)] = 32749, - [SMALL_STATE(1680)] = 32820, - [SMALL_STATE(1681)] = 32907, - [SMALL_STATE(1682)] = 32978, - [SMALL_STATE(1683)] = 33047, - [SMALL_STATE(1684)] = 33110, - [SMALL_STATE(1685)] = 33169, - [SMALL_STATE(1686)] = 33250, - [SMALL_STATE(1687)] = 33333, - [SMALL_STATE(1688)] = 33418, - [SMALL_STATE(1689)] = 33495, - [SMALL_STATE(1690)] = 33568, - [SMALL_STATE(1691)] = 33635, - [SMALL_STATE(1692)] = 33710, - [SMALL_STATE(1693)] = 33787, - [SMALL_STATE(1694)] = 33866, - [SMALL_STATE(1695)] = 33953, - [SMALL_STATE(1696)] = 34026, - [SMALL_STATE(1697)] = 34085, - [SMALL_STATE(1698)] = 34156, - [SMALL_STATE(1699)] = 34242, - [SMALL_STATE(1700)] = 34328, - [SMALL_STATE(1701)] = 34414, - [SMALL_STATE(1702)] = 34500, - [SMALL_STATE(1703)] = 34586, - [SMALL_STATE(1704)] = 34672, - [SMALL_STATE(1705)] = 34732, - [SMALL_STATE(1706)] = 34802, - [SMALL_STATE(1707)] = 34862, - [SMALL_STATE(1708)] = 34932, - [SMALL_STATE(1709)] = 35002, - [SMALL_STATE(1710)] = 35088, - [SMALL_STATE(1711)] = 35174, - [SMALL_STATE(1712)] = 35244, - [SMALL_STATE(1713)] = 35330, - [SMALL_STATE(1714)] = 35416, - [SMALL_STATE(1715)] = 35502, - [SMALL_STATE(1716)] = 35569, - [SMALL_STATE(1717)] = 35650, - [SMALL_STATE(1718)] = 35717, - [SMALL_STATE(1719)] = 35786, - [SMALL_STATE(1720)] = 35857, - [SMALL_STATE(1721)] = 35916, - [SMALL_STATE(1722)] = 35997, - [SMALL_STATE(1723)] = 36054, - [SMALL_STATE(1724)] = 36121, - [SMALL_STATE(1725)] = 36202, - [SMALL_STATE(1726)] = 36259, - [SMALL_STATE(1727)] = 36330, - [SMALL_STATE(1728)] = 36393, - [SMALL_STATE(1729)] = 36460, - [SMALL_STATE(1730)] = 36527, - [SMALL_STATE(1731)] = 36594, - [SMALL_STATE(1732)] = 36665, - [SMALL_STATE(1733)] = 36736, - [SMALL_STATE(1734)] = 36797, - [SMALL_STATE(1735)] = 36860, - [SMALL_STATE(1736)] = 36923, - [SMALL_STATE(1737)] = 36982, - [SMALL_STATE(1738)] = 37050, - [SMALL_STATE(1739)] = 37112, - [SMALL_STATE(1740)] = 37180, - [SMALL_STATE(1741)] = 37258, - [SMALL_STATE(1742)] = 37320, - [SMALL_STATE(1743)] = 37380, - [SMALL_STATE(1744)] = 37438, - [SMALL_STATE(1745)] = 37496, - [SMALL_STATE(1746)] = 37564, - [SMALL_STATE(1747)] = 37632, - [SMALL_STATE(1748)] = 37690, - [SMALL_STATE(1749)] = 37748, - [SMALL_STATE(1750)] = 37802, - [SMALL_STATE(1751)] = 37856, - [SMALL_STATE(1752)] = 37910, - [SMALL_STATE(1753)] = 37964, - [SMALL_STATE(1754)] = 38042, - [SMALL_STATE(1755)] = 38096, - [SMALL_STATE(1756)] = 38174, - [SMALL_STATE(1757)] = 38252, - [SMALL_STATE(1758)] = 38306, - [SMALL_STATE(1759)] = 38374, - [SMALL_STATE(1760)] = 38428, - [SMALL_STATE(1761)] = 38482, - [SMALL_STATE(1762)] = 38538, - [SMALL_STATE(1763)] = 38594, - [SMALL_STATE(1764)] = 38674, - [SMALL_STATE(1765)] = 38752, - [SMALL_STATE(1766)] = 38810, - [SMALL_STATE(1767)] = 38888, - [SMALL_STATE(1768)] = 38966, - [SMALL_STATE(1769)] = 39044, - [SMALL_STATE(1770)] = 39112, - [SMALL_STATE(1771)] = 39192, - [SMALL_STATE(1772)] = 39270, - [SMALL_STATE(1773)] = 39330, - [SMALL_STATE(1774)] = 39408, - [SMALL_STATE(1775)] = 39470, - [SMALL_STATE(1776)] = 39548, - [SMALL_STATE(1777)] = 39602, - [SMALL_STATE(1778)] = 39655, - [SMALL_STATE(1779)] = 39732, - [SMALL_STATE(1780)] = 39809, - [SMALL_STATE(1781)] = 39862, - [SMALL_STATE(1782)] = 39913, - [SMALL_STATE(1783)] = 39964, - [SMALL_STATE(1784)] = 40029, - [SMALL_STATE(1785)] = 40092, - [SMALL_STATE(1786)] = 40169, - [SMALL_STATE(1787)] = 40222, - [SMALL_STATE(1788)] = 40275, - [SMALL_STATE(1789)] = 40340, - [SMALL_STATE(1790)] = 40405, - [SMALL_STATE(1791)] = 40482, - [SMALL_STATE(1792)] = 40547, - [SMALL_STATE(1793)] = 40598, - [SMALL_STATE(1794)] = 40649, - [SMALL_STATE(1795)] = 40714, - [SMALL_STATE(1796)] = 40769, - [SMALL_STATE(1797)] = 40822, - [SMALL_STATE(1798)] = 40887, - [SMALL_STATE(1799)] = 40940, - [SMALL_STATE(1800)] = 41017, - [SMALL_STATE(1801)] = 41070, - [SMALL_STATE(1802)] = 41125, - [SMALL_STATE(1803)] = 41178, - [SMALL_STATE(1804)] = 41233, - [SMALL_STATE(1805)] = 41290, - [SMALL_STATE(1806)] = 41347, - [SMALL_STATE(1807)] = 41400, - [SMALL_STATE(1808)] = 41451, - [SMALL_STATE(1809)] = 41502, - [SMALL_STATE(1810)] = 41579, - [SMALL_STATE(1811)] = 41644, - [SMALL_STATE(1812)] = 41709, - [SMALL_STATE(1813)] = 41768, - [SMALL_STATE(1814)] = 41825, - [SMALL_STATE(1815)] = 41890, - [SMALL_STATE(1816)] = 41955, - [SMALL_STATE(1817)] = 42010, - [SMALL_STATE(1818)] = 42087, - [SMALL_STATE(1819)] = 42164, - [SMALL_STATE(1820)] = 42241, - [SMALL_STATE(1821)] = 42318, - [SMALL_STATE(1822)] = 42395, - [SMALL_STATE(1823)] = 42472, - [SMALL_STATE(1824)] = 42527, - [SMALL_STATE(1825)] = 42582, - [SMALL_STATE(1826)] = 42634, - [SMALL_STATE(1827)] = 42694, - [SMALL_STATE(1828)] = 42754, - [SMALL_STATE(1829)] = 42816, - [SMALL_STATE(1830)] = 42868, - [SMALL_STATE(1831)] = 42928, - [SMALL_STATE(1832)] = 42990, - [SMALL_STATE(1833)] = 43044, - [SMALL_STATE(1834)] = 43096, - [SMALL_STATE(1835)] = 43148, - [SMALL_STATE(1836)] = 43200, - [SMALL_STATE(1837)] = 43254, - [SMALL_STATE(1838)] = 43308, - [SMALL_STATE(1839)] = 43368, - [SMALL_STATE(1840)] = 43422, - [SMALL_STATE(1841)] = 43474, - [SMALL_STATE(1842)] = 43536, - [SMALL_STATE(1843)] = 43588, - [SMALL_STATE(1844)] = 43640, - [SMALL_STATE(1845)] = 43692, - [SMALL_STATE(1846)] = 43743, - [SMALL_STATE(1847)] = 43802, - [SMALL_STATE(1848)] = 43853, - [SMALL_STATE(1849)] = 43904, - [SMALL_STATE(1850)] = 43955, - [SMALL_STATE(1851)] = 44014, - [SMALL_STATE(1852)] = 44073, - [SMALL_STATE(1853)] = 44124, - [SMALL_STATE(1854)] = 44223, - [SMALL_STATE(1855)] = 44274, - [SMALL_STATE(1856)] = 44333, - [SMALL_STATE(1857)] = 44384, - [SMALL_STATE(1858)] = 44435, - [SMALL_STATE(1859)] = 44486, - [SMALL_STATE(1860)] = 44541, - [SMALL_STATE(1861)] = 44592, - [SMALL_STATE(1862)] = 44643, - [SMALL_STATE(1863)] = 44694, - [SMALL_STATE(1864)] = 44753, - [SMALL_STATE(1865)] = 44808, - [SMALL_STATE(1866)] = 44859, - [SMALL_STATE(1867)] = 44910, - [SMALL_STATE(1868)] = 44961, - [SMALL_STATE(1869)] = 45012, - [SMALL_STATE(1870)] = 45063, - [SMALL_STATE(1871)] = 45114, - [SMALL_STATE(1872)] = 45165, - [SMALL_STATE(1873)] = 45216, - [SMALL_STATE(1874)] = 45267, - [SMALL_STATE(1875)] = 45318, - [SMALL_STATE(1876)] = 45377, - [SMALL_STATE(1877)] = 45428, - [SMALL_STATE(1878)] = 45487, - [SMALL_STATE(1879)] = 45542, - [SMALL_STATE(1880)] = 45597, - [SMALL_STATE(1881)] = 45648, - [SMALL_STATE(1882)] = 45698, - [SMALL_STATE(1883)] = 45754, - [SMALL_STATE(1884)] = 45812, - [SMALL_STATE(1885)] = 45862, - [SMALL_STATE(1886)] = 45912, - [SMALL_STATE(1887)] = 45962, - [SMALL_STATE(1888)] = 46012, - [SMALL_STATE(1889)] = 46070, - [SMALL_STATE(1890)] = 46120, - [SMALL_STATE(1891)] = 46170, - [SMALL_STATE(1892)] = 46220, - [SMALL_STATE(1893)] = 46274, - [SMALL_STATE(1894)] = 46328, - [SMALL_STATE(1895)] = 46386, - [SMALL_STATE(1896)] = 46440, - [SMALL_STATE(1897)] = 46490, - [SMALL_STATE(1898)] = 46586, - [SMALL_STATE(1899)] = 46636, - [SMALL_STATE(1900)] = 46688, - [SMALL_STATE(1901)] = 46784, - [SMALL_STATE(1902)] = 46842, - [SMALL_STATE(1903)] = 46896, - [SMALL_STATE(1904)] = 46946, - [SMALL_STATE(1905)] = 46998, - [SMALL_STATE(1906)] = 47050, - [SMALL_STATE(1907)] = 47100, - [SMALL_STATE(1908)] = 47150, - [SMALL_STATE(1909)] = 47200, - [SMALL_STATE(1910)] = 47258, - [SMALL_STATE(1911)] = 47308, - [SMALL_STATE(1912)] = 47366, - [SMALL_STATE(1913)] = 47418, - [SMALL_STATE(1914)] = 47468, - [SMALL_STATE(1915)] = 47518, - [SMALL_STATE(1916)] = 47568, - [SMALL_STATE(1917)] = 47626, - [SMALL_STATE(1918)] = 47677, - [SMALL_STATE(1919)] = 47730, - [SMALL_STATE(1920)] = 47783, - [SMALL_STATE(1921)] = 47832, - [SMALL_STATE(1922)] = 47885, - [SMALL_STATE(1923)] = 47938, - [SMALL_STATE(1924)] = 47991, - [SMALL_STATE(1925)] = 48044, - [SMALL_STATE(1926)] = 48097, - [SMALL_STATE(1927)] = 48150, - [SMALL_STATE(1928)] = 48203, - [SMALL_STATE(1929)] = 48256, - [SMALL_STATE(1930)] = 48307, - [SMALL_STATE(1931)] = 48360, - [SMALL_STATE(1932)] = 48413, - [SMALL_STATE(1933)] = 48466, - [SMALL_STATE(1934)] = 48519, - [SMALL_STATE(1935)] = 48568, - [SMALL_STATE(1936)] = 48621, - [SMALL_STATE(1937)] = 48716, - [SMALL_STATE(1938)] = 48773, - [SMALL_STATE(1939)] = 48826, - [SMALL_STATE(1940)] = 48877, - [SMALL_STATE(1941)] = 48932, - [SMALL_STATE(1942)] = 48981, - [SMALL_STATE(1943)] = 49032, - [SMALL_STATE(1944)] = 49127, - [SMALL_STATE(1945)] = 49176, - [SMALL_STATE(1946)] = 49225, - [SMALL_STATE(1947)] = 49274, - [SMALL_STATE(1948)] = 49329, - [SMALL_STATE(1949)] = 49382, - [SMALL_STATE(1950)] = 49431, - [SMALL_STATE(1951)] = 49480, - [SMALL_STATE(1952)] = 49529, - [SMALL_STATE(1953)] = 49582, - [SMALL_STATE(1954)] = 49631, - [SMALL_STATE(1955)] = 49680, - [SMALL_STATE(1956)] = 49735, - [SMALL_STATE(1957)] = 49788, - [SMALL_STATE(1958)] = 49841, - [SMALL_STATE(1959)] = 49890, - [SMALL_STATE(1960)] = 49943, - [SMALL_STATE(1961)] = 49996, - [SMALL_STATE(1962)] = 50049, - [SMALL_STATE(1963)] = 50102, - [SMALL_STATE(1964)] = 50155, - [SMALL_STATE(1965)] = 50204, - [SMALL_STATE(1966)] = 50253, - [SMALL_STATE(1967)] = 50306, - [SMALL_STATE(1968)] = 50358, - [SMALL_STATE(1969)] = 50412, - [SMALL_STATE(1970)] = 50464, - [SMALL_STATE(1971)] = 50512, - [SMALL_STATE(1972)] = 50560, - [SMALL_STATE(1973)] = 50608, - [SMALL_STATE(1974)] = 50656, - [SMALL_STATE(1975)] = 50708, - [SMALL_STATE(1976)] = 50758, - [SMALL_STATE(1977)] = 50812, - [SMALL_STATE(1978)] = 50868, - [SMALL_STATE(1979)] = 50920, - [SMALL_STATE(1980)] = 50970, - [SMALL_STATE(1981)] = 51022, - [SMALL_STATE(1982)] = 51078, - [SMALL_STATE(1983)] = 51144, - [SMALL_STATE(1984)] = 51208, - [SMALL_STATE(1985)] = 51266, - [SMALL_STATE(1986)] = 51320, - [SMALL_STATE(1987)] = 51396, - [SMALL_STATE(1988)] = 51474, - [SMALL_STATE(1989)] = 51554, - [SMALL_STATE(1990)] = 51622, - [SMALL_STATE(1991)] = 51676, - [SMALL_STATE(1992)] = 51738, - [SMALL_STATE(1993)] = 51808, - [SMALL_STATE(1994)] = 51880, - [SMALL_STATE(1995)] = 51954, - [SMALL_STATE(1996)] = 52008, - [SMALL_STATE(1997)] = 52074, - [SMALL_STATE(1998)] = 52138, - [SMALL_STATE(1999)] = 52202, - [SMALL_STATE(2000)] = 52264, - [SMALL_STATE(2001)] = 52322, - [SMALL_STATE(2002)] = 52378, - [SMALL_STATE(2003)] = 52432, - [SMALL_STATE(2004)] = 52484, - [SMALL_STATE(2005)] = 52560, - [SMALL_STATE(2006)] = 52634, - [SMALL_STATE(2007)] = 52712, - [SMALL_STATE(2008)] = 52788, - [SMALL_STATE(2009)] = 52868, - [SMALL_STATE(2010)] = 52946, - [SMALL_STATE(2011)] = 53014, - [SMALL_STATE(2012)] = 53080, - [SMALL_STATE(2013)] = 53142, - [SMALL_STATE(2014)] = 53202, - [SMALL_STATE(2015)] = 53272, - [SMALL_STATE(2016)] = 53340, - [SMALL_STATE(2017)] = 53412, - [SMALL_STATE(2018)] = 53482, - [SMALL_STATE(2019)] = 53556, - [SMALL_STATE(2020)] = 53628, - [SMALL_STATE(2021)] = 53694, - [SMALL_STATE(2022)] = 53758, - [SMALL_STATE(2023)] = 53816, - [SMALL_STATE(2024)] = 53870, - [SMALL_STATE(2025)] = 53946, - [SMALL_STATE(2026)] = 54024, - [SMALL_STATE(2027)] = 54104, - [SMALL_STATE(2028)] = 54172, - [SMALL_STATE(2029)] = 54234, - [SMALL_STATE(2030)] = 54304, - [SMALL_STATE(2031)] = 54376, - [SMALL_STATE(2032)] = 54450, - [SMALL_STATE(2033)] = 54514, - [SMALL_STATE(2034)] = 54576, - [SMALL_STATE(2035)] = 54632, - [SMALL_STATE(2036)] = 54684, - [SMALL_STATE(2037)] = 54758, - [SMALL_STATE(2038)] = 54834, - [SMALL_STATE(2039)] = 54912, - [SMALL_STATE(2040)] = 54978, - [SMALL_STATE(2041)] = 55038, - [SMALL_STATE(2042)] = 55106, - [SMALL_STATE(2043)] = 55176, - [SMALL_STATE(2044)] = 55248, - [SMALL_STATE(2045)] = 55314, - [SMALL_STATE(2046)] = 55378, - [SMALL_STATE(2047)] = 55442, - [SMALL_STATE(2048)] = 55504, - [SMALL_STATE(2049)] = 55562, - [SMALL_STATE(2050)] = 55618, - [SMALL_STATE(2051)] = 55672, - [SMALL_STATE(2052)] = 55724, - [SMALL_STATE(2053)] = 55800, - [SMALL_STATE(2054)] = 55874, - [SMALL_STATE(2055)] = 55952, - [SMALL_STATE(2056)] = 56028, - [SMALL_STATE(2057)] = 56108, - [SMALL_STATE(2058)] = 56186, - [SMALL_STATE(2059)] = 56254, - [SMALL_STATE(2060)] = 56320, - [SMALL_STATE(2061)] = 56382, - [SMALL_STATE(2062)] = 56442, - [SMALL_STATE(2063)] = 56512, - [SMALL_STATE(2064)] = 56580, - [SMALL_STATE(2065)] = 56652, - [SMALL_STATE(2066)] = 56722, - [SMALL_STATE(2067)] = 56796, - [SMALL_STATE(2068)] = 56868, - [SMALL_STATE(2069)] = 56932, - [SMALL_STATE(2070)] = 56994, - [SMALL_STATE(2071)] = 57050, - [SMALL_STATE(2072)] = 57102, - [SMALL_STATE(2073)] = 57176, - [SMALL_STATE(2074)] = 57252, - [SMALL_STATE(2075)] = 57330, - [SMALL_STATE(2076)] = 57396, - [SMALL_STATE(2077)] = 57456, - [SMALL_STATE(2078)] = 57524, - [SMALL_STATE(2079)] = 57594, - [SMALL_STATE(2080)] = 57666, - [SMALL_STATE(2081)] = 57714, - [SMALL_STATE(2082)] = 57766, - [SMALL_STATE(2083)] = 57814, - [SMALL_STATE(2084)] = 57862, - [SMALL_STATE(2085)] = 57914, - [SMALL_STATE(2086)] = 57968, - [SMALL_STATE(2087)] = 58020, - [SMALL_STATE(2088)] = 58074, - [SMALL_STATE(2089)] = 58120, - [SMALL_STATE(2090)] = 58168, - [SMALL_STATE(2091)] = 58216, - [SMALL_STATE(2092)] = 58266, - [SMALL_STATE(2093)] = 58318, - [SMALL_STATE(2094)] = 58366, - [SMALL_STATE(2095)] = 58416, - [SMALL_STATE(2096)] = 58466, - [SMALL_STATE(2097)] = 58518, - [SMALL_STATE(2098)] = 58570, - [SMALL_STATE(2099)] = 58620, - [SMALL_STATE(2100)] = 58674, - [SMALL_STATE(2101)] = 58726, - [SMALL_STATE(2102)] = 58780, - [SMALL_STATE(2103)] = 58830, - [SMALL_STATE(2104)] = 58884, - [SMALL_STATE(2105)] = 58938, - [SMALL_STATE(2106)] = 58992, - [SMALL_STATE(2107)] = 59046, - [SMALL_STATE(2108)] = 59100, - [SMALL_STATE(2109)] = 59154, - [SMALL_STATE(2110)] = 59202, - [SMALL_STATE(2111)] = 59256, - [SMALL_STATE(2112)] = 59303, - [SMALL_STATE(2113)] = 59350, - [SMALL_STATE(2114)] = 59397, - [SMALL_STATE(2115)] = 59446, - [SMALL_STATE(2116)] = 59495, - [SMALL_STATE(2117)] = 59544, - [SMALL_STATE(2118)] = 59593, - [SMALL_STATE(2119)] = 59644, - [SMALL_STATE(2120)] = 59693, - [SMALL_STATE(2121)] = 59744, - [SMALL_STATE(2122)] = 59793, - [SMALL_STATE(2123)] = 59842, - [SMALL_STATE(2124)] = 59921, - [SMALL_STATE(2125)] = 60000, - [SMALL_STATE(2126)] = 60049, - [SMALL_STATE(2127)] = 60098, - [SMALL_STATE(2128)] = 60145, - [SMALL_STATE(2129)] = 60224, - [SMALL_STATE(2130)] = 60303, - [SMALL_STATE(2131)] = 60382, - [SMALL_STATE(2132)] = 60461, - [SMALL_STATE(2133)] = 60508, - [SMALL_STATE(2134)] = 60555, - [SMALL_STATE(2135)] = 60600, - [SMALL_STATE(2136)] = 60646, - [SMALL_STATE(2137)] = 60692, - [SMALL_STATE(2138)] = 60750, - [SMALL_STATE(2139)] = 60802, - [SMALL_STATE(2140)] = 60850, - [SMALL_STATE(2141)] = 60920, - [SMALL_STATE(2142)] = 60992, - [SMALL_STATE(2143)] = 61066, - [SMALL_STATE(2144)] = 61128, - [SMALL_STATE(2145)] = 61184, - [SMALL_STATE(2146)] = 61248, - [SMALL_STATE(2147)] = 61314, - [SMALL_STATE(2148)] = 61382, - [SMALL_STATE(2149)] = 61428, - [SMALL_STATE(2150)] = 61476, - [SMALL_STATE(2151)] = 61522, - [SMALL_STATE(2152)] = 61570, - [SMALL_STATE(2153)] = 61616, - [SMALL_STATE(2154)] = 61662, - [SMALL_STATE(2155)] = 61708, - [SMALL_STATE(2156)] = 61754, - [SMALL_STATE(2157)] = 61800, - [SMALL_STATE(2158)] = 61892, - [SMALL_STATE(2159)] = 61938, - [SMALL_STATE(2160)] = 62030, - [SMALL_STATE(2161)] = 62076, - [SMALL_STATE(2162)] = 62124, - [SMALL_STATE(2163)] = 62170, - [SMALL_STATE(2164)] = 62216, - [SMALL_STATE(2165)] = 62262, - [SMALL_STATE(2166)] = 62308, - [SMALL_STATE(2167)] = 62354, - [SMALL_STATE(2168)] = 62400, - [SMALL_STATE(2169)] = 62446, - [SMALL_STATE(2170)] = 62506, - [SMALL_STATE(2171)] = 62564, - [SMALL_STATE(2172)] = 62610, - [SMALL_STATE(2173)] = 62662, - [SMALL_STATE(2174)] = 62708, - [SMALL_STATE(2175)] = 62754, - [SMALL_STATE(2176)] = 62802, - [SMALL_STATE(2177)] = 62848, - [SMALL_STATE(2178)] = 62918, - [SMALL_STATE(2179)] = 62964, - [SMALL_STATE(2180)] = 63010, - [SMALL_STATE(2181)] = 63056, - [SMALL_STATE(2182)] = 63102, - [SMALL_STATE(2183)] = 63148, - [SMALL_STATE(2184)] = 63194, - [SMALL_STATE(2185)] = 63266, - [SMALL_STATE(2186)] = 63340, - [SMALL_STATE(2187)] = 63402, - [SMALL_STATE(2188)] = 63458, - [SMALL_STATE(2189)] = 63522, - [SMALL_STATE(2190)] = 63588, - [SMALL_STATE(2191)] = 63656, - [SMALL_STATE(2192)] = 63702, - [SMALL_STATE(2193)] = 63750, - [SMALL_STATE(2194)] = 63796, - [SMALL_STATE(2195)] = 63842, - [SMALL_STATE(2196)] = 63890, - [SMALL_STATE(2197)] = 63936, - [SMALL_STATE(2198)] = 63982, - [SMALL_STATE(2199)] = 64028, - [SMALL_STATE(2200)] = 64076, - [SMALL_STATE(2201)] = 64124, - [SMALL_STATE(2202)] = 64172, - [SMALL_STATE(2203)] = 64264, - [SMALL_STATE(2204)] = 64310, - [SMALL_STATE(2205)] = 64356, - [SMALL_STATE(2206)] = 64402, - [SMALL_STATE(2207)] = 64448, - [SMALL_STATE(2208)] = 64494, - [SMALL_STATE(2209)] = 64540, - [SMALL_STATE(2210)] = 64586, - [SMALL_STATE(2211)] = 64632, - [SMALL_STATE(2212)] = 64678, - [SMALL_STATE(2213)] = 64738, - [SMALL_STATE(2214)] = 64811, - [SMALL_STATE(2215)] = 64884, - [SMALL_STATE(2216)] = 64957, - [SMALL_STATE(2217)] = 65030, - [SMALL_STATE(2218)] = 65081, - [SMALL_STATE(2219)] = 65154, - [SMALL_STATE(2220)] = 65199, - [SMALL_STATE(2221)] = 65272, - [SMALL_STATE(2222)] = 65322, - [SMALL_STATE(2223)] = 65368, - [SMALL_STATE(2224)] = 65418, - [SMALL_STATE(2225)] = 65504, - [SMALL_STATE(2226)] = 65554, - [SMALL_STATE(2227)] = 65600, - [SMALL_STATE(2228)] = 65650, - [SMALL_STATE(2229)] = 65693, - [SMALL_STATE(2230)] = 65736, - [SMALL_STATE(2231)] = 65779, - [SMALL_STATE(2232)] = 65828, - [SMALL_STATE(2233)] = 65877, - [SMALL_STATE(2234)] = 65920, - [SMALL_STATE(2235)] = 65969, - [SMALL_STATE(2236)] = 66018, - [SMALL_STATE(2237)] = 66067, - [SMALL_STATE(2238)] = 66118, - [SMALL_STATE(2239)] = 66167, - [SMALL_STATE(2240)] = 66210, - [SMALL_STATE(2241)] = 66257, - [SMALL_STATE(2242)] = 66302, - [SMALL_STATE(2243)] = 66345, - [SMALL_STATE(2244)] = 66388, - [SMALL_STATE(2245)] = 66431, - [SMALL_STATE(2246)] = 66476, - [SMALL_STATE(2247)] = 66556, - [SMALL_STATE(2248)] = 66600, - [SMALL_STATE(2249)] = 66642, - [SMALL_STATE(2250)] = 66720, - [SMALL_STATE(2251)] = 66800, - [SMALL_STATE(2252)] = 66842, - [SMALL_STATE(2253)] = 66888, - [SMALL_STATE(2254)] = 66929, - [SMALL_STATE(2255)] = 66974, - [SMALL_STATE(2256)] = 67019, - [SMALL_STATE(2257)] = 67063, - [SMALL_STATE(2258)] = 67145, - [SMALL_STATE(2259)] = 67185, - [SMALL_STATE(2260)] = 67267, - [SMALL_STATE(2261)] = 67311, - [SMALL_STATE(2262)] = 67355, - [SMALL_STATE(2263)] = 67399, - [SMALL_STATE(2264)] = 67444, - [SMALL_STATE(2265)] = 67520, - [SMALL_STATE(2266)] = 67596, - [SMALL_STATE(2267)] = 67672, - [SMALL_STATE(2268)] = 67748, - [SMALL_STATE(2269)] = 67824, - [SMALL_STATE(2270)] = 67900, - [SMALL_STATE(2271)] = 67976, - [SMALL_STATE(2272)] = 68052, - [SMALL_STATE(2273)] = 68128, - [SMALL_STATE(2274)] = 68174, - [SMALL_STATE(2275)] = 68250, - [SMALL_STATE(2276)] = 68326, - [SMALL_STATE(2277)] = 68402, - [SMALL_STATE(2278)] = 68478, - [SMALL_STATE(2279)] = 68554, - [SMALL_STATE(2280)] = 68630, - [SMALL_STATE(2281)] = 68706, - [SMALL_STATE(2282)] = 68782, - [SMALL_STATE(2283)] = 68858, - [SMALL_STATE(2284)] = 68910, - [SMALL_STATE(2285)] = 68986, - [SMALL_STATE(2286)] = 69062, - [SMALL_STATE(2287)] = 69138, - [SMALL_STATE(2288)] = 69214, - [SMALL_STATE(2289)] = 69290, - [SMALL_STATE(2290)] = 69366, - [SMALL_STATE(2291)] = 69410, - [SMALL_STATE(2292)] = 69452, - [SMALL_STATE(2293)] = 69498, - [SMALL_STATE(2294)] = 69544, - [SMALL_STATE(2295)] = 69620, - [SMALL_STATE(2296)] = 69696, - [SMALL_STATE(2297)] = 69735, - [SMALL_STATE(2298)] = 69784, - [SMALL_STATE(2299)] = 69835, - [SMALL_STATE(2300)] = 69884, - [SMALL_STATE(2301)] = 69933, - [SMALL_STATE(2302)] = 69981, - [SMALL_STATE(2303)] = 70051, - [SMALL_STATE(2304)] = 70121, - [SMALL_STATE(2305)] = 70169, - [SMALL_STATE(2306)] = 70239, - [SMALL_STATE(2307)] = 70285, - [SMALL_STATE(2308)] = 70331, - [SMALL_STATE(2309)] = 70377, - [SMALL_STATE(2310)] = 70423, - [SMALL_STATE(2311)] = 70493, - [SMALL_STATE(2312)] = 70563, - [SMALL_STATE(2313)] = 70633, - [SMALL_STATE(2314)] = 70687, - [SMALL_STATE(2315)] = 70735, - [SMALL_STATE(2316)] = 70805, - [SMALL_STATE(2317)] = 70875, - [SMALL_STATE(2318)] = 70945, - [SMALL_STATE(2319)] = 71015, - [SMALL_STATE(2320)] = 71085, - [SMALL_STATE(2321)] = 71155, - [SMALL_STATE(2322)] = 71195, - [SMALL_STATE(2323)] = 71235, - [SMALL_STATE(2324)] = 71280, - [SMALL_STATE(2325)] = 71317, - [SMALL_STATE(2326)] = 71368, - [SMALL_STATE(2327)] = 71421, - [SMALL_STATE(2328)] = 71460, - [SMALL_STATE(2329)] = 71499, - [SMALL_STATE(2330)] = 71550, - [SMALL_STATE(2331)] = 71601, - [SMALL_STATE(2332)] = 71648, - [SMALL_STATE(2333)] = 71693, - [SMALL_STATE(2334)] = 71738, - [SMALL_STATE(2335)] = 71783, - [SMALL_STATE(2336)] = 71820, - [SMALL_STATE(2337)] = 71854, - [SMALL_STATE(2338)] = 71892, - [SMALL_STATE(2339)] = 71938, - [SMALL_STATE(2340)] = 71972, - [SMALL_STATE(2341)] = 72022, - [SMALL_STATE(2342)] = 72070, - [SMALL_STATE(2343)] = 72104, - [SMALL_STATE(2344)] = 72152, - [SMALL_STATE(2345)] = 72200, - [SMALL_STATE(2346)] = 72248, - [SMALL_STATE(2347)] = 72298, - [SMALL_STATE(2348)] = 72334, - [SMALL_STATE(2349)] = 72372, - [SMALL_STATE(2350)] = 72412, - [SMALL_STATE(2351)] = 72450, - [SMALL_STATE(2352)] = 72490, - [SMALL_STATE(2353)] = 72528, - [SMALL_STATE(2354)] = 72578, - [SMALL_STATE(2355)] = 72614, - [SMALL_STATE(2356)] = 72647, - [SMALL_STATE(2357)] = 72694, - [SMALL_STATE(2358)] = 72731, - [SMALL_STATE(2359)] = 72778, - [SMALL_STATE(2360)] = 72817, - [SMALL_STATE(2361)] = 72852, - [SMALL_STATE(2362)] = 72887, - [SMALL_STATE(2363)] = 72926, - [SMALL_STATE(2364)] = 72973, - [SMALL_STATE(2365)] = 73014, - [SMALL_STATE(2366)] = 73051, - [SMALL_STATE(2367)] = 73086, - [SMALL_STATE(2368)] = 73127, - [SMALL_STATE(2369)] = 73164, - [SMALL_STATE(2370)] = 73201, - [SMALL_STATE(2371)] = 73240, - [SMALL_STATE(2372)] = 73275, - [SMALL_STATE(2373)] = 73314, - [SMALL_STATE(2374)] = 73353, - [SMALL_STATE(2375)] = 73392, - [SMALL_STATE(2376)] = 73425, - [SMALL_STATE(2377)] = 73464, - [SMALL_STATE(2378)] = 73511, - [SMALL_STATE(2379)] = 73562, - [SMALL_STATE(2380)] = 73595, - [SMALL_STATE(2381)] = 73630, - [SMALL_STATE(2382)] = 73677, - [SMALL_STATE(2383)] = 73718, - [SMALL_STATE(2384)] = 73766, - [SMALL_STATE(2385)] = 73802, - [SMALL_STATE(2386)] = 73834, - [SMALL_STATE(2387)] = 73868, - [SMALL_STATE(2388)] = 73906, - [SMALL_STATE(2389)] = 73946, - [SMALL_STATE(2390)] = 73984, - [SMALL_STATE(2391)] = 74016, - [SMALL_STATE(2392)] = 74048, - [SMALL_STATE(2393)] = 74096, - [SMALL_STATE(2394)] = 74130, - [SMALL_STATE(2395)] = 74170, - [SMALL_STATE(2396)] = 74206, - [SMALL_STATE(2397)] = 74242, - [SMALL_STATE(2398)] = 74288, - [SMALL_STATE(2399)] = 74320, - [SMALL_STATE(2400)] = 74354, - [SMALL_STATE(2401)] = 74386, - [SMALL_STATE(2402)] = 74418, - [SMALL_STATE(2403)] = 74454, - [SMALL_STATE(2404)] = 74486, - [SMALL_STATE(2405)] = 74524, - [SMALL_STATE(2406)] = 74558, - [SMALL_STATE(2407)] = 74596, - [SMALL_STATE(2408)] = 74632, - [SMALL_STATE(2409)] = 74664, - [SMALL_STATE(2410)] = 74702, - [SMALL_STATE(2411)] = 74734, - [SMALL_STATE(2412)] = 74766, - [SMALL_STATE(2413)] = 74806, - [SMALL_STATE(2414)] = 74844, - [SMALL_STATE(2415)] = 74882, - [SMALL_STATE(2416)] = 74920, - [SMALL_STATE(2417)] = 74958, - [SMALL_STATE(2418)] = 74996, - [SMALL_STATE(2419)] = 75044, - [SMALL_STATE(2420)] = 75078, - [SMALL_STATE(2421)] = 75110, - [SMALL_STATE(2422)] = 75142, - [SMALL_STATE(2423)] = 75174, - [SMALL_STATE(2424)] = 75210, - [SMALL_STATE(2425)] = 75241, - [SMALL_STATE(2426)] = 75280, - [SMALL_STATE(2427)] = 75311, - [SMALL_STATE(2428)] = 75356, - [SMALL_STATE(2429)] = 75401, - [SMALL_STATE(2430)] = 75446, - [SMALL_STATE(2431)] = 75483, - [SMALL_STATE(2432)] = 75518, - [SMALL_STATE(2433)] = 75557, - [SMALL_STATE(2434)] = 75594, - [SMALL_STATE(2435)] = 75629, - [SMALL_STATE(2436)] = 75664, - [SMALL_STATE(2437)] = 75701, - [SMALL_STATE(2438)] = 75746, - [SMALL_STATE(2439)] = 75777, - [SMALL_STATE(2440)] = 75808, - [SMALL_STATE(2441)] = 75839, - [SMALL_STATE(2442)] = 75870, - [SMALL_STATE(2443)] = 75903, - [SMALL_STATE(2444)] = 75938, - [SMALL_STATE(2445)] = 75983, - [SMALL_STATE(2446)] = 76016, - [SMALL_STATE(2447)] = 76047, - [SMALL_STATE(2448)] = 76082, - [SMALL_STATE(2449)] = 76123, - [SMALL_STATE(2450)] = 76156, - [SMALL_STATE(2451)] = 76187, - [SMALL_STATE(2452)] = 76218, - [SMALL_STATE(2453)] = 76251, - [SMALL_STATE(2454)] = 76282, - [SMALL_STATE(2455)] = 76313, - [SMALL_STATE(2456)] = 76350, - [SMALL_STATE(2457)] = 76389, - [SMALL_STATE(2458)] = 76420, - [SMALL_STATE(2459)] = 76451, - [SMALL_STATE(2460)] = 76484, - [SMALL_STATE(2461)] = 76517, - [SMALL_STATE(2462)] = 76550, - [SMALL_STATE(2463)] = 76580, - [SMALL_STATE(2464)] = 76610, - [SMALL_STATE(2465)] = 76662, - [SMALL_STATE(2466)] = 76692, - [SMALL_STATE(2467)] = 76728, - [SMALL_STATE(2468)] = 76778, - [SMALL_STATE(2469)] = 76808, - [SMALL_STATE(2470)] = 76848, - [SMALL_STATE(2471)] = 76884, - [SMALL_STATE(2472)] = 76916, - [SMALL_STATE(2473)] = 76946, - [SMALL_STATE(2474)] = 76976, - [SMALL_STATE(2475)] = 77012, - [SMALL_STATE(2476)] = 77044, - [SMALL_STATE(2477)] = 77074, - [SMALL_STATE(2478)] = 77110, - [SMALL_STATE(2479)] = 77142, - [SMALL_STATE(2480)] = 77178, - [SMALL_STATE(2481)] = 77212, - [SMALL_STATE(2482)] = 77244, - [SMALL_STATE(2483)] = 77278, - [SMALL_STATE(2484)] = 77308, - [SMALL_STATE(2485)] = 77360, - [SMALL_STATE(2486)] = 77412, - [SMALL_STATE(2487)] = 77442, - [SMALL_STATE(2488)] = 77472, - [SMALL_STATE(2489)] = 77506, - [SMALL_STATE(2490)] = 77542, - [SMALL_STATE(2491)] = 77572, - [SMALL_STATE(2492)] = 77610, - [SMALL_STATE(2493)] = 77644, - [SMALL_STATE(2494)] = 77676, - [SMALL_STATE(2495)] = 77714, - [SMALL_STATE(2496)] = 77766, - [SMALL_STATE(2497)] = 77796, - [SMALL_STATE(2498)] = 77828, - [SMALL_STATE(2499)] = 77866, - [SMALL_STATE(2500)] = 77898, - [SMALL_STATE(2501)] = 77930, - [SMALL_STATE(2502)] = 77962, - [SMALL_STATE(2503)] = 77994, - [SMALL_STATE(2504)] = 78026, - [SMALL_STATE(2505)] = 78060, - [SMALL_STATE(2506)] = 78098, - [SMALL_STATE(2507)] = 78130, - [SMALL_STATE(2508)] = 78160, - [SMALL_STATE(2509)] = 78190, - [SMALL_STATE(2510)] = 78228, - [SMALL_STATE(2511)] = 78260, - [SMALL_STATE(2512)] = 78290, - [SMALL_STATE(2513)] = 78322, - [SMALL_STATE(2514)] = 78358, - [SMALL_STATE(2515)] = 78388, - [SMALL_STATE(2516)] = 78419, - [SMALL_STATE(2517)] = 78456, - [SMALL_STATE(2518)] = 78485, - [SMALL_STATE(2519)] = 78516, - [SMALL_STATE(2520)] = 78553, - [SMALL_STATE(2521)] = 78584, - [SMALL_STATE(2522)] = 78621, - [SMALL_STATE(2523)] = 78650, - [SMALL_STATE(2524)] = 78681, - [SMALL_STATE(2525)] = 78712, - [SMALL_STATE(2526)] = 78743, - [SMALL_STATE(2527)] = 78772, - [SMALL_STATE(2528)] = 78803, - [SMALL_STATE(2529)] = 78834, - [SMALL_STATE(2530)] = 78863, - [SMALL_STATE(2531)] = 78892, - [SMALL_STATE(2532)] = 78921, - [SMALL_STATE(2533)] = 78950, - [SMALL_STATE(2534)] = 78981, - [SMALL_STATE(2535)] = 79012, - [SMALL_STATE(2536)] = 79043, - [SMALL_STATE(2537)] = 79072, - [SMALL_STATE(2538)] = 79105, - [SMALL_STATE(2539)] = 79142, - [SMALL_STATE(2540)] = 79179, - [SMALL_STATE(2541)] = 79208, - [SMALL_STATE(2542)] = 79237, - [SMALL_STATE(2543)] = 79266, - [SMALL_STATE(2544)] = 79299, - [SMALL_STATE(2545)] = 79328, - [SMALL_STATE(2546)] = 79365, - [SMALL_STATE(2547)] = 79396, - [SMALL_STATE(2548)] = 79427, - [SMALL_STATE(2549)] = 79456, - [SMALL_STATE(2550)] = 79493, - [SMALL_STATE(2551)] = 79526, - [SMALL_STATE(2552)] = 79557, - [SMALL_STATE(2553)] = 79586, - [SMALL_STATE(2554)] = 79623, - [SMALL_STATE(2555)] = 79660, - [SMALL_STATE(2556)] = 79691, - [SMALL_STATE(2557)] = 79726, - [SMALL_STATE(2558)] = 79763, - [SMALL_STATE(2559)] = 79792, - [SMALL_STATE(2560)] = 79821, - [SMALL_STATE(2561)] = 79858, - [SMALL_STATE(2562)] = 79887, - [SMALL_STATE(2563)] = 79918, - [SMALL_STATE(2564)] = 79951, - [SMALL_STATE(2565)] = 79982, - [SMALL_STATE(2566)] = 80019, - [SMALL_STATE(2567)] = 80048, - [SMALL_STATE(2568)] = 80079, - [SMALL_STATE(2569)] = 80108, - [SMALL_STATE(2570)] = 80137, - [SMALL_STATE(2571)] = 80166, - [SMALL_STATE(2572)] = 80195, - [SMALL_STATE(2573)] = 80226, - [SMALL_STATE(2574)] = 80263, - [SMALL_STATE(2575)] = 80294, - [SMALL_STATE(2576)] = 80327, - [SMALL_STATE(2577)] = 80358, - [SMALL_STATE(2578)] = 80389, - [SMALL_STATE(2579)] = 80420, - [SMALL_STATE(2580)] = 80451, - [SMALL_STATE(2581)] = 80482, - [SMALL_STATE(2582)] = 80513, - [SMALL_STATE(2583)] = 80545, - [SMALL_STATE(2584)] = 80573, - [SMALL_STATE(2585)] = 80617, - [SMALL_STATE(2586)] = 80653, - [SMALL_STATE(2587)] = 80683, - [SMALL_STATE(2588)] = 80713, - [SMALL_STATE(2589)] = 80741, - [SMALL_STATE(2590)] = 80769, - [SMALL_STATE(2591)] = 80807, - [SMALL_STATE(2592)] = 80835, - [SMALL_STATE(2593)] = 80879, - [SMALL_STATE(2594)] = 80909, - [SMALL_STATE(2595)] = 80945, - [SMALL_STATE(2596)] = 80973, - [SMALL_STATE(2597)] = 81001, - [SMALL_STATE(2598)] = 81035, - [SMALL_STATE(2599)] = 81067, - [SMALL_STATE(2600)] = 81103, - [SMALL_STATE(2601)] = 81133, - [SMALL_STATE(2602)] = 81161, - [SMALL_STATE(2603)] = 81197, - [SMALL_STATE(2604)] = 81227, - [SMALL_STATE(2605)] = 81259, - [SMALL_STATE(2606)] = 81291, - [SMALL_STATE(2607)] = 81323, - [SMALL_STATE(2608)] = 81355, - [SMALL_STATE(2609)] = 81387, - [SMALL_STATE(2610)] = 81415, - [SMALL_STATE(2611)] = 81443, - [SMALL_STATE(2612)] = 81471, - [SMALL_STATE(2613)] = 81507, - [SMALL_STATE(2614)] = 81537, - [SMALL_STATE(2615)] = 81567, - [SMALL_STATE(2616)] = 81595, - [SMALL_STATE(2617)] = 81623, - [SMALL_STATE(2618)] = 81659, - [SMALL_STATE(2619)] = 81689, - [SMALL_STATE(2620)] = 81719, - [SMALL_STATE(2621)] = 81747, - [SMALL_STATE(2622)] = 81791, - [SMALL_STATE(2623)] = 81819, - [SMALL_STATE(2624)] = 81863, - [SMALL_STATE(2625)] = 81891, - [SMALL_STATE(2626)] = 81927, - [SMALL_STATE(2627)] = 81957, - [SMALL_STATE(2628)] = 81985, - [SMALL_STATE(2629)] = 82021, - [SMALL_STATE(2630)] = 82053, - [SMALL_STATE(2631)] = 82089, - [SMALL_STATE(2632)] = 82133, - [SMALL_STATE(2633)] = 82163, - [SMALL_STATE(2634)] = 82199, - [SMALL_STATE(2635)] = 82233, - [SMALL_STATE(2636)] = 82269, - [SMALL_STATE(2637)] = 82305, - [SMALL_STATE(2638)] = 82341, - [SMALL_STATE(2639)] = 82371, - [SMALL_STATE(2640)] = 82401, - [SMALL_STATE(2641)] = 82429, - [SMALL_STATE(2642)] = 82459, - [SMALL_STATE(2643)] = 82487, - [SMALL_STATE(2644)] = 82514, - [SMALL_STATE(2645)] = 82541, - [SMALL_STATE(2646)] = 82572, - [SMALL_STATE(2647)] = 82605, - [SMALL_STATE(2648)] = 82636, - [SMALL_STATE(2649)] = 82667, - [SMALL_STATE(2650)] = 82694, - [SMALL_STATE(2651)] = 82721, - [SMALL_STATE(2652)] = 82752, - [SMALL_STATE(2653)] = 82779, - [SMALL_STATE(2654)] = 82806, - [SMALL_STATE(2655)] = 82837, - [SMALL_STATE(2656)] = 82868, - [SMALL_STATE(2657)] = 82897, - [SMALL_STATE(2658)] = 82926, - [SMALL_STATE(2659)] = 82959, - [SMALL_STATE(2660)] = 82992, - [SMALL_STATE(2661)] = 83023, - [SMALL_STATE(2662)] = 83054, - [SMALL_STATE(2663)] = 83081, - [SMALL_STATE(2664)] = 83108, - [SMALL_STATE(2665)] = 83137, - [SMALL_STATE(2666)] = 83166, - [SMALL_STATE(2667)] = 83197, - [SMALL_STATE(2668)] = 83228, - [SMALL_STATE(2669)] = 83255, - [SMALL_STATE(2670)] = 83282, - [SMALL_STATE(2671)] = 83309, - [SMALL_STATE(2672)] = 83336, - [SMALL_STATE(2673)] = 83367, - [SMALL_STATE(2674)] = 83398, - [SMALL_STATE(2675)] = 83427, - [SMALL_STATE(2676)] = 83456, - [SMALL_STATE(2677)] = 83489, - [SMALL_STATE(2678)] = 83522, - [SMALL_STATE(2679)] = 83553, - [SMALL_STATE(2680)] = 83584, - [SMALL_STATE(2681)] = 83617, - [SMALL_STATE(2682)] = 83648, - [SMALL_STATE(2683)] = 83679, - [SMALL_STATE(2684)] = 83710, - [SMALL_STATE(2685)] = 83737, - [SMALL_STATE(2686)] = 83766, - [SMALL_STATE(2687)] = 83795, - [SMALL_STATE(2688)] = 83826, - [SMALL_STATE(2689)] = 83857, - [SMALL_STATE(2690)] = 83884, - [SMALL_STATE(2691)] = 83911, - [SMALL_STATE(2692)] = 83940, - [SMALL_STATE(2693)] = 83969, - [SMALL_STATE(2694)] = 84000, - [SMALL_STATE(2695)] = 84031, - [SMALL_STATE(2696)] = 84062, - [SMALL_STATE(2697)] = 84091, - [SMALL_STATE(2698)] = 84118, - [SMALL_STATE(2699)] = 84145, - [SMALL_STATE(2700)] = 84176, - [SMALL_STATE(2701)] = 84203, - [SMALL_STATE(2702)] = 84230, - [SMALL_STATE(2703)] = 84257, - [SMALL_STATE(2704)] = 84288, - [SMALL_STATE(2705)] = 84319, - [SMALL_STATE(2706)] = 84350, - [SMALL_STATE(2707)] = 84381, - [SMALL_STATE(2708)] = 84412, - [SMALL_STATE(2709)] = 84443, - [SMALL_STATE(2710)] = 84472, - [SMALL_STATE(2711)] = 84503, - [SMALL_STATE(2712)] = 84534, - [SMALL_STATE(2713)] = 84565, - [SMALL_STATE(2714)] = 84596, - [SMALL_STATE(2715)] = 84625, - [SMALL_STATE(2716)] = 84654, - [SMALL_STATE(2717)] = 84681, - [SMALL_STATE(2718)] = 84712, - [SMALL_STATE(2719)] = 84745, - [SMALL_STATE(2720)] = 84778, - [SMALL_STATE(2721)] = 84809, - [SMALL_STATE(2722)] = 84842, - [SMALL_STATE(2723)] = 84873, - [SMALL_STATE(2724)] = 84904, - [SMALL_STATE(2725)] = 84935, - [SMALL_STATE(2726)] = 84968, - [SMALL_STATE(2727)] = 85001, - [SMALL_STATE(2728)] = 85028, - [SMALL_STATE(2729)] = 85059, - [SMALL_STATE(2730)] = 85086, - [SMALL_STATE(2731)] = 85113, - [SMALL_STATE(2732)] = 85140, - [SMALL_STATE(2733)] = 85171, - [SMALL_STATE(2734)] = 85202, - [SMALL_STATE(2735)] = 85233, - [SMALL_STATE(2736)] = 85266, - [SMALL_STATE(2737)] = 85297, - [SMALL_STATE(2738)] = 85328, - [SMALL_STATE(2739)] = 85359, - [SMALL_STATE(2740)] = 85390, - [SMALL_STATE(2741)] = 85421, - [SMALL_STATE(2742)] = 85454, - [SMALL_STATE(2743)] = 85487, - [SMALL_STATE(2744)] = 85518, - [SMALL_STATE(2745)] = 85549, - [SMALL_STATE(2746)] = 85574, - [SMALL_STATE(2747)] = 85607, - [SMALL_STATE(2748)] = 85634, - [SMALL_STATE(2749)] = 85661, - [SMALL_STATE(2750)] = 85692, - [SMALL_STATE(2751)] = 85723, - [SMALL_STATE(2752)] = 85756, - [SMALL_STATE(2753)] = 85789, - [SMALL_STATE(2754)] = 85822, - [SMALL_STATE(2755)] = 85849, - [SMALL_STATE(2756)] = 85876, - [SMALL_STATE(2757)] = 85903, - [SMALL_STATE(2758)] = 85930, - [SMALL_STATE(2759)] = 85957, - [SMALL_STATE(2760)] = 85988, - [SMALL_STATE(2761)] = 86021, - [SMALL_STATE(2762)] = 86048, - [SMALL_STATE(2763)] = 86079, - [SMALL_STATE(2764)] = 86114, - [SMALL_STATE(2765)] = 86141, - [SMALL_STATE(2766)] = 86172, - [SMALL_STATE(2767)] = 86201, - [SMALL_STATE(2768)] = 86230, - [SMALL_STATE(2769)] = 86257, - [SMALL_STATE(2770)] = 86284, - [SMALL_STATE(2771)] = 86319, - [SMALL_STATE(2772)] = 86352, - [SMALL_STATE(2773)] = 86385, - [SMALL_STATE(2774)] = 86416, - [SMALL_STATE(2775)] = 86447, - [SMALL_STATE(2776)] = 86474, - [SMALL_STATE(2777)] = 86509, - [SMALL_STATE(2778)] = 86544, - [SMALL_STATE(2779)] = 86577, - [SMALL_STATE(2780)] = 86602, - [SMALL_STATE(2781)] = 86627, - [SMALL_STATE(2782)] = 86654, - [SMALL_STATE(2783)] = 86679, - [SMALL_STATE(2784)] = 86704, - [SMALL_STATE(2785)] = 86731, - [SMALL_STATE(2786)] = 86766, - [SMALL_STATE(2787)] = 86791, - [SMALL_STATE(2788)] = 86828, - [SMALL_STATE(2789)] = 86859, - [SMALL_STATE(2790)] = 86890, - [SMALL_STATE(2791)] = 86921, - [SMALL_STATE(2792)] = 86956, - [SMALL_STATE(2793)] = 86991, - [SMALL_STATE(2794)] = 87026, - [SMALL_STATE(2795)] = 87061, - [SMALL_STATE(2796)] = 87096, - [SMALL_STATE(2797)] = 87131, - [SMALL_STATE(2798)] = 87156, - [SMALL_STATE(2799)] = 87181, - [SMALL_STATE(2800)] = 87206, - [SMALL_STATE(2801)] = 87233, - [SMALL_STATE(2802)] = 87260, - [SMALL_STATE(2803)] = 87289, - [SMALL_STATE(2804)] = 87318, - [SMALL_STATE(2805)] = 87349, - [SMALL_STATE(2806)] = 87374, - [SMALL_STATE(2807)] = 87401, - [SMALL_STATE(2808)] = 87428, - [SMALL_STATE(2809)] = 87453, - [SMALL_STATE(2810)] = 87480, - [SMALL_STATE(2811)] = 87507, - [SMALL_STATE(2812)] = 87536, - [SMALL_STATE(2813)] = 87565, - [SMALL_STATE(2814)] = 87594, - [SMALL_STATE(2815)] = 87623, - [SMALL_STATE(2816)] = 87650, - [SMALL_STATE(2817)] = 87680, - [SMALL_STATE(2818)] = 87706, - [SMALL_STATE(2819)] = 87738, - [SMALL_STATE(2820)] = 87764, - [SMALL_STATE(2821)] = 87790, - [SMALL_STATE(2822)] = 87820, - [SMALL_STATE(2823)] = 87846, - [SMALL_STATE(2824)] = 87876, - [SMALL_STATE(2825)] = 87906, - [SMALL_STATE(2826)] = 87934, - [SMALL_STATE(2827)] = 87960, - [SMALL_STATE(2828)] = 87990, - [SMALL_STATE(2829)] = 88036, - [SMALL_STATE(2830)] = 88062, - [SMALL_STATE(2831)] = 88092, - [SMALL_STATE(2832)] = 88116, - [SMALL_STATE(2833)] = 88146, - [SMALL_STATE(2834)] = 88172, - [SMALL_STATE(2835)] = 88202, - [SMALL_STATE(2836)] = 88228, - [SMALL_STATE(2837)] = 88254, - [SMALL_STATE(2838)] = 88284, - [SMALL_STATE(2839)] = 88314, - [SMALL_STATE(2840)] = 88342, - [SMALL_STATE(2841)] = 88370, - [SMALL_STATE(2842)] = 88394, - [SMALL_STATE(2843)] = 88420, - [SMALL_STATE(2844)] = 88446, - [SMALL_STATE(2845)] = 88470, - [SMALL_STATE(2846)] = 88494, - [SMALL_STATE(2847)] = 88526, - [SMALL_STATE(2848)] = 88578, - [SMALL_STATE(2849)] = 88622, - [SMALL_STATE(2850)] = 88646, - [SMALL_STATE(2851)] = 88670, - [SMALL_STATE(2852)] = 88694, - [SMALL_STATE(2853)] = 88746, - [SMALL_STATE(2854)] = 88770, - [SMALL_STATE(2855)] = 88794, - [SMALL_STATE(2856)] = 88818, - [SMALL_STATE(2857)] = 88844, - [SMALL_STATE(2858)] = 88870, - [SMALL_STATE(2859)] = 88896, - [SMALL_STATE(2860)] = 88924, - [SMALL_STATE(2861)] = 88952, - [SMALL_STATE(2862)] = 88976, - [SMALL_STATE(2863)] = 89000, - [SMALL_STATE(2864)] = 89026, - [SMALL_STATE(2865)] = 89052, - [SMALL_STATE(2866)] = 89078, - [SMALL_STATE(2867)] = 89108, - [SMALL_STATE(2868)] = 89136, - [SMALL_STATE(2869)] = 89162, - [SMALL_STATE(2870)] = 89188, - [SMALL_STATE(2871)] = 89214, - [SMALL_STATE(2872)] = 89244, - [SMALL_STATE(2873)] = 89274, - [SMALL_STATE(2874)] = 89304, - [SMALL_STATE(2875)] = 89330, - [SMALL_STATE(2876)] = 89360, - [SMALL_STATE(2877)] = 89390, - [SMALL_STATE(2878)] = 89420, - [SMALL_STATE(2879)] = 89450, - [SMALL_STATE(2880)] = 89502, - [SMALL_STATE(2881)] = 89554, - [SMALL_STATE(2882)] = 89582, - [SMALL_STATE(2883)] = 89612, - [SMALL_STATE(2884)] = 89640, - [SMALL_STATE(2885)] = 89670, - [SMALL_STATE(2886)] = 89696, - [SMALL_STATE(2887)] = 89726, - [SMALL_STATE(2888)] = 89778, - [SMALL_STATE(2889)] = 89808, - [SMALL_STATE(2890)] = 89860, - [SMALL_STATE(2891)] = 89888, - [SMALL_STATE(2892)] = 89912, - [SMALL_STATE(2893)] = 89952, - [SMALL_STATE(2894)] = 89982, - [SMALL_STATE(2895)] = 90012, - [SMALL_STATE(2896)] = 90044, - [SMALL_STATE(2897)] = 90072, - [SMALL_STATE(2898)] = 90098, - [SMALL_STATE(2899)] = 90126, - [SMALL_STATE(2900)] = 90152, - [SMALL_STATE(2901)] = 90178, - [SMALL_STATE(2902)] = 90230, - [SMALL_STATE(2903)] = 90282, - [SMALL_STATE(2904)] = 90308, - [SMALL_STATE(2905)] = 90334, - [SMALL_STATE(2906)] = 90362, - [SMALL_STATE(2907)] = 90392, - [SMALL_STATE(2908)] = 90418, - [SMALL_STATE(2909)] = 90444, - [SMALL_STATE(2910)] = 90474, - [SMALL_STATE(2911)] = 90526, - [SMALL_STATE(2912)] = 90558, - [SMALL_STATE(2913)] = 90610, - [SMALL_STATE(2914)] = 90640, - [SMALL_STATE(2915)] = 90666, - [SMALL_STATE(2916)] = 90694, - [SMALL_STATE(2917)] = 90723, - [SMALL_STATE(2918)] = 90752, - [SMALL_STATE(2919)] = 90783, - [SMALL_STATE(2920)] = 90812, - [SMALL_STATE(2921)] = 90837, - [SMALL_STATE(2922)] = 90862, - [SMALL_STATE(2923)] = 90887, - [SMALL_STATE(2924)] = 90916, - [SMALL_STATE(2925)] = 90941, - [SMALL_STATE(2926)] = 90966, - [SMALL_STATE(2927)] = 90993, - [SMALL_STATE(2928)] = 91022, - [SMALL_STATE(2929)] = 91051, - [SMALL_STATE(2930)] = 91080, - [SMALL_STATE(2931)] = 91105, - [SMALL_STATE(2932)] = 91130, - [SMALL_STATE(2933)] = 91155, - [SMALL_STATE(2934)] = 91180, - [SMALL_STATE(2935)] = 91205, - [SMALL_STATE(2936)] = 91230, - [SMALL_STATE(2937)] = 91255, - [SMALL_STATE(2938)] = 91284, - [SMALL_STATE(2939)] = 91315, - [SMALL_STATE(2940)] = 91338, - [SMALL_STATE(2941)] = 91363, - [SMALL_STATE(2942)] = 91400, - [SMALL_STATE(2943)] = 91425, - [SMALL_STATE(2944)] = 91450, - [SMALL_STATE(2945)] = 91479, - [SMALL_STATE(2946)] = 91508, - [SMALL_STATE(2947)] = 91537, - [SMALL_STATE(2948)] = 91562, - [SMALL_STATE(2949)] = 91591, - [SMALL_STATE(2950)] = 91634, - [SMALL_STATE(2951)] = 91663, - [SMALL_STATE(2952)] = 91688, - [SMALL_STATE(2953)] = 91713, - [SMALL_STATE(2954)] = 91744, - [SMALL_STATE(2955)] = 91769, - [SMALL_STATE(2956)] = 91794, - [SMALL_STATE(2957)] = 91819, - [SMALL_STATE(2958)] = 91848, - [SMALL_STATE(2959)] = 91873, - [SMALL_STATE(2960)] = 91898, - [SMALL_STATE(2961)] = 91941, - [SMALL_STATE(2962)] = 91970, - [SMALL_STATE(2963)] = 91999, - [SMALL_STATE(2964)] = 92028, - [SMALL_STATE(2965)] = 92057, - [SMALL_STATE(2966)] = 92082, - [SMALL_STATE(2967)] = 92111, - [SMALL_STATE(2968)] = 92136, - [SMALL_STATE(2969)] = 92161, - [SMALL_STATE(2970)] = 92190, - [SMALL_STATE(2971)] = 92215, - [SMALL_STATE(2972)] = 92240, - [SMALL_STATE(2973)] = 92265, - [SMALL_STATE(2974)] = 92290, - [SMALL_STATE(2975)] = 92315, - [SMALL_STATE(2976)] = 92340, - [SMALL_STATE(2977)] = 92371, - [SMALL_STATE(2978)] = 92396, - [SMALL_STATE(2979)] = 92421, - [SMALL_STATE(2980)] = 92446, - [SMALL_STATE(2981)] = 92475, - [SMALL_STATE(2982)] = 92500, - [SMALL_STATE(2983)] = 92525, - [SMALL_STATE(2984)] = 92554, - [SMALL_STATE(2985)] = 92579, - [SMALL_STATE(2986)] = 92604, - [SMALL_STATE(2987)] = 92629, - [SMALL_STATE(2988)] = 92654, - [SMALL_STATE(2989)] = 92679, - [SMALL_STATE(2990)] = 92708, - [SMALL_STATE(2991)] = 92735, - [SMALL_STATE(2992)] = 92764, - [SMALL_STATE(2993)] = 92791, - [SMALL_STATE(2994)] = 92820, - [SMALL_STATE(2995)] = 92849, - [SMALL_STATE(2996)] = 92874, - [SMALL_STATE(2997)] = 92899, - [SMALL_STATE(2998)] = 92924, - [SMALL_STATE(2999)] = 92949, - [SMALL_STATE(3000)] = 92988, - [SMALL_STATE(3001)] = 93013, - [SMALL_STATE(3002)] = 93040, - [SMALL_STATE(3003)] = 93065, - [SMALL_STATE(3004)] = 93090, - [SMALL_STATE(3005)] = 93127, - [SMALL_STATE(3006)] = 93152, - [SMALL_STATE(3007)] = 93177, - [SMALL_STATE(3008)] = 93206, - [SMALL_STATE(3009)] = 93231, - [SMALL_STATE(3010)] = 93260, - [SMALL_STATE(3011)] = 93285, - [SMALL_STATE(3012)] = 93310, - [SMALL_STATE(3013)] = 93335, - [SMALL_STATE(3014)] = 93360, - [SMALL_STATE(3015)] = 93389, - [SMALL_STATE(3016)] = 93418, - [SMALL_STATE(3017)] = 93443, - [SMALL_STATE(3018)] = 93468, - [SMALL_STATE(3019)] = 93493, - [SMALL_STATE(3020)] = 93518, - [SMALL_STATE(3021)] = 93543, - [SMALL_STATE(3022)] = 93568, - [SMALL_STATE(3023)] = 93593, - [SMALL_STATE(3024)] = 93618, - [SMALL_STATE(3025)] = 93647, - [SMALL_STATE(3026)] = 93672, - [SMALL_STATE(3027)] = 93701, - [SMALL_STATE(3028)] = 93726, - [SMALL_STATE(3029)] = 93755, - [SMALL_STATE(3030)] = 93778, - [SMALL_STATE(3031)] = 93803, - [SMALL_STATE(3032)] = 93832, - [SMALL_STATE(3033)] = 93857, - [SMALL_STATE(3034)] = 93886, - [SMALL_STATE(3035)] = 93911, - [SMALL_STATE(3036)] = 93936, - [SMALL_STATE(3037)] = 93961, - [SMALL_STATE(3038)] = 93986, - [SMALL_STATE(3039)] = 94011, - [SMALL_STATE(3040)] = 94048, - [SMALL_STATE(3041)] = 94077, - [SMALL_STATE(3042)] = 94106, - [SMALL_STATE(3043)] = 94135, - [SMALL_STATE(3044)] = 94162, - [SMALL_STATE(3045)] = 94191, - [SMALL_STATE(3046)] = 94216, - [SMALL_STATE(3047)] = 94241, - [SMALL_STATE(3048)] = 94270, - [SMALL_STATE(3049)] = 94299, - [SMALL_STATE(3050)] = 94324, - [SMALL_STATE(3051)] = 94349, - [SMALL_STATE(3052)] = 94374, - [SMALL_STATE(3053)] = 94399, - [SMALL_STATE(3054)] = 94428, - [SMALL_STATE(3055)] = 94457, - [SMALL_STATE(3056)] = 94482, - [SMALL_STATE(3057)] = 94507, - [SMALL_STATE(3058)] = 94536, - [SMALL_STATE(3059)] = 94561, - [SMALL_STATE(3060)] = 94586, - [SMALL_STATE(3061)] = 94611, - [SMALL_STATE(3062)] = 94636, - [SMALL_STATE(3063)] = 94661, - [SMALL_STATE(3064)] = 94686, - [SMALL_STATE(3065)] = 94713, - [SMALL_STATE(3066)] = 94740, - [SMALL_STATE(3067)] = 94765, - [SMALL_STATE(3068)] = 94790, - [SMALL_STATE(3069)] = 94815, - [SMALL_STATE(3070)] = 94844, - [SMALL_STATE(3071)] = 94869, - [SMALL_STATE(3072)] = 94898, - [SMALL_STATE(3073)] = 94923, - [SMALL_STATE(3074)] = 94948, - [SMALL_STATE(3075)] = 94973, - [SMALL_STATE(3076)] = 95007, - [SMALL_STATE(3077)] = 95031, - [SMALL_STATE(3078)] = 95077, - [SMALL_STATE(3079)] = 95101, - [SMALL_STATE(3080)] = 95123, - [SMALL_STATE(3081)] = 95165, - [SMALL_STATE(3082)] = 95189, - [SMALL_STATE(3083)] = 95223, - [SMALL_STATE(3084)] = 95269, - [SMALL_STATE(3085)] = 95293, - [SMALL_STATE(3086)] = 95317, - [SMALL_STATE(3087)] = 95341, - [SMALL_STATE(3088)] = 95363, - [SMALL_STATE(3089)] = 95409, - [SMALL_STATE(3090)] = 95433, - [SMALL_STATE(3091)] = 95473, - [SMALL_STATE(3092)] = 95497, - [SMALL_STATE(3093)] = 95521, - [SMALL_STATE(3094)] = 95545, - [SMALL_STATE(3095)] = 95569, - [SMALL_STATE(3096)] = 95593, - [SMALL_STATE(3097)] = 95617, - [SMALL_STATE(3098)] = 95641, - [SMALL_STATE(3099)] = 95665, - [SMALL_STATE(3100)] = 95705, - [SMALL_STATE(3101)] = 95729, - [SMALL_STATE(3102)] = 95753, - [SMALL_STATE(3103)] = 95775, - [SMALL_STATE(3104)] = 95799, - [SMALL_STATE(3105)] = 95823, - [SMALL_STATE(3106)] = 95847, - [SMALL_STATE(3107)] = 95871, - [SMALL_STATE(3108)] = 95895, - [SMALL_STATE(3109)] = 95935, - [SMALL_STATE(3110)] = 95957, - [SMALL_STATE(3111)] = 95981, - [SMALL_STATE(3112)] = 96005, - [SMALL_STATE(3113)] = 96029, - [SMALL_STATE(3114)] = 96051, - [SMALL_STATE(3115)] = 96073, - [SMALL_STATE(3116)] = 96095, - [SMALL_STATE(3117)] = 96119, - [SMALL_STATE(3118)] = 96145, - [SMALL_STATE(3119)] = 96167, - [SMALL_STATE(3120)] = 96207, - [SMALL_STATE(3121)] = 96231, - [SMALL_STATE(3122)] = 96255, - [SMALL_STATE(3123)] = 96279, - [SMALL_STATE(3124)] = 96303, - [SMALL_STATE(3125)] = 96327, - [SMALL_STATE(3126)] = 96351, - [SMALL_STATE(3127)] = 96375, - [SMALL_STATE(3128)] = 96415, - [SMALL_STATE(3129)] = 96441, - [SMALL_STATE(3130)] = 96465, - [SMALL_STATE(3131)] = 96489, - [SMALL_STATE(3132)] = 96513, - [SMALL_STATE(3133)] = 96537, - [SMALL_STATE(3134)] = 96561, - [SMALL_STATE(3135)] = 96585, - [SMALL_STATE(3136)] = 96609, - [SMALL_STATE(3137)] = 96631, - [SMALL_STATE(3138)] = 96655, - [SMALL_STATE(3139)] = 96679, - [SMALL_STATE(3140)] = 96703, - [SMALL_STATE(3141)] = 96727, - [SMALL_STATE(3142)] = 96751, - [SMALL_STATE(3143)] = 96775, - [SMALL_STATE(3144)] = 96799, - [SMALL_STATE(3145)] = 96823, - [SMALL_STATE(3146)] = 96845, - [SMALL_STATE(3147)] = 96867, - [SMALL_STATE(3148)] = 96891, - [SMALL_STATE(3149)] = 96915, - [SMALL_STATE(3150)] = 96951, - [SMALL_STATE(3151)] = 96975, - [SMALL_STATE(3152)] = 97021, - [SMALL_STATE(3153)] = 97045, - [SMALL_STATE(3154)] = 97069, - [SMALL_STATE(3155)] = 97103, - [SMALL_STATE(3156)] = 97127, - [SMALL_STATE(3157)] = 97151, - [SMALL_STATE(3158)] = 97175, - [SMALL_STATE(3159)] = 97199, - [SMALL_STATE(3160)] = 97223, - [SMALL_STATE(3161)] = 97257, - [SMALL_STATE(3162)] = 97279, - [SMALL_STATE(3163)] = 97303, - [SMALL_STATE(3164)] = 97327, - [SMALL_STATE(3165)] = 97363, - [SMALL_STATE(3166)] = 97387, - [SMALL_STATE(3167)] = 97411, - [SMALL_STATE(3168)] = 97433, - [SMALL_STATE(3169)] = 97457, - [SMALL_STATE(3170)] = 97479, - [SMALL_STATE(3171)] = 97503, - [SMALL_STATE(3172)] = 97549, - [SMALL_STATE(3173)] = 97595, - [SMALL_STATE(3174)] = 97619, - [SMALL_STATE(3175)] = 97665, - [SMALL_STATE(3176)] = 97705, - [SMALL_STATE(3177)] = 97729, - [SMALL_STATE(3178)] = 97753, - [SMALL_STATE(3179)] = 97795, - [SMALL_STATE(3180)] = 97841, - [SMALL_STATE(3181)] = 97865, - [SMALL_STATE(3182)] = 97889, - [SMALL_STATE(3183)] = 97913, - [SMALL_STATE(3184)] = 97941, - [SMALL_STATE(3185)] = 97969, - [SMALL_STATE(3186)] = 97997, - [SMALL_STATE(3187)] = 98025, - [SMALL_STATE(3188)] = 98053, - [SMALL_STATE(3189)] = 98081, - [SMALL_STATE(3190)] = 98109, - [SMALL_STATE(3191)] = 98137, - [SMALL_STATE(3192)] = 98165, - [SMALL_STATE(3193)] = 98193, - [SMALL_STATE(3194)] = 98221, - [SMALL_STATE(3195)] = 98249, - [SMALL_STATE(3196)] = 98273, - [SMALL_STATE(3197)] = 98297, - [SMALL_STATE(3198)] = 98321, - [SMALL_STATE(3199)] = 98367, - [SMALL_STATE(3200)] = 98391, - [SMALL_STATE(3201)] = 98431, - [SMALL_STATE(3202)] = 98455, - [SMALL_STATE(3203)] = 98501, - [SMALL_STATE(3204)] = 98525, - [SMALL_STATE(3205)] = 98549, - [SMALL_STATE(3206)] = 98573, - [SMALL_STATE(3207)] = 98597, - [SMALL_STATE(3208)] = 98619, - [SMALL_STATE(3209)] = 98643, - [SMALL_STATE(3210)] = 98665, - [SMALL_STATE(3211)] = 98689, - [SMALL_STATE(3212)] = 98713, - [SMALL_STATE(3213)] = 98737, - [SMALL_STATE(3214)] = 98761, - [SMALL_STATE(3215)] = 98788, - [SMALL_STATE(3216)] = 98809, - [SMALL_STATE(3217)] = 98848, - [SMALL_STATE(3218)] = 98869, - [SMALL_STATE(3219)] = 98890, - [SMALL_STATE(3220)] = 98913, - [SMALL_STATE(3221)] = 98936, - [SMALL_STATE(3222)] = 98959, - [SMALL_STATE(3223)] = 98980, - [SMALL_STATE(3224)] = 99001, - [SMALL_STATE(3225)] = 99022, - [SMALL_STATE(3226)] = 99043, - [SMALL_STATE(3227)] = 99066, - [SMALL_STATE(3228)] = 99093, - [SMALL_STATE(3229)] = 99120, - [SMALL_STATE(3230)] = 99141, - [SMALL_STATE(3231)] = 99162, - [SMALL_STATE(3232)] = 99185, - [SMALL_STATE(3233)] = 99206, - [SMALL_STATE(3234)] = 99229, - [SMALL_STATE(3235)] = 99252, - [SMALL_STATE(3236)] = 99289, - [SMALL_STATE(3237)] = 99326, - [SMALL_STATE(3238)] = 99363, - [SMALL_STATE(3239)] = 99400, - [SMALL_STATE(3240)] = 99423, - [SMALL_STATE(3241)] = 99460, - [SMALL_STATE(3242)] = 99483, - [SMALL_STATE(3243)] = 99506, - [SMALL_STATE(3244)] = 99529, - [SMALL_STATE(3245)] = 99552, - [SMALL_STATE(3246)] = 99573, - [SMALL_STATE(3247)] = 99594, - [SMALL_STATE(3248)] = 99615, - [SMALL_STATE(3249)] = 99642, - [SMALL_STATE(3250)] = 99663, - [SMALL_STATE(3251)] = 99684, - [SMALL_STATE(3252)] = 99707, - [SMALL_STATE(3253)] = 99728, - [SMALL_STATE(3254)] = 99755, - [SMALL_STATE(3255)] = 99782, - [SMALL_STATE(3256)] = 99803, - [SMALL_STATE(3257)] = 99826, - [SMALL_STATE(3258)] = 99847, - [SMALL_STATE(3259)] = 99868, - [SMALL_STATE(3260)] = 99889, - [SMALL_STATE(3261)] = 99912, - [SMALL_STATE(3262)] = 99933, - [SMALL_STATE(3263)] = 99954, - [SMALL_STATE(3264)] = 99975, - [SMALL_STATE(3265)] = 100012, - [SMALL_STATE(3266)] = 100033, - [SMALL_STATE(3267)] = 100054, - [SMALL_STATE(3268)] = 100081, - [SMALL_STATE(3269)] = 100110, - [SMALL_STATE(3270)] = 100133, - [SMALL_STATE(3271)] = 100160, - [SMALL_STATE(3272)] = 100183, - [SMALL_STATE(3273)] = 100204, - [SMALL_STATE(3274)] = 100243, - [SMALL_STATE(3275)] = 100266, - [SMALL_STATE(3276)] = 100289, - [SMALL_STATE(3277)] = 100316, - [SMALL_STATE(3278)] = 100353, - [SMALL_STATE(3279)] = 100374, - [SMALL_STATE(3280)] = 100397, - [SMALL_STATE(3281)] = 100418, - [SMALL_STATE(3282)] = 100439, - [SMALL_STATE(3283)] = 100460, - [SMALL_STATE(3284)] = 100481, - [SMALL_STATE(3285)] = 100504, - [SMALL_STATE(3286)] = 100527, - [SMALL_STATE(3287)] = 100566, - [SMALL_STATE(3288)] = 100587, - [SMALL_STATE(3289)] = 100608, - [SMALL_STATE(3290)] = 100629, - [SMALL_STATE(3291)] = 100652, - [SMALL_STATE(3292)] = 100673, - [SMALL_STATE(3293)] = 100710, - [SMALL_STATE(3294)] = 100741, - [SMALL_STATE(3295)] = 100762, - [SMALL_STATE(3296)] = 100783, - [SMALL_STATE(3297)] = 100804, - [SMALL_STATE(3298)] = 100825, - [SMALL_STATE(3299)] = 100852, - [SMALL_STATE(3300)] = 100873, - [SMALL_STATE(3301)] = 100896, - [SMALL_STATE(3302)] = 100917, - [SMALL_STATE(3303)] = 100938, - [SMALL_STATE(3304)] = 100959, - [SMALL_STATE(3305)] = 100982, - [SMALL_STATE(3306)] = 101005, - [SMALL_STATE(3307)] = 101030, - [SMALL_STATE(3308)] = 101051, - [SMALL_STATE(3309)] = 101072, - [SMALL_STATE(3310)] = 101093, - [SMALL_STATE(3311)] = 101114, - [SMALL_STATE(3312)] = 101135, - [SMALL_STATE(3313)] = 101156, - [SMALL_STATE(3314)] = 101177, - [SMALL_STATE(3315)] = 101200, - [SMALL_STATE(3316)] = 101221, - [SMALL_STATE(3317)] = 101242, - [SMALL_STATE(3318)] = 101269, - [SMALL_STATE(3319)] = 101296, - [SMALL_STATE(3320)] = 101323, - [SMALL_STATE(3321)] = 101350, - [SMALL_STATE(3322)] = 101377, - [SMALL_STATE(3323)] = 101404, - [SMALL_STATE(3324)] = 101431, - [SMALL_STATE(3325)] = 101458, - [SMALL_STATE(3326)] = 101485, - [SMALL_STATE(3327)] = 101512, - [SMALL_STATE(3328)] = 101539, - [SMALL_STATE(3329)] = 101562, - [SMALL_STATE(3330)] = 101583, - [SMALL_STATE(3331)] = 101604, - [SMALL_STATE(3332)] = 101641, - [SMALL_STATE(3333)] = 101662, - [SMALL_STATE(3334)] = 101683, - [SMALL_STATE(3335)] = 101704, - [SMALL_STATE(3336)] = 101741, - [SMALL_STATE(3337)] = 101778, - [SMALL_STATE(3338)] = 101815, - [SMALL_STATE(3339)] = 101852, - [SMALL_STATE(3340)] = 101891, - [SMALL_STATE(3341)] = 101912, - [SMALL_STATE(3342)] = 101933, - [SMALL_STATE(3343)] = 101972, - [SMALL_STATE(3344)] = 101995, - [SMALL_STATE(3345)] = 102034, - [SMALL_STATE(3346)] = 102057, - [SMALL_STATE(3347)] = 102080, - [SMALL_STATE(3348)] = 102103, - [SMALL_STATE(3349)] = 102130, - [SMALL_STATE(3350)] = 102151, - [SMALL_STATE(3351)] = 102178, - [SMALL_STATE(3352)] = 102201, - [SMALL_STATE(3353)] = 102222, - [SMALL_STATE(3354)] = 102261, - [SMALL_STATE(3355)] = 102282, - [SMALL_STATE(3356)] = 102314, - [SMALL_STATE(3357)] = 102336, - [SMALL_STATE(3358)] = 102372, - [SMALL_STATE(3359)] = 102396, - [SMALL_STATE(3360)] = 102428, - [SMALL_STATE(3361)] = 102452, - [SMALL_STATE(3362)] = 102486, - [SMALL_STATE(3363)] = 102512, - [SMALL_STATE(3364)] = 102538, - [SMALL_STATE(3365)] = 102564, - [SMALL_STATE(3366)] = 102588, - [SMALL_STATE(3367)] = 102624, - [SMALL_STATE(3368)] = 102650, - [SMALL_STATE(3369)] = 102674, - [SMALL_STATE(3370)] = 102704, - [SMALL_STATE(3371)] = 102728, - [SMALL_STATE(3372)] = 102752, - [SMALL_STATE(3373)] = 102774, - [SMALL_STATE(3374)] = 102798, - [SMALL_STATE(3375)] = 102824, - [SMALL_STATE(3376)] = 102858, - [SMALL_STATE(3377)] = 102880, - [SMALL_STATE(3378)] = 102902, - [SMALL_STATE(3379)] = 102930, - [SMALL_STATE(3380)] = 102952, - [SMALL_STATE(3381)] = 102978, - [SMALL_STATE(3382)] = 103010, - [SMALL_STATE(3383)] = 103032, - [SMALL_STATE(3384)] = 103054, - [SMALL_STATE(3385)] = 103080, - [SMALL_STATE(3386)] = 103114, - [SMALL_STATE(3387)] = 103144, - [SMALL_STATE(3388)] = 103180, - [SMALL_STATE(3389)] = 103204, - [SMALL_STATE(3390)] = 103240, - [SMALL_STATE(3391)] = 103266, - [SMALL_STATE(3392)] = 103292, - [SMALL_STATE(3393)] = 103318, - [SMALL_STATE(3394)] = 103350, - [SMALL_STATE(3395)] = 103376, - [SMALL_STATE(3396)] = 103398, - [SMALL_STATE(3397)] = 103430, - [SMALL_STATE(3398)] = 103456, - [SMALL_STATE(3399)] = 103480, - [SMALL_STATE(3400)] = 103504, - [SMALL_STATE(3401)] = 103530, - [SMALL_STATE(3402)] = 103563, - [SMALL_STATE(3403)] = 103594, - [SMALL_STATE(3404)] = 103625, - [SMALL_STATE(3405)] = 103656, - [SMALL_STATE(3406)] = 103689, - [SMALL_STATE(3407)] = 103722, - [SMALL_STATE(3408)] = 103743, - [SMALL_STATE(3409)] = 103774, - [SMALL_STATE(3410)] = 103807, - [SMALL_STATE(3411)] = 103840, - [SMALL_STATE(3412)] = 103873, - [SMALL_STATE(3413)] = 103896, - [SMALL_STATE(3414)] = 103921, - [SMALL_STATE(3415)] = 103942, - [SMALL_STATE(3416)] = 103973, - [SMALL_STATE(3417)] = 103998, - [SMALL_STATE(3418)] = 104019, - [SMALL_STATE(3419)] = 104054, - [SMALL_STATE(3420)] = 104077, - [SMALL_STATE(3421)] = 104110, - [SMALL_STATE(3422)] = 104143, - [SMALL_STATE(3423)] = 104174, - [SMALL_STATE(3424)] = 104199, - [SMALL_STATE(3425)] = 104220, - [SMALL_STATE(3426)] = 104241, - [SMALL_STATE(3427)] = 104266, - [SMALL_STATE(3428)] = 104297, - [SMALL_STATE(3429)] = 104328, - [SMALL_STATE(3430)] = 104349, - [SMALL_STATE(3431)] = 104382, - [SMALL_STATE(3432)] = 104415, - [SMALL_STATE(3433)] = 104446, - [SMALL_STATE(3434)] = 104477, - [SMALL_STATE(3435)] = 104508, - [SMALL_STATE(3436)] = 104531, - [SMALL_STATE(3437)] = 104564, - [SMALL_STATE(3438)] = 104597, - [SMALL_STATE(3439)] = 104628, - [SMALL_STATE(3440)] = 104653, - [SMALL_STATE(3441)] = 104676, - [SMALL_STATE(3442)] = 104707, - [SMALL_STATE(3443)] = 104740, - [SMALL_STATE(3444)] = 104773, - [SMALL_STATE(3445)] = 104804, - [SMALL_STATE(3446)] = 104827, - [SMALL_STATE(3447)] = 104860, - [SMALL_STATE(3448)] = 104893, - [SMALL_STATE(3449)] = 104914, - [SMALL_STATE(3450)] = 104947, - [SMALL_STATE(3451)] = 104970, - [SMALL_STATE(3452)] = 105003, - [SMALL_STATE(3453)] = 105024, - [SMALL_STATE(3454)] = 105057, - [SMALL_STATE(3455)] = 105088, - [SMALL_STATE(3456)] = 105121, - [SMALL_STATE(3457)] = 105156, - [SMALL_STATE(3458)] = 105189, - [SMALL_STATE(3459)] = 105222, - [SMALL_STATE(3460)] = 105253, - [SMALL_STATE(3461)] = 105276, - [SMALL_STATE(3462)] = 105309, - [SMALL_STATE(3463)] = 105342, - [SMALL_STATE(3464)] = 105375, - [SMALL_STATE(3465)] = 105408, - [SMALL_STATE(3466)] = 105441, - [SMALL_STATE(3467)] = 105474, - [SMALL_STATE(3468)] = 105505, - [SMALL_STATE(3469)] = 105538, - [SMALL_STATE(3470)] = 105571, - [SMALL_STATE(3471)] = 105596, - [SMALL_STATE(3472)] = 105629, - [SMALL_STATE(3473)] = 105662, - [SMALL_STATE(3474)] = 105695, - [SMALL_STATE(3475)] = 105728, - [SMALL_STATE(3476)] = 105761, - [SMALL_STATE(3477)] = 105792, - [SMALL_STATE(3478)] = 105823, - [SMALL_STATE(3479)] = 105856, - [SMALL_STATE(3480)] = 105887, - [SMALL_STATE(3481)] = 105912, - [SMALL_STATE(3482)] = 105933, - [SMALL_STATE(3483)] = 105958, - [SMALL_STATE(3484)] = 105989, - [SMALL_STATE(3485)] = 106010, - [SMALL_STATE(3486)] = 106031, - [SMALL_STATE(3487)] = 106062, - [SMALL_STATE(3488)] = 106091, - [SMALL_STATE(3489)] = 106112, - [SMALL_STATE(3490)] = 106133, - [SMALL_STATE(3491)] = 106164, - [SMALL_STATE(3492)] = 106184, - [SMALL_STATE(3493)] = 106204, - [SMALL_STATE(3494)] = 106230, - [SMALL_STATE(3495)] = 106258, - [SMALL_STATE(3496)] = 106286, - [SMALL_STATE(3497)] = 106312, - [SMALL_STATE(3498)] = 106332, - [SMALL_STATE(3499)] = 106360, - [SMALL_STATE(3500)] = 106388, - [SMALL_STATE(3501)] = 106410, - [SMALL_STATE(3502)] = 106438, - [SMALL_STATE(3503)] = 106466, - [SMALL_STATE(3504)] = 106494, - [SMALL_STATE(3505)] = 106522, - [SMALL_STATE(3506)] = 106542, - [SMALL_STATE(3507)] = 106570, - [SMALL_STATE(3508)] = 106598, - [SMALL_STATE(3509)] = 106618, - [SMALL_STATE(3510)] = 106646, - [SMALL_STATE(3511)] = 106674, - [SMALL_STATE(3512)] = 106694, - [SMALL_STATE(3513)] = 106722, - [SMALL_STATE(3514)] = 106750, - [SMALL_STATE(3515)] = 106774, - [SMALL_STATE(3516)] = 106802, - [SMALL_STATE(3517)] = 106830, - [SMALL_STATE(3518)] = 106858, - [SMALL_STATE(3519)] = 106882, - [SMALL_STATE(3520)] = 106910, - [SMALL_STATE(3521)] = 106938, - [SMALL_STATE(3522)] = 106966, - [SMALL_STATE(3523)] = 106994, - [SMALL_STATE(3524)] = 107022, - [SMALL_STATE(3525)] = 107050, - [SMALL_STATE(3526)] = 107078, - [SMALL_STATE(3527)] = 107108, - [SMALL_STATE(3528)] = 107136, - [SMALL_STATE(3529)] = 107156, - [SMALL_STATE(3530)] = 107184, - [SMALL_STATE(3531)] = 107212, - [SMALL_STATE(3532)] = 107240, - [SMALL_STATE(3533)] = 107258, - [SMALL_STATE(3534)] = 107286, - [SMALL_STATE(3535)] = 107308, - [SMALL_STATE(3536)] = 107336, - [SMALL_STATE(3537)] = 107358, - [SMALL_STATE(3538)] = 107386, - [SMALL_STATE(3539)] = 107406, - [SMALL_STATE(3540)] = 107434, - [SMALL_STATE(3541)] = 107462, - [SMALL_STATE(3542)] = 107482, - [SMALL_STATE(3543)] = 107502, - [SMALL_STATE(3544)] = 107530, - [SMALL_STATE(3545)] = 107558, - [SMALL_STATE(3546)] = 107586, - [SMALL_STATE(3547)] = 107606, - [SMALL_STATE(3548)] = 107634, - [SMALL_STATE(3549)] = 107656, - [SMALL_STATE(3550)] = 107676, - [SMALL_STATE(3551)] = 107704, - [SMALL_STATE(3552)] = 107732, - [SMALL_STATE(3553)] = 107760, - [SMALL_STATE(3554)] = 107782, - [SMALL_STATE(3555)] = 107806, - [SMALL_STATE(3556)] = 107836, - [SMALL_STATE(3557)] = 107864, - [SMALL_STATE(3558)] = 107892, - [SMALL_STATE(3559)] = 107920, - [SMALL_STATE(3560)] = 107944, - [SMALL_STATE(3561)] = 107964, - [SMALL_STATE(3562)] = 107984, - [SMALL_STATE(3563)] = 108010, - [SMALL_STATE(3564)] = 108032, - [SMALL_STATE(3565)] = 108056, - [SMALL_STATE(3566)] = 108078, - [SMALL_STATE(3567)] = 108106, - [SMALL_STATE(3568)] = 108134, - [SMALL_STATE(3569)] = 108154, - [SMALL_STATE(3570)] = 108176, - [SMALL_STATE(3571)] = 108194, - [SMALL_STATE(3572)] = 108218, - [SMALL_STATE(3573)] = 108244, - [SMALL_STATE(3574)] = 108269, - [SMALL_STATE(3575)] = 108294, - [SMALL_STATE(3576)] = 108315, - [SMALL_STATE(3577)] = 108340, - [SMALL_STATE(3578)] = 108363, - [SMALL_STATE(3579)] = 108382, - [SMALL_STATE(3580)] = 108401, - [SMALL_STATE(3581)] = 108426, - [SMALL_STATE(3582)] = 108455, - [SMALL_STATE(3583)] = 108474, - [SMALL_STATE(3584)] = 108493, - [SMALL_STATE(3585)] = 108512, - [SMALL_STATE(3586)] = 108531, - [SMALL_STATE(3587)] = 108556, - [SMALL_STATE(3588)] = 108581, - [SMALL_STATE(3589)] = 108600, - [SMALL_STATE(3590)] = 108621, - [SMALL_STATE(3591)] = 108642, - [SMALL_STATE(3592)] = 108667, - [SMALL_STATE(3593)] = 108690, - [SMALL_STATE(3594)] = 108711, - [SMALL_STATE(3595)] = 108736, - [SMALL_STATE(3596)] = 108757, - [SMALL_STATE(3597)] = 108776, - [SMALL_STATE(3598)] = 108795, - [SMALL_STATE(3599)] = 108822, - [SMALL_STATE(3600)] = 108853, - [SMALL_STATE(3601)] = 108876, - [SMALL_STATE(3602)] = 108897, - [SMALL_STATE(3603)] = 108922, - [SMALL_STATE(3604)] = 108949, - [SMALL_STATE(3605)] = 108970, - [SMALL_STATE(3606)] = 108995, - [SMALL_STATE(3607)] = 109022, - [SMALL_STATE(3608)] = 109047, - [SMALL_STATE(3609)] = 109074, - [SMALL_STATE(3610)] = 109097, - [SMALL_STATE(3611)] = 109122, - [SMALL_STATE(3612)] = 109145, - [SMALL_STATE(3613)] = 109170, - [SMALL_STATE(3614)] = 109195, - [SMALL_STATE(3615)] = 109214, - [SMALL_STATE(3616)] = 109239, - [SMALL_STATE(3617)] = 109258, - [SMALL_STATE(3618)] = 109277, - [SMALL_STATE(3619)] = 109296, - [SMALL_STATE(3620)] = 109321, - [SMALL_STATE(3621)] = 109348, - [SMALL_STATE(3622)] = 109375, - [SMALL_STATE(3623)] = 109397, - [SMALL_STATE(3624)] = 109425, - [SMALL_STATE(3625)] = 109447, - [SMALL_STATE(3626)] = 109467, - [SMALL_STATE(3627)] = 109485, - [SMALL_STATE(3628)] = 109513, - [SMALL_STATE(3629)] = 109541, - [SMALL_STATE(3630)] = 109569, - [SMALL_STATE(3631)] = 109591, - [SMALL_STATE(3632)] = 109613, - [SMALL_STATE(3633)] = 109639, - [SMALL_STATE(3634)] = 109667, - [SMALL_STATE(3635)] = 109687, - [SMALL_STATE(3636)] = 109707, - [SMALL_STATE(3637)] = 109727, - [SMALL_STATE(3638)] = 109749, - [SMALL_STATE(3639)] = 109767, - [SMALL_STATE(3640)] = 109793, - [SMALL_STATE(3641)] = 109817, - [SMALL_STATE(3642)] = 109845, - [SMALL_STATE(3643)] = 109873, - [SMALL_STATE(3644)] = 109897, - [SMALL_STATE(3645)] = 109917, - [SMALL_STATE(3646)] = 109935, - [SMALL_STATE(3647)] = 109963, - [SMALL_STATE(3648)] = 109989, - [SMALL_STATE(3649)] = 110017, - [SMALL_STATE(3650)] = 110035, - [SMALL_STATE(3651)] = 110063, - [SMALL_STATE(3652)] = 110091, - [SMALL_STATE(3653)] = 110109, - [SMALL_STATE(3654)] = 110133, - [SMALL_STATE(3655)] = 110161, - [SMALL_STATE(3656)] = 110187, - [SMALL_STATE(3657)] = 110215, - [SMALL_STATE(3658)] = 110243, - [SMALL_STATE(3659)] = 110271, - [SMALL_STATE(3660)] = 110299, - [SMALL_STATE(3661)] = 110323, - [SMALL_STATE(3662)] = 110341, - [SMALL_STATE(3663)] = 110369, - [SMALL_STATE(3664)] = 110387, - [SMALL_STATE(3665)] = 110413, - [SMALL_STATE(3666)] = 110441, - [SMALL_STATE(3667)] = 110469, - [SMALL_STATE(3668)] = 110495, - [SMALL_STATE(3669)] = 110521, - [SMALL_STATE(3670)] = 110547, - [SMALL_STATE(3671)] = 110575, - [SMALL_STATE(3672)] = 110603, - [SMALL_STATE(3673)] = 110629, - [SMALL_STATE(3674)] = 110655, - [SMALL_STATE(3675)] = 110683, - [SMALL_STATE(3676)] = 110711, - [SMALL_STATE(3677)] = 110737, - [SMALL_STATE(3678)] = 110759, - [SMALL_STATE(3679)] = 110781, - [SMALL_STATE(3680)] = 110803, - [SMALL_STATE(3681)] = 110825, - [SMALL_STATE(3682)] = 110847, - [SMALL_STATE(3683)] = 110873, - [SMALL_STATE(3684)] = 110891, - [SMALL_STATE(3685)] = 110917, - [SMALL_STATE(3686)] = 110945, - [SMALL_STATE(3687)] = 110973, - [SMALL_STATE(3688)] = 110995, - [SMALL_STATE(3689)] = 111023, - [SMALL_STATE(3690)] = 111051, - [SMALL_STATE(3691)] = 111075, - [SMALL_STATE(3692)] = 111103, - [SMALL_STATE(3693)] = 111129, - [SMALL_STATE(3694)] = 111155, - [SMALL_STATE(3695)] = 111173, - [SMALL_STATE(3696)] = 111201, - [SMALL_STATE(3697)] = 111227, - [SMALL_STATE(3698)] = 111255, - [SMALL_STATE(3699)] = 111279, - [SMALL_STATE(3700)] = 111303, - [SMALL_STATE(3701)] = 111325, - [SMALL_STATE(3702)] = 111353, - [SMALL_STATE(3703)] = 111381, - [SMALL_STATE(3704)] = 111405, - [SMALL_STATE(3705)] = 111429, - [SMALL_STATE(3706)] = 111447, - [SMALL_STATE(3707)] = 111475, - [SMALL_STATE(3708)] = 111503, - [SMALL_STATE(3709)] = 111531, - [SMALL_STATE(3710)] = 111559, - [SMALL_STATE(3711)] = 111585, - [SMALL_STATE(3712)] = 111611, - [SMALL_STATE(3713)] = 111637, - [SMALL_STATE(3714)] = 111665, - [SMALL_STATE(3715)] = 111685, - [SMALL_STATE(3716)] = 111705, - [SMALL_STATE(3717)] = 111733, - [SMALL_STATE(3718)] = 111751, - [SMALL_STATE(3719)] = 111777, - [SMALL_STATE(3720)] = 111803, - [SMALL_STATE(3721)] = 111831, - [SMALL_STATE(3722)] = 111859, - [SMALL_STATE(3723)] = 111887, - [SMALL_STATE(3724)] = 111907, - [SMALL_STATE(3725)] = 111935, - [SMALL_STATE(3726)] = 111963, - [SMALL_STATE(3727)] = 111981, - [SMALL_STATE(3728)] = 112009, - [SMALL_STATE(3729)] = 112037, - [SMALL_STATE(3730)] = 112065, - [SMALL_STATE(3731)] = 112083, - [SMALL_STATE(3732)] = 112108, - [SMALL_STATE(3733)] = 112131, - [SMALL_STATE(3734)] = 112152, - [SMALL_STATE(3735)] = 112175, - [SMALL_STATE(3736)] = 112198, - [SMALL_STATE(3737)] = 112221, - [SMALL_STATE(3738)] = 112244, - [SMALL_STATE(3739)] = 112265, - [SMALL_STATE(3740)] = 112282, - [SMALL_STATE(3741)] = 112299, - [SMALL_STATE(3742)] = 112320, - [SMALL_STATE(3743)] = 112341, - [SMALL_STATE(3744)] = 112366, - [SMALL_STATE(3745)] = 112391, - [SMALL_STATE(3746)] = 112416, - [SMALL_STATE(3747)] = 112437, - [SMALL_STATE(3748)] = 112460, - [SMALL_STATE(3749)] = 112483, - [SMALL_STATE(3750)] = 112506, - [SMALL_STATE(3751)] = 112527, - [SMALL_STATE(3752)] = 112548, - [SMALL_STATE(3753)] = 112571, - [SMALL_STATE(3754)] = 112590, - [SMALL_STATE(3755)] = 112609, - [SMALL_STATE(3756)] = 112630, - [SMALL_STATE(3757)] = 112651, - [SMALL_STATE(3758)] = 112672, - [SMALL_STATE(3759)] = 112691, - [SMALL_STATE(3760)] = 112710, - [SMALL_STATE(3761)] = 112733, - [SMALL_STATE(3762)] = 112756, - [SMALL_STATE(3763)] = 112781, - [SMALL_STATE(3764)] = 112804, - [SMALL_STATE(3765)] = 112827, - [SMALL_STATE(3766)] = 112848, - [SMALL_STATE(3767)] = 112869, - [SMALL_STATE(3768)] = 112894, - [SMALL_STATE(3769)] = 112913, - [SMALL_STATE(3770)] = 112932, - [SMALL_STATE(3771)] = 112957, - [SMALL_STATE(3772)] = 112980, - [SMALL_STATE(3773)] = 113005, - [SMALL_STATE(3774)] = 113030, - [SMALL_STATE(3775)] = 113053, - [SMALL_STATE(3776)] = 113078, - [SMALL_STATE(3777)] = 113103, - [SMALL_STATE(3778)] = 113128, - [SMALL_STATE(3779)] = 113151, - [SMALL_STATE(3780)] = 113176, - [SMALL_STATE(3781)] = 113197, - [SMALL_STATE(3782)] = 113220, - [SMALL_STATE(3783)] = 113243, - [SMALL_STATE(3784)] = 113266, - [SMALL_STATE(3785)] = 113291, - [SMALL_STATE(3786)] = 113314, - [SMALL_STATE(3787)] = 113339, - [SMALL_STATE(3788)] = 113362, - [SMALL_STATE(3789)] = 113385, - [SMALL_STATE(3790)] = 113408, - [SMALL_STATE(3791)] = 113431, - [SMALL_STATE(3792)] = 113446, - [SMALL_STATE(3793)] = 113471, - [SMALL_STATE(3794)] = 113490, - [SMALL_STATE(3795)] = 113515, - [SMALL_STATE(3796)] = 113530, - [SMALL_STATE(3797)] = 113545, - [SMALL_STATE(3798)] = 113566, - [SMALL_STATE(3799)] = 113581, - [SMALL_STATE(3800)] = 113596, - [SMALL_STATE(3801)] = 113611, - [SMALL_STATE(3802)] = 113630, - [SMALL_STATE(3803)] = 113655, - [SMALL_STATE(3804)] = 113674, - [SMALL_STATE(3805)] = 113699, - [SMALL_STATE(3806)] = 113722, - [SMALL_STATE(3807)] = 113745, - [SMALL_STATE(3808)] = 113766, - [SMALL_STATE(3809)] = 113787, - [SMALL_STATE(3810)] = 113808, - [SMALL_STATE(3811)] = 113827, - [SMALL_STATE(3812)] = 113848, - [SMALL_STATE(3813)] = 113867, - [SMALL_STATE(3814)] = 113886, - [SMALL_STATE(3815)] = 113907, - [SMALL_STATE(3816)] = 113932, - [SMALL_STATE(3817)] = 113957, - [SMALL_STATE(3818)] = 113980, - [SMALL_STATE(3819)] = 114001, - [SMALL_STATE(3820)] = 114024, - [SMALL_STATE(3821)] = 114049, - [SMALL_STATE(3822)] = 114072, - [SMALL_STATE(3823)] = 114095, - [SMALL_STATE(3824)] = 114118, - [SMALL_STATE(3825)] = 114141, - [SMALL_STATE(3826)] = 114164, - [SMALL_STATE(3827)] = 114187, - [SMALL_STATE(3828)] = 114210, - [SMALL_STATE(3829)] = 114233, - [SMALL_STATE(3830)] = 114256, - [SMALL_STATE(3831)] = 114279, - [SMALL_STATE(3832)] = 114302, - [SMALL_STATE(3833)] = 114325, - [SMALL_STATE(3834)] = 114348, - [SMALL_STATE(3835)] = 114371, - [SMALL_STATE(3836)] = 114394, - [SMALL_STATE(3837)] = 114419, - [SMALL_STATE(3838)] = 114442, - [SMALL_STATE(3839)] = 114463, - [SMALL_STATE(3840)] = 114486, - [SMALL_STATE(3841)] = 114509, - [SMALL_STATE(3842)] = 114532, - [SMALL_STATE(3843)] = 114555, - [SMALL_STATE(3844)] = 114576, - [SMALL_STATE(3845)] = 114597, - [SMALL_STATE(3846)] = 114616, - [SMALL_STATE(3847)] = 114637, - [SMALL_STATE(3848)] = 114662, - [SMALL_STATE(3849)] = 114683, - [SMALL_STATE(3850)] = 114702, - [SMALL_STATE(3851)] = 114721, - [SMALL_STATE(3852)] = 114742, - [SMALL_STATE(3853)] = 114761, - [SMALL_STATE(3854)] = 114782, - [SMALL_STATE(3855)] = 114799, - [SMALL_STATE(3856)] = 114816, - [SMALL_STATE(3857)] = 114833, - [SMALL_STATE(3858)] = 114856, - [SMALL_STATE(3859)] = 114879, - [SMALL_STATE(3860)] = 114902, - [SMALL_STATE(3861)] = 114923, - [SMALL_STATE(3862)] = 114944, - [SMALL_STATE(3863)] = 114965, - [SMALL_STATE(3864)] = 114986, - [SMALL_STATE(3865)] = 115009, - [SMALL_STATE(3866)] = 115034, - [SMALL_STATE(3867)] = 115059, - [SMALL_STATE(3868)] = 115084, - [SMALL_STATE(3869)] = 115105, - [SMALL_STATE(3870)] = 115126, - [SMALL_STATE(3871)] = 115147, - [SMALL_STATE(3872)] = 115166, - [SMALL_STATE(3873)] = 115187, - [SMALL_STATE(3874)] = 115206, - [SMALL_STATE(3875)] = 115227, - [SMALL_STATE(3876)] = 115246, - [SMALL_STATE(3877)] = 115271, - [SMALL_STATE(3878)] = 115296, - [SMALL_STATE(3879)] = 115321, - [SMALL_STATE(3880)] = 115340, - [SMALL_STATE(3881)] = 115361, - [SMALL_STATE(3882)] = 115386, - [SMALL_STATE(3883)] = 115411, - [SMALL_STATE(3884)] = 115430, - [SMALL_STATE(3885)] = 115446, - [SMALL_STATE(3886)] = 115466, - [SMALL_STATE(3887)] = 115486, - [SMALL_STATE(3888)] = 115508, - [SMALL_STATE(3889)] = 115522, - [SMALL_STATE(3890)] = 115538, - [SMALL_STATE(3891)] = 115554, - [SMALL_STATE(3892)] = 115568, - [SMALL_STATE(3893)] = 115588, - [SMALL_STATE(3894)] = 115610, - [SMALL_STATE(3895)] = 115624, - [SMALL_STATE(3896)] = 115638, - [SMALL_STATE(3897)] = 115660, - [SMALL_STATE(3898)] = 115682, - [SMALL_STATE(3899)] = 115696, - [SMALL_STATE(3900)] = 115718, - [SMALL_STATE(3901)] = 115734, - [SMALL_STATE(3902)] = 115754, - [SMALL_STATE(3903)] = 115772, - [SMALL_STATE(3904)] = 115790, - [SMALL_STATE(3905)] = 115806, - [SMALL_STATE(3906)] = 115828, - [SMALL_STATE(3907)] = 115850, - [SMALL_STATE(3908)] = 115872, - [SMALL_STATE(3909)] = 115888, - [SMALL_STATE(3910)] = 115904, - [SMALL_STATE(3911)] = 115926, - [SMALL_STATE(3912)] = 115946, - [SMALL_STATE(3913)] = 115966, - [SMALL_STATE(3914)] = 115988, - [SMALL_STATE(3915)] = 116004, - [SMALL_STATE(3916)] = 116026, - [SMALL_STATE(3917)] = 116044, - [SMALL_STATE(3918)] = 116066, - [SMALL_STATE(3919)] = 116084, - [SMALL_STATE(3920)] = 116100, - [SMALL_STATE(3921)] = 116122, - [SMALL_STATE(3922)] = 116138, - [SMALL_STATE(3923)] = 116158, - [SMALL_STATE(3924)] = 116174, - [SMALL_STATE(3925)] = 116192, - [SMALL_STATE(3926)] = 116210, - [SMALL_STATE(3927)] = 116226, - [SMALL_STATE(3928)] = 116246, - [SMALL_STATE(3929)] = 116266, - [SMALL_STATE(3930)] = 116282, - [SMALL_STATE(3931)] = 116302, - [SMALL_STATE(3932)] = 116318, - [SMALL_STATE(3933)] = 116338, - [SMALL_STATE(3934)] = 116360, - [SMALL_STATE(3935)] = 116380, - [SMALL_STATE(3936)] = 116396, - [SMALL_STATE(3937)] = 116412, - [SMALL_STATE(3938)] = 116432, - [SMALL_STATE(3939)] = 116452, - [SMALL_STATE(3940)] = 116474, - [SMALL_STATE(3941)] = 116496, - [SMALL_STATE(3942)] = 116516, - [SMALL_STATE(3943)] = 116534, - [SMALL_STATE(3944)] = 116554, - [SMALL_STATE(3945)] = 116574, - [SMALL_STATE(3946)] = 116594, - [SMALL_STATE(3947)] = 116610, - [SMALL_STATE(3948)] = 116626, - [SMALL_STATE(3949)] = 116642, - [SMALL_STATE(3950)] = 116658, - [SMALL_STATE(3951)] = 116674, - [SMALL_STATE(3952)] = 116692, - [SMALL_STATE(3953)] = 116706, - [SMALL_STATE(3954)] = 116724, - [SMALL_STATE(3955)] = 116744, - [SMALL_STATE(3956)] = 116764, - [SMALL_STATE(3957)] = 116786, - [SMALL_STATE(3958)] = 116808, - [SMALL_STATE(3959)] = 116826, - [SMALL_STATE(3960)] = 116844, - [SMALL_STATE(3961)] = 116866, - [SMALL_STATE(3962)] = 116886, - [SMALL_STATE(3963)] = 116902, - [SMALL_STATE(3964)] = 116920, - [SMALL_STATE(3965)] = 116936, - [SMALL_STATE(3966)] = 116956, - [SMALL_STATE(3967)] = 116976, - [SMALL_STATE(3968)] = 116998, - [SMALL_STATE(3969)] = 117018, - [SMALL_STATE(3970)] = 117038, - [SMALL_STATE(3971)] = 117056, - [SMALL_STATE(3972)] = 117072, - [SMALL_STATE(3973)] = 117088, - [SMALL_STATE(3974)] = 117104, - [SMALL_STATE(3975)] = 117124, - [SMALL_STATE(3976)] = 117146, - [SMALL_STATE(3977)] = 117166, - [SMALL_STATE(3978)] = 117186, - [SMALL_STATE(3979)] = 117208, - [SMALL_STATE(3980)] = 117228, - [SMALL_STATE(3981)] = 117250, - [SMALL_STATE(3982)] = 117272, - [SMALL_STATE(3983)] = 117294, - [SMALL_STATE(3984)] = 117312, - [SMALL_STATE(3985)] = 117330, - [SMALL_STATE(3986)] = 117348, - [SMALL_STATE(3987)] = 117368, - [SMALL_STATE(3988)] = 117390, - [SMALL_STATE(3989)] = 117412, - [SMALL_STATE(3990)] = 117430, - [SMALL_STATE(3991)] = 117446, - [SMALL_STATE(3992)] = 117466, - [SMALL_STATE(3993)] = 117488, - [SMALL_STATE(3994)] = 117504, - [SMALL_STATE(3995)] = 117526, - [SMALL_STATE(3996)] = 117544, - [SMALL_STATE(3997)] = 117564, - [SMALL_STATE(3998)] = 117582, - [SMALL_STATE(3999)] = 117602, - [SMALL_STATE(4000)] = 117622, - [SMALL_STATE(4001)] = 117642, - [SMALL_STATE(4002)] = 117656, - [SMALL_STATE(4003)] = 117674, - [SMALL_STATE(4004)] = 117694, - [SMALL_STATE(4005)] = 117714, - [SMALL_STATE(4006)] = 117734, - [SMALL_STATE(4007)] = 117754, - [SMALL_STATE(4008)] = 117768, - [SMALL_STATE(4009)] = 117788, - [SMALL_STATE(4010)] = 117808, - [SMALL_STATE(4011)] = 117828, - [SMALL_STATE(4012)] = 117848, - [SMALL_STATE(4013)] = 117868, - [SMALL_STATE(4014)] = 117888, - [SMALL_STATE(4015)] = 117910, - [SMALL_STATE(4016)] = 117926, - [SMALL_STATE(4017)] = 117942, - [SMALL_STATE(4018)] = 117958, - [SMALL_STATE(4019)] = 117974, - [SMALL_STATE(4020)] = 117996, - [SMALL_STATE(4021)] = 118016, - [SMALL_STATE(4022)] = 118038, - [SMALL_STATE(4023)] = 118060, - [SMALL_STATE(4024)] = 118082, - [SMALL_STATE(4025)] = 118098, - [SMALL_STATE(4026)] = 118118, - [SMALL_STATE(4027)] = 118138, - [SMALL_STATE(4028)] = 118158, - [SMALL_STATE(4029)] = 118180, - [SMALL_STATE(4030)] = 118198, - [SMALL_STATE(4031)] = 118214, - [SMALL_STATE(4032)] = 118234, - [SMALL_STATE(4033)] = 118252, - [SMALL_STATE(4034)] = 118272, - [SMALL_STATE(4035)] = 118294, - [SMALL_STATE(4036)] = 118312, - [SMALL_STATE(4037)] = 118332, - [SMALL_STATE(4038)] = 118352, - [SMALL_STATE(4039)] = 118370, - [SMALL_STATE(4040)] = 118388, - [SMALL_STATE(4041)] = 118410, - [SMALL_STATE(4042)] = 118432, - [SMALL_STATE(4043)] = 118452, - [SMALL_STATE(4044)] = 118470, - [SMALL_STATE(4045)] = 118488, - [SMALL_STATE(4046)] = 118510, - [SMALL_STATE(4047)] = 118532, - [SMALL_STATE(4048)] = 118554, - [SMALL_STATE(4049)] = 118573, - [SMALL_STATE(4050)] = 118586, - [SMALL_STATE(4051)] = 118599, - [SMALL_STATE(4052)] = 118618, - [SMALL_STATE(4053)] = 118631, - [SMALL_STATE(4054)] = 118644, - [SMALL_STATE(4055)] = 118657, - [SMALL_STATE(4056)] = 118672, - [SMALL_STATE(4057)] = 118687, - [SMALL_STATE(4058)] = 118702, - [SMALL_STATE(4059)] = 118717, - [SMALL_STATE(4060)] = 118736, - [SMALL_STATE(4061)] = 118749, - [SMALL_STATE(4062)] = 118764, - [SMALL_STATE(4063)] = 118779, - [SMALL_STATE(4064)] = 118792, - [SMALL_STATE(4065)] = 118807, - [SMALL_STATE(4066)] = 118824, - [SMALL_STATE(4067)] = 118841, - [SMALL_STATE(4068)] = 118854, - [SMALL_STATE(4069)] = 118867, - [SMALL_STATE(4070)] = 118880, - [SMALL_STATE(4071)] = 118893, - [SMALL_STATE(4072)] = 118908, - [SMALL_STATE(4073)] = 118923, - [SMALL_STATE(4074)] = 118938, - [SMALL_STATE(4075)] = 118953, - [SMALL_STATE(4076)] = 118968, - [SMALL_STATE(4077)] = 118981, - [SMALL_STATE(4078)] = 118998, - [SMALL_STATE(4079)] = 119011, - [SMALL_STATE(4080)] = 119026, - [SMALL_STATE(4081)] = 119039, - [SMALL_STATE(4082)] = 119052, - [SMALL_STATE(4083)] = 119065, - [SMALL_STATE(4084)] = 119078, - [SMALL_STATE(4085)] = 119097, - [SMALL_STATE(4086)] = 119110, - [SMALL_STATE(4087)] = 119123, - [SMALL_STATE(4088)] = 119138, - [SMALL_STATE(4089)] = 119155, - [SMALL_STATE(4090)] = 119170, - [SMALL_STATE(4091)] = 119183, - [SMALL_STATE(4092)] = 119196, - [SMALL_STATE(4093)] = 119215, - [SMALL_STATE(4094)] = 119228, - [SMALL_STATE(4095)] = 119241, - [SMALL_STATE(4096)] = 119254, - [SMALL_STATE(4097)] = 119269, - [SMALL_STATE(4098)] = 119288, - [SMALL_STATE(4099)] = 119301, - [SMALL_STATE(4100)] = 119314, - [SMALL_STATE(4101)] = 119329, - [SMALL_STATE(4102)] = 119342, - [SMALL_STATE(4103)] = 119357, - [SMALL_STATE(4104)] = 119376, - [SMALL_STATE(4105)] = 119391, - [SMALL_STATE(4106)] = 119406, - [SMALL_STATE(4107)] = 119421, - [SMALL_STATE(4108)] = 119436, - [SMALL_STATE(4109)] = 119449, - [SMALL_STATE(4110)] = 119464, - [SMALL_STATE(4111)] = 119477, - [SMALL_STATE(4112)] = 119490, - [SMALL_STATE(4113)] = 119505, - [SMALL_STATE(4114)] = 119520, - [SMALL_STATE(4115)] = 119539, - [SMALL_STATE(4116)] = 119554, - [SMALL_STATE(4117)] = 119569, - [SMALL_STATE(4118)] = 119584, - [SMALL_STATE(4119)] = 119599, - [SMALL_STATE(4120)] = 119614, - [SMALL_STATE(4121)] = 119629, - [SMALL_STATE(4122)] = 119644, - [SMALL_STATE(4123)] = 119659, - [SMALL_STATE(4124)] = 119674, - [SMALL_STATE(4125)] = 119689, - [SMALL_STATE(4126)] = 119704, - [SMALL_STATE(4127)] = 119723, - [SMALL_STATE(4128)] = 119738, - [SMALL_STATE(4129)] = 119757, - [SMALL_STATE(4130)] = 119770, - [SMALL_STATE(4131)] = 119789, - [SMALL_STATE(4132)] = 119808, - [SMALL_STATE(4133)] = 119827, - [SMALL_STATE(4134)] = 119844, - [SMALL_STATE(4135)] = 119861, - [SMALL_STATE(4136)] = 119878, - [SMALL_STATE(4137)] = 119891, - [SMALL_STATE(4138)] = 119904, - [SMALL_STATE(4139)] = 119923, - [SMALL_STATE(4140)] = 119940, - [SMALL_STATE(4141)] = 119953, - [SMALL_STATE(4142)] = 119966, - [SMALL_STATE(4143)] = 119979, - [SMALL_STATE(4144)] = 119998, - [SMALL_STATE(4145)] = 120011, - [SMALL_STATE(4146)] = 120030, - [SMALL_STATE(4147)] = 120045, - [SMALL_STATE(4148)] = 120064, - [SMALL_STATE(4149)] = 120083, - [SMALL_STATE(4150)] = 120096, - [SMALL_STATE(4151)] = 120109, - [SMALL_STATE(4152)] = 120122, - [SMALL_STATE(4153)] = 120139, - [SMALL_STATE(4154)] = 120152, - [SMALL_STATE(4155)] = 120169, - [SMALL_STATE(4156)] = 120182, - [SMALL_STATE(4157)] = 120195, - [SMALL_STATE(4158)] = 120210, - [SMALL_STATE(4159)] = 120225, - [SMALL_STATE(4160)] = 120244, - [SMALL_STATE(4161)] = 120257, - [SMALL_STATE(4162)] = 120270, - [SMALL_STATE(4163)] = 120283, - [SMALL_STATE(4164)] = 120298, - [SMALL_STATE(4165)] = 120311, - [SMALL_STATE(4166)] = 120326, - [SMALL_STATE(4167)] = 120345, - [SMALL_STATE(4168)] = 120362, - [SMALL_STATE(4169)] = 120375, - [SMALL_STATE(4170)] = 120388, - [SMALL_STATE(4171)] = 120401, - [SMALL_STATE(4172)] = 120420, - [SMALL_STATE(4173)] = 120433, - [SMALL_STATE(4174)] = 120452, - [SMALL_STATE(4175)] = 120471, - [SMALL_STATE(4176)] = 120484, - [SMALL_STATE(4177)] = 120499, - [SMALL_STATE(4178)] = 120518, - [SMALL_STATE(4179)] = 120535, - [SMALL_STATE(4180)] = 120552, - [SMALL_STATE(4181)] = 120565, - [SMALL_STATE(4182)] = 120580, - [SMALL_STATE(4183)] = 120599, - [SMALL_STATE(4184)] = 120616, - [SMALL_STATE(4185)] = 120635, - [SMALL_STATE(4186)] = 120652, - [SMALL_STATE(4187)] = 120669, - [SMALL_STATE(4188)] = 120682, - [SMALL_STATE(4189)] = 120699, - [SMALL_STATE(4190)] = 120718, - [SMALL_STATE(4191)] = 120735, - [SMALL_STATE(4192)] = 120752, - [SMALL_STATE(4193)] = 120769, - [SMALL_STATE(4194)] = 120782, - [SMALL_STATE(4195)] = 120799, - [SMALL_STATE(4196)] = 120814, - [SMALL_STATE(4197)] = 120833, - [SMALL_STATE(4198)] = 120848, - [SMALL_STATE(4199)] = 120865, - [SMALL_STATE(4200)] = 120880, - [SMALL_STATE(4201)] = 120899, - [SMALL_STATE(4202)] = 120912, - [SMALL_STATE(4203)] = 120925, - [SMALL_STATE(4204)] = 120944, - [SMALL_STATE(4205)] = 120957, - [SMALL_STATE(4206)] = 120972, - [SMALL_STATE(4207)] = 120987, - [SMALL_STATE(4208)] = 121004, - [SMALL_STATE(4209)] = 121023, - [SMALL_STATE(4210)] = 121038, - [SMALL_STATE(4211)] = 121053, - [SMALL_STATE(4212)] = 121066, - [SMALL_STATE(4213)] = 121079, - [SMALL_STATE(4214)] = 121092, - [SMALL_STATE(4215)] = 121107, - [SMALL_STATE(4216)] = 121122, - [SMALL_STATE(4217)] = 121141, - [SMALL_STATE(4218)] = 121154, - [SMALL_STATE(4219)] = 121169, - [SMALL_STATE(4220)] = 121184, - [SMALL_STATE(4221)] = 121197, - [SMALL_STATE(4222)] = 121212, - [SMALL_STATE(4223)] = 121231, - [SMALL_STATE(4224)] = 121246, - [SMALL_STATE(4225)] = 121259, - [SMALL_STATE(4226)] = 121272, - [SMALL_STATE(4227)] = 121285, - [SMALL_STATE(4228)] = 121298, - [SMALL_STATE(4229)] = 121311, - [SMALL_STATE(4230)] = 121330, - [SMALL_STATE(4231)] = 121343, - [SMALL_STATE(4232)] = 121356, - [SMALL_STATE(4233)] = 121373, - [SMALL_STATE(4234)] = 121386, - [SMALL_STATE(4235)] = 121401, - [SMALL_STATE(4236)] = 121420, - [SMALL_STATE(4237)] = 121439, - [SMALL_STATE(4238)] = 121452, - [SMALL_STATE(4239)] = 121471, - [SMALL_STATE(4240)] = 121490, - [SMALL_STATE(4241)] = 121503, - [SMALL_STATE(4242)] = 121516, - [SMALL_STATE(4243)] = 121529, - [SMALL_STATE(4244)] = 121542, - [SMALL_STATE(4245)] = 121555, - [SMALL_STATE(4246)] = 121570, - [SMALL_STATE(4247)] = 121583, - [SMALL_STATE(4248)] = 121602, - [SMALL_STATE(4249)] = 121615, - [SMALL_STATE(4250)] = 121634, - [SMALL_STATE(4251)] = 121647, - [SMALL_STATE(4252)] = 121660, - [SMALL_STATE(4253)] = 121673, - [SMALL_STATE(4254)] = 121692, - [SMALL_STATE(4255)] = 121705, - [SMALL_STATE(4256)] = 121722, - [SMALL_STATE(4257)] = 121741, - [SMALL_STATE(4258)] = 121754, - [SMALL_STATE(4259)] = 121771, - [SMALL_STATE(4260)] = 121784, - [SMALL_STATE(4261)] = 121803, - [SMALL_STATE(4262)] = 121820, - [SMALL_STATE(4263)] = 121839, - [SMALL_STATE(4264)] = 121858, - [SMALL_STATE(4265)] = 121875, - [SMALL_STATE(4266)] = 121888, - [SMALL_STATE(4267)] = 121901, - [SMALL_STATE(4268)] = 121920, - [SMALL_STATE(4269)] = 121933, - [SMALL_STATE(4270)] = 121946, - [SMALL_STATE(4271)] = 121959, - [SMALL_STATE(4272)] = 121978, - [SMALL_STATE(4273)] = 121997, - [SMALL_STATE(4274)] = 122016, - [SMALL_STATE(4275)] = 122029, - [SMALL_STATE(4276)] = 122048, - [SMALL_STATE(4277)] = 122061, - [SMALL_STATE(4278)] = 122080, - [SMALL_STATE(4279)] = 122097, - [SMALL_STATE(4280)] = 122116, - [SMALL_STATE(4281)] = 122135, - [SMALL_STATE(4282)] = 122148, - [SMALL_STATE(4283)] = 122163, - [SMALL_STATE(4284)] = 122176, - [SMALL_STATE(4285)] = 122191, - [SMALL_STATE(4286)] = 122204, - [SMALL_STATE(4287)] = 122223, - [SMALL_STATE(4288)] = 122236, - [SMALL_STATE(4289)] = 122249, - [SMALL_STATE(4290)] = 122262, - [SMALL_STATE(4291)] = 122279, - [SMALL_STATE(4292)] = 122294, - [SMALL_STATE(4293)] = 122309, - [SMALL_STATE(4294)] = 122322, - [SMALL_STATE(4295)] = 122335, - [SMALL_STATE(4296)] = 122352, - [SMALL_STATE(4297)] = 122369, - [SMALL_STATE(4298)] = 122382, - [SMALL_STATE(4299)] = 122401, - [SMALL_STATE(4300)] = 122414, - [SMALL_STATE(4301)] = 122433, - [SMALL_STATE(4302)] = 122448, - [SMALL_STATE(4303)] = 122461, - [SMALL_STATE(4304)] = 122476, - [SMALL_STATE(4305)] = 122489, - [SMALL_STATE(4306)] = 122506, - [SMALL_STATE(4307)] = 122521, - [SMALL_STATE(4308)] = 122534, - [SMALL_STATE(4309)] = 122551, - [SMALL_STATE(4310)] = 122564, - [SMALL_STATE(4311)] = 122579, - [SMALL_STATE(4312)] = 122592, - [SMALL_STATE(4313)] = 122611, - [SMALL_STATE(4314)] = 122624, - [SMALL_STATE(4315)] = 122639, - [SMALL_STATE(4316)] = 122652, - [SMALL_STATE(4317)] = 122665, - [SMALL_STATE(4318)] = 122680, - [SMALL_STATE(4319)] = 122695, - [SMALL_STATE(4320)] = 122712, - [SMALL_STATE(4321)] = 122725, - [SMALL_STATE(4322)] = 122738, - [SMALL_STATE(4323)] = 122751, - [SMALL_STATE(4324)] = 122768, - [SMALL_STATE(4325)] = 122781, - [SMALL_STATE(4326)] = 122794, - [SMALL_STATE(4327)] = 122807, - [SMALL_STATE(4328)] = 122820, - [SMALL_STATE(4329)] = 122833, - [SMALL_STATE(4330)] = 122846, - [SMALL_STATE(4331)] = 122859, - [SMALL_STATE(4332)] = 122872, - [SMALL_STATE(4333)] = 122885, - [SMALL_STATE(4334)] = 122898, - [SMALL_STATE(4335)] = 122911, - [SMALL_STATE(4336)] = 122926, - [SMALL_STATE(4337)] = 122939, - [SMALL_STATE(4338)] = 122952, - [SMALL_STATE(4339)] = 122965, - [SMALL_STATE(4340)] = 122978, - [SMALL_STATE(4341)] = 122991, - [SMALL_STATE(4342)] = 123004, - [SMALL_STATE(4343)] = 123019, - [SMALL_STATE(4344)] = 123032, - [SMALL_STATE(4345)] = 123049, - [SMALL_STATE(4346)] = 123062, - [SMALL_STATE(4347)] = 123075, - [SMALL_STATE(4348)] = 123088, - [SMALL_STATE(4349)] = 123101, - [SMALL_STATE(4350)] = 123116, - [SMALL_STATE(4351)] = 123135, - [SMALL_STATE(4352)] = 123148, - [SMALL_STATE(4353)] = 123167, - [SMALL_STATE(4354)] = 123182, - [SMALL_STATE(4355)] = 123201, - [SMALL_STATE(4356)] = 123220, - [SMALL_STATE(4357)] = 123239, - [SMALL_STATE(4358)] = 123258, - [SMALL_STATE(4359)] = 123277, - [SMALL_STATE(4360)] = 123296, - [SMALL_STATE(4361)] = 123315, - [SMALL_STATE(4362)] = 123334, - [SMALL_STATE(4363)] = 123353, - [SMALL_STATE(4364)] = 123372, - [SMALL_STATE(4365)] = 123385, - [SMALL_STATE(4366)] = 123402, - [SMALL_STATE(4367)] = 123415, - [SMALL_STATE(4368)] = 123431, - [SMALL_STATE(4369)] = 123443, - [SMALL_STATE(4370)] = 123455, - [SMALL_STATE(4371)] = 123467, - [SMALL_STATE(4372)] = 123479, - [SMALL_STATE(4373)] = 123491, - [SMALL_STATE(4374)] = 123507, - [SMALL_STATE(4375)] = 123523, - [SMALL_STATE(4376)] = 123537, - [SMALL_STATE(4377)] = 123549, - [SMALL_STATE(4378)] = 123563, - [SMALL_STATE(4379)] = 123579, - [SMALL_STATE(4380)] = 123591, - [SMALL_STATE(4381)] = 123605, - [SMALL_STATE(4382)] = 123621, - [SMALL_STATE(4383)] = 123633, - [SMALL_STATE(4384)] = 123645, - [SMALL_STATE(4385)] = 123657, - [SMALL_STATE(4386)] = 123669, - [SMALL_STATE(4387)] = 123685, - [SMALL_STATE(4388)] = 123697, - [SMALL_STATE(4389)] = 123713, - [SMALL_STATE(4390)] = 123725, - [SMALL_STATE(4391)] = 123737, - [SMALL_STATE(4392)] = 123753, - [SMALL_STATE(4393)] = 123765, - [SMALL_STATE(4394)] = 123781, - [SMALL_STATE(4395)] = 123793, - [SMALL_STATE(4396)] = 123805, - [SMALL_STATE(4397)] = 123819, - [SMALL_STATE(4398)] = 123831, - [SMALL_STATE(4399)] = 123845, - [SMALL_STATE(4400)] = 123857, - [SMALL_STATE(4401)] = 123869, - [SMALL_STATE(4402)] = 123885, - [SMALL_STATE(4403)] = 123901, - [SMALL_STATE(4404)] = 123913, - [SMALL_STATE(4405)] = 123929, - [SMALL_STATE(4406)] = 123941, - [SMALL_STATE(4407)] = 123953, - [SMALL_STATE(4408)] = 123969, - [SMALL_STATE(4409)] = 123985, - [SMALL_STATE(4410)] = 123997, - [SMALL_STATE(4411)] = 124009, - [SMALL_STATE(4412)] = 124023, - [SMALL_STATE(4413)] = 124035, - [SMALL_STATE(4414)] = 124051, - [SMALL_STATE(4415)] = 124065, - [SMALL_STATE(4416)] = 124077, - [SMALL_STATE(4417)] = 124089, - [SMALL_STATE(4418)] = 124101, - [SMALL_STATE(4419)] = 124113, - [SMALL_STATE(4420)] = 124125, - [SMALL_STATE(4421)] = 124137, - [SMALL_STATE(4422)] = 124149, - [SMALL_STATE(4423)] = 124161, - [SMALL_STATE(4424)] = 124177, - [SMALL_STATE(4425)] = 124191, - [SMALL_STATE(4426)] = 124205, - [SMALL_STATE(4427)] = 124219, - [SMALL_STATE(4428)] = 124231, - [SMALL_STATE(4429)] = 124247, - [SMALL_STATE(4430)] = 124259, - [SMALL_STATE(4431)] = 124271, - [SMALL_STATE(4432)] = 124287, - [SMALL_STATE(4433)] = 124299, - [SMALL_STATE(4434)] = 124311, - [SMALL_STATE(4435)] = 124323, - [SMALL_STATE(4436)] = 124335, - [SMALL_STATE(4437)] = 124349, - [SMALL_STATE(4438)] = 124361, - [SMALL_STATE(4439)] = 124377, - [SMALL_STATE(4440)] = 124393, - [SMALL_STATE(4441)] = 124405, - [SMALL_STATE(4442)] = 124421, - [SMALL_STATE(4443)] = 124433, - [SMALL_STATE(4444)] = 124445, - [SMALL_STATE(4445)] = 124457, - [SMALL_STATE(4446)] = 124473, - [SMALL_STATE(4447)] = 124489, - [SMALL_STATE(4448)] = 124505, - [SMALL_STATE(4449)] = 124521, - [SMALL_STATE(4450)] = 124537, - [SMALL_STATE(4451)] = 124553, - [SMALL_STATE(4452)] = 124569, - [SMALL_STATE(4453)] = 124583, - [SMALL_STATE(4454)] = 124597, - [SMALL_STATE(4455)] = 124611, - [SMALL_STATE(4456)] = 124623, - [SMALL_STATE(4457)] = 124635, - [SMALL_STATE(4458)] = 124647, - [SMALL_STATE(4459)] = 124659, - [SMALL_STATE(4460)] = 124671, - [SMALL_STATE(4461)] = 124683, - [SMALL_STATE(4462)] = 124697, - [SMALL_STATE(4463)] = 124709, - [SMALL_STATE(4464)] = 124721, - [SMALL_STATE(4465)] = 124735, - [SMALL_STATE(4466)] = 124751, - [SMALL_STATE(4467)] = 124763, - [SMALL_STATE(4468)] = 124777, - [SMALL_STATE(4469)] = 124793, - [SMALL_STATE(4470)] = 124809, - [SMALL_STATE(4471)] = 124823, - [SMALL_STATE(4472)] = 124839, - [SMALL_STATE(4473)] = 124855, - [SMALL_STATE(4474)] = 124871, - [SMALL_STATE(4475)] = 124887, - [SMALL_STATE(4476)] = 124903, - [SMALL_STATE(4477)] = 124917, - [SMALL_STATE(4478)] = 124931, - [SMALL_STATE(4479)] = 124945, - [SMALL_STATE(4480)] = 124959, - [SMALL_STATE(4481)] = 124973, - [SMALL_STATE(4482)] = 124985, - [SMALL_STATE(4483)] = 125001, - [SMALL_STATE(4484)] = 125015, - [SMALL_STATE(4485)] = 125031, - [SMALL_STATE(4486)] = 125047, - [SMALL_STATE(4487)] = 125059, - [SMALL_STATE(4488)] = 125071, - [SMALL_STATE(4489)] = 125083, - [SMALL_STATE(4490)] = 125095, - [SMALL_STATE(4491)] = 125111, - [SMALL_STATE(4492)] = 125125, - [SMALL_STATE(4493)] = 125137, - [SMALL_STATE(4494)] = 125153, - [SMALL_STATE(4495)] = 125165, - [SMALL_STATE(4496)] = 125177, - [SMALL_STATE(4497)] = 125193, - [SMALL_STATE(4498)] = 125209, - [SMALL_STATE(4499)] = 125225, - [SMALL_STATE(4500)] = 125241, - [SMALL_STATE(4501)] = 125253, - [SMALL_STATE(4502)] = 125269, - [SMALL_STATE(4503)] = 125283, - [SMALL_STATE(4504)] = 125295, - [SMALL_STATE(4505)] = 125307, - [SMALL_STATE(4506)] = 125321, - [SMALL_STATE(4507)] = 125335, - [SMALL_STATE(4508)] = 125347, - [SMALL_STATE(4509)] = 125359, - [SMALL_STATE(4510)] = 125375, - [SMALL_STATE(4511)] = 125389, - [SMALL_STATE(4512)] = 125403, - [SMALL_STATE(4513)] = 125419, - [SMALL_STATE(4514)] = 125433, - [SMALL_STATE(4515)] = 125447, - [SMALL_STATE(4516)] = 125461, - [SMALL_STATE(4517)] = 125475, - [SMALL_STATE(4518)] = 125489, - [SMALL_STATE(4519)] = 125501, - [SMALL_STATE(4520)] = 125513, - [SMALL_STATE(4521)] = 125527, - [SMALL_STATE(4522)] = 125539, - [SMALL_STATE(4523)] = 125553, - [SMALL_STATE(4524)] = 125565, - [SMALL_STATE(4525)] = 125581, - [SMALL_STATE(4526)] = 125593, - [SMALL_STATE(4527)] = 125609, - [SMALL_STATE(4528)] = 125621, - [SMALL_STATE(4529)] = 125633, - [SMALL_STATE(4530)] = 125645, - [SMALL_STATE(4531)] = 125659, - [SMALL_STATE(4532)] = 125675, - [SMALL_STATE(4533)] = 125687, - [SMALL_STATE(4534)] = 125699, - [SMALL_STATE(4535)] = 125711, - [SMALL_STATE(4536)] = 125723, - [SMALL_STATE(4537)] = 125737, - [SMALL_STATE(4538)] = 125749, - [SMALL_STATE(4539)] = 125761, - [SMALL_STATE(4540)] = 125777, - [SMALL_STATE(4541)] = 125791, - [SMALL_STATE(4542)] = 125807, - [SMALL_STATE(4543)] = 125823, - [SMALL_STATE(4544)] = 125839, - [SMALL_STATE(4545)] = 125853, - [SMALL_STATE(4546)] = 125865, - [SMALL_STATE(4547)] = 125877, - [SMALL_STATE(4548)] = 125889, - [SMALL_STATE(4549)] = 125901, - [SMALL_STATE(4550)] = 125917, - [SMALL_STATE(4551)] = 125929, - [SMALL_STATE(4552)] = 125945, - [SMALL_STATE(4553)] = 125961, - [SMALL_STATE(4554)] = 125973, - [SMALL_STATE(4555)] = 125987, - [SMALL_STATE(4556)] = 125999, - [SMALL_STATE(4557)] = 126013, - [SMALL_STATE(4558)] = 126029, - [SMALL_STATE(4559)] = 126045, - [SMALL_STATE(4560)] = 126061, - [SMALL_STATE(4561)] = 126073, - [SMALL_STATE(4562)] = 126085, - [SMALL_STATE(4563)] = 126097, - [SMALL_STATE(4564)] = 126109, - [SMALL_STATE(4565)] = 126121, - [SMALL_STATE(4566)] = 126133, - [SMALL_STATE(4567)] = 126149, - [SMALL_STATE(4568)] = 126161, - [SMALL_STATE(4569)] = 126177, - [SMALL_STATE(4570)] = 126193, - [SMALL_STATE(4571)] = 126209, - [SMALL_STATE(4572)] = 126225, - [SMALL_STATE(4573)] = 126239, - [SMALL_STATE(4574)] = 126255, - [SMALL_STATE(4575)] = 126269, - [SMALL_STATE(4576)] = 126285, - [SMALL_STATE(4577)] = 126301, - [SMALL_STATE(4578)] = 126317, - [SMALL_STATE(4579)] = 126333, - [SMALL_STATE(4580)] = 126349, - [SMALL_STATE(4581)] = 126365, - [SMALL_STATE(4582)] = 126381, - [SMALL_STATE(4583)] = 126393, - [SMALL_STATE(4584)] = 126409, - [SMALL_STATE(4585)] = 126425, - [SMALL_STATE(4586)] = 126437, - [SMALL_STATE(4587)] = 126453, - [SMALL_STATE(4588)] = 126465, - [SMALL_STATE(4589)] = 126481, - [SMALL_STATE(4590)] = 126493, - [SMALL_STATE(4591)] = 126509, - [SMALL_STATE(4592)] = 126523, - [SMALL_STATE(4593)] = 126535, - [SMALL_STATE(4594)] = 126551, - [SMALL_STATE(4595)] = 126567, - [SMALL_STATE(4596)] = 126583, - [SMALL_STATE(4597)] = 126597, - [SMALL_STATE(4598)] = 126609, - [SMALL_STATE(4599)] = 126625, - [SMALL_STATE(4600)] = 126637, - [SMALL_STATE(4601)] = 126653, - [SMALL_STATE(4602)] = 126669, - [SMALL_STATE(4603)] = 126681, - [SMALL_STATE(4604)] = 126697, - [SMALL_STATE(4605)] = 126709, - [SMALL_STATE(4606)] = 126725, - [SMALL_STATE(4607)] = 126739, - [SMALL_STATE(4608)] = 126755, - [SMALL_STATE(4609)] = 126771, - [SMALL_STATE(4610)] = 126787, - [SMALL_STATE(4611)] = 126803, - [SMALL_STATE(4612)] = 126815, - [SMALL_STATE(4613)] = 126827, - [SMALL_STATE(4614)] = 126843, - [SMALL_STATE(4615)] = 126859, - [SMALL_STATE(4616)] = 126875, - [SMALL_STATE(4617)] = 126887, - [SMALL_STATE(4618)] = 126899, - [SMALL_STATE(4619)] = 126915, - [SMALL_STATE(4620)] = 126927, - [SMALL_STATE(4621)] = 126941, - [SMALL_STATE(4622)] = 126957, - [SMALL_STATE(4623)] = 126970, - [SMALL_STATE(4624)] = 126981, - [SMALL_STATE(4625)] = 126992, - [SMALL_STATE(4626)] = 127005, - [SMALL_STATE(4627)] = 127018, - [SMALL_STATE(4628)] = 127031, - [SMALL_STATE(4629)] = 127044, - [SMALL_STATE(4630)] = 127057, - [SMALL_STATE(4631)] = 127070, - [SMALL_STATE(4632)] = 127083, - [SMALL_STATE(4633)] = 127096, - [SMALL_STATE(4634)] = 127109, - [SMALL_STATE(4635)] = 127122, - [SMALL_STATE(4636)] = 127135, - [SMALL_STATE(4637)] = 127148, - [SMALL_STATE(4638)] = 127161, - [SMALL_STATE(4639)] = 127174, - [SMALL_STATE(4640)] = 127187, - [SMALL_STATE(4641)] = 127198, - [SMALL_STATE(4642)] = 127209, - [SMALL_STATE(4643)] = 127222, - [SMALL_STATE(4644)] = 127235, - [SMALL_STATE(4645)] = 127248, - [SMALL_STATE(4646)] = 127261, - [SMALL_STATE(4647)] = 127274, - [SMALL_STATE(4648)] = 127287, - [SMALL_STATE(4649)] = 127300, - [SMALL_STATE(4650)] = 127313, - [SMALL_STATE(4651)] = 127324, - [SMALL_STATE(4652)] = 127337, - [SMALL_STATE(4653)] = 127350, - [SMALL_STATE(4654)] = 127363, - [SMALL_STATE(4655)] = 127376, - [SMALL_STATE(4656)] = 127389, - [SMALL_STATE(4657)] = 127402, - [SMALL_STATE(4658)] = 127415, - [SMALL_STATE(4659)] = 127428, - [SMALL_STATE(4660)] = 127441, - [SMALL_STATE(4661)] = 127454, - [SMALL_STATE(4662)] = 127467, - [SMALL_STATE(4663)] = 127480, - [SMALL_STATE(4664)] = 127493, - [SMALL_STATE(4665)] = 127506, - [SMALL_STATE(4666)] = 127519, - [SMALL_STATE(4667)] = 127532, - [SMALL_STATE(4668)] = 127545, - [SMALL_STATE(4669)] = 127558, - [SMALL_STATE(4670)] = 127571, - [SMALL_STATE(4671)] = 127584, - [SMALL_STATE(4672)] = 127597, - [SMALL_STATE(4673)] = 127610, - [SMALL_STATE(4674)] = 127623, - [SMALL_STATE(4675)] = 127636, - [SMALL_STATE(4676)] = 127649, - [SMALL_STATE(4677)] = 127662, - [SMALL_STATE(4678)] = 127675, - [SMALL_STATE(4679)] = 127688, - [SMALL_STATE(4680)] = 127701, - [SMALL_STATE(4681)] = 127714, - [SMALL_STATE(4682)] = 127727, - [SMALL_STATE(4683)] = 127740, - [SMALL_STATE(4684)] = 127753, - [SMALL_STATE(4685)] = 127766, - [SMALL_STATE(4686)] = 127779, - [SMALL_STATE(4687)] = 127792, - [SMALL_STATE(4688)] = 127805, - [SMALL_STATE(4689)] = 127818, - [SMALL_STATE(4690)] = 127831, - [SMALL_STATE(4691)] = 127844, - [SMALL_STATE(4692)] = 127857, - [SMALL_STATE(4693)] = 127870, - [SMALL_STATE(4694)] = 127883, - [SMALL_STATE(4695)] = 127896, - [SMALL_STATE(4696)] = 127909, - [SMALL_STATE(4697)] = 127922, - [SMALL_STATE(4698)] = 127935, - [SMALL_STATE(4699)] = 127948, - [SMALL_STATE(4700)] = 127961, - [SMALL_STATE(4701)] = 127974, - [SMALL_STATE(4702)] = 127987, - [SMALL_STATE(4703)] = 128000, - [SMALL_STATE(4704)] = 128013, - [SMALL_STATE(4705)] = 128026, - [SMALL_STATE(4706)] = 128039, - [SMALL_STATE(4707)] = 128052, - [SMALL_STATE(4708)] = 128065, - [SMALL_STATE(4709)] = 128078, - [SMALL_STATE(4710)] = 128091, - [SMALL_STATE(4711)] = 128104, - [SMALL_STATE(4712)] = 128117, - [SMALL_STATE(4713)] = 128128, - [SMALL_STATE(4714)] = 128141, - [SMALL_STATE(4715)] = 128154, - [SMALL_STATE(4716)] = 128167, - [SMALL_STATE(4717)] = 128180, - [SMALL_STATE(4718)] = 128193, - [SMALL_STATE(4719)] = 128206, - [SMALL_STATE(4720)] = 128219, - [SMALL_STATE(4721)] = 128232, - [SMALL_STATE(4722)] = 128245, - [SMALL_STATE(4723)] = 128258, - [SMALL_STATE(4724)] = 128271, - [SMALL_STATE(4725)] = 128284, - [SMALL_STATE(4726)] = 128297, - [SMALL_STATE(4727)] = 128310, - [SMALL_STATE(4728)] = 128323, - [SMALL_STATE(4729)] = 128336, - [SMALL_STATE(4730)] = 128349, - [SMALL_STATE(4731)] = 128362, - [SMALL_STATE(4732)] = 128375, - [SMALL_STATE(4733)] = 128388, - [SMALL_STATE(4734)] = 128399, - [SMALL_STATE(4735)] = 128412, - [SMALL_STATE(4736)] = 128423, - [SMALL_STATE(4737)] = 128436, - [SMALL_STATE(4738)] = 128449, - [SMALL_STATE(4739)] = 128462, - [SMALL_STATE(4740)] = 128475, - [SMALL_STATE(4741)] = 128488, - [SMALL_STATE(4742)] = 128501, - [SMALL_STATE(4743)] = 128514, - [SMALL_STATE(4744)] = 128525, - [SMALL_STATE(4745)] = 128538, - [SMALL_STATE(4746)] = 128551, - [SMALL_STATE(4747)] = 128564, - [SMALL_STATE(4748)] = 128577, - [SMALL_STATE(4749)] = 128590, - [SMALL_STATE(4750)] = 128603, - [SMALL_STATE(4751)] = 128616, - [SMALL_STATE(4752)] = 128629, - [SMALL_STATE(4753)] = 128642, - [SMALL_STATE(4754)] = 128655, - [SMALL_STATE(4755)] = 128668, - [SMALL_STATE(4756)] = 128681, - [SMALL_STATE(4757)] = 128694, - [SMALL_STATE(4758)] = 128707, - [SMALL_STATE(4759)] = 128720, - [SMALL_STATE(4760)] = 128733, - [SMALL_STATE(4761)] = 128746, - [SMALL_STATE(4762)] = 128759, - [SMALL_STATE(4763)] = 128772, - [SMALL_STATE(4764)] = 128785, - [SMALL_STATE(4765)] = 128798, - [SMALL_STATE(4766)] = 128811, - [SMALL_STATE(4767)] = 128822, - [SMALL_STATE(4768)] = 128835, - [SMALL_STATE(4769)] = 128848, - [SMALL_STATE(4770)] = 128861, - [SMALL_STATE(4771)] = 128874, - [SMALL_STATE(4772)] = 128887, - [SMALL_STATE(4773)] = 128900, - [SMALL_STATE(4774)] = 128913, - [SMALL_STATE(4775)] = 128926, - [SMALL_STATE(4776)] = 128939, - [SMALL_STATE(4777)] = 128952, - [SMALL_STATE(4778)] = 128965, - [SMALL_STATE(4779)] = 128978, - [SMALL_STATE(4780)] = 128991, - [SMALL_STATE(4781)] = 129004, - [SMALL_STATE(4782)] = 129017, - [SMALL_STATE(4783)] = 129030, - [SMALL_STATE(4784)] = 129043, - [SMALL_STATE(4785)] = 129056, - [SMALL_STATE(4786)] = 129069, - [SMALL_STATE(4787)] = 129082, - [SMALL_STATE(4788)] = 129095, - [SMALL_STATE(4789)] = 129108, - [SMALL_STATE(4790)] = 129121, - [SMALL_STATE(4791)] = 129134, - [SMALL_STATE(4792)] = 129144, - [SMALL_STATE(4793)] = 129154, - [SMALL_STATE(4794)] = 129164, - [SMALL_STATE(4795)] = 129174, - [SMALL_STATE(4796)] = 129184, - [SMALL_STATE(4797)] = 129194, - [SMALL_STATE(4798)] = 129204, - [SMALL_STATE(4799)] = 129214, - [SMALL_STATE(4800)] = 129224, - [SMALL_STATE(4801)] = 129234, - [SMALL_STATE(4802)] = 129244, - [SMALL_STATE(4803)] = 129254, - [SMALL_STATE(4804)] = 129264, - [SMALL_STATE(4805)] = 129274, - [SMALL_STATE(4806)] = 129284, - [SMALL_STATE(4807)] = 129294, - [SMALL_STATE(4808)] = 129304, - [SMALL_STATE(4809)] = 129314, - [SMALL_STATE(4810)] = 129324, - [SMALL_STATE(4811)] = 129334, - [SMALL_STATE(4812)] = 129344, - [SMALL_STATE(4813)] = 129354, - [SMALL_STATE(4814)] = 129364, - [SMALL_STATE(4815)] = 129374, - [SMALL_STATE(4816)] = 129384, - [SMALL_STATE(4817)] = 129394, - [SMALL_STATE(4818)] = 129404, - [SMALL_STATE(4819)] = 129414, - [SMALL_STATE(4820)] = 129424, - [SMALL_STATE(4821)] = 129434, - [SMALL_STATE(4822)] = 129444, - [SMALL_STATE(4823)] = 129454, - [SMALL_STATE(4824)] = 129464, - [SMALL_STATE(4825)] = 129474, - [SMALL_STATE(4826)] = 129484, - [SMALL_STATE(4827)] = 129494, - [SMALL_STATE(4828)] = 129504, - [SMALL_STATE(4829)] = 129514, - [SMALL_STATE(4830)] = 129524, - [SMALL_STATE(4831)] = 129534, - [SMALL_STATE(4832)] = 129544, - [SMALL_STATE(4833)] = 129554, - [SMALL_STATE(4834)] = 129564, - [SMALL_STATE(4835)] = 129574, - [SMALL_STATE(4836)] = 129584, - [SMALL_STATE(4837)] = 129594, - [SMALL_STATE(4838)] = 129604, - [SMALL_STATE(4839)] = 129614, - [SMALL_STATE(4840)] = 129624, - [SMALL_STATE(4841)] = 129634, - [SMALL_STATE(4842)] = 129644, - [SMALL_STATE(4843)] = 129654, - [SMALL_STATE(4844)] = 129664, - [SMALL_STATE(4845)] = 129674, - [SMALL_STATE(4846)] = 129684, - [SMALL_STATE(4847)] = 129694, - [SMALL_STATE(4848)] = 129704, - [SMALL_STATE(4849)] = 129714, - [SMALL_STATE(4850)] = 129724, - [SMALL_STATE(4851)] = 129734, - [SMALL_STATE(4852)] = 129744, - [SMALL_STATE(4853)] = 129754, - [SMALL_STATE(4854)] = 129764, - [SMALL_STATE(4855)] = 129774, - [SMALL_STATE(4856)] = 129784, - [SMALL_STATE(4857)] = 129794, - [SMALL_STATE(4858)] = 129804, - [SMALL_STATE(4859)] = 129814, - [SMALL_STATE(4860)] = 129824, - [SMALL_STATE(4861)] = 129834, - [SMALL_STATE(4862)] = 129844, - [SMALL_STATE(4863)] = 129854, - [SMALL_STATE(4864)] = 129864, - [SMALL_STATE(4865)] = 129874, - [SMALL_STATE(4866)] = 129884, - [SMALL_STATE(4867)] = 129894, - [SMALL_STATE(4868)] = 129904, - [SMALL_STATE(4869)] = 129914, - [SMALL_STATE(4870)] = 129924, - [SMALL_STATE(4871)] = 129934, - [SMALL_STATE(4872)] = 129944, - [SMALL_STATE(4873)] = 129954, - [SMALL_STATE(4874)] = 129964, - [SMALL_STATE(4875)] = 129974, - [SMALL_STATE(4876)] = 129984, - [SMALL_STATE(4877)] = 129994, - [SMALL_STATE(4878)] = 130004, - [SMALL_STATE(4879)] = 130014, - [SMALL_STATE(4880)] = 130024, - [SMALL_STATE(4881)] = 130034, - [SMALL_STATE(4882)] = 130044, - [SMALL_STATE(4883)] = 130054, - [SMALL_STATE(4884)] = 130064, - [SMALL_STATE(4885)] = 130074, - [SMALL_STATE(4886)] = 130084, - [SMALL_STATE(4887)] = 130094, - [SMALL_STATE(4888)] = 130104, - [SMALL_STATE(4889)] = 130114, - [SMALL_STATE(4890)] = 130124, - [SMALL_STATE(4891)] = 130134, - [SMALL_STATE(4892)] = 130144, - [SMALL_STATE(4893)] = 130154, - [SMALL_STATE(4894)] = 130164, - [SMALL_STATE(4895)] = 130174, - [SMALL_STATE(4896)] = 130184, - [SMALL_STATE(4897)] = 130194, - [SMALL_STATE(4898)] = 130204, - [SMALL_STATE(4899)] = 130214, - [SMALL_STATE(4900)] = 130224, - [SMALL_STATE(4901)] = 130234, - [SMALL_STATE(4902)] = 130244, - [SMALL_STATE(4903)] = 130254, - [SMALL_STATE(4904)] = 130264, - [SMALL_STATE(4905)] = 130274, - [SMALL_STATE(4906)] = 130284, - [SMALL_STATE(4907)] = 130294, - [SMALL_STATE(4908)] = 130304, - [SMALL_STATE(4909)] = 130314, - [SMALL_STATE(4910)] = 130324, - [SMALL_STATE(4911)] = 130334, - [SMALL_STATE(4912)] = 130344, - [SMALL_STATE(4913)] = 130354, - [SMALL_STATE(4914)] = 130364, - [SMALL_STATE(4915)] = 130374, - [SMALL_STATE(4916)] = 130384, - [SMALL_STATE(4917)] = 130394, - [SMALL_STATE(4918)] = 130404, - [SMALL_STATE(4919)] = 130414, - [SMALL_STATE(4920)] = 130424, - [SMALL_STATE(4921)] = 130434, - [SMALL_STATE(4922)] = 130444, - [SMALL_STATE(4923)] = 130454, - [SMALL_STATE(4924)] = 130464, - [SMALL_STATE(4925)] = 130474, - [SMALL_STATE(4926)] = 130484, - [SMALL_STATE(4927)] = 130494, - [SMALL_STATE(4928)] = 130504, - [SMALL_STATE(4929)] = 130514, - [SMALL_STATE(4930)] = 130524, - [SMALL_STATE(4931)] = 130534, - [SMALL_STATE(4932)] = 130544, - [SMALL_STATE(4933)] = 130554, - [SMALL_STATE(4934)] = 130564, - [SMALL_STATE(4935)] = 130574, - [SMALL_STATE(4936)] = 130584, - [SMALL_STATE(4937)] = 130594, - [SMALL_STATE(4938)] = 130604, - [SMALL_STATE(4939)] = 130614, - [SMALL_STATE(4940)] = 130624, - [SMALL_STATE(4941)] = 130634, - [SMALL_STATE(4942)] = 130644, - [SMALL_STATE(4943)] = 130654, - [SMALL_STATE(4944)] = 130664, - [SMALL_STATE(4945)] = 130674, - [SMALL_STATE(4946)] = 130684, - [SMALL_STATE(4947)] = 130694, - [SMALL_STATE(4948)] = 130704, - [SMALL_STATE(4949)] = 130714, - [SMALL_STATE(4950)] = 130724, - [SMALL_STATE(4951)] = 130734, - [SMALL_STATE(4952)] = 130744, - [SMALL_STATE(4953)] = 130754, - [SMALL_STATE(4954)] = 130764, - [SMALL_STATE(4955)] = 130774, - [SMALL_STATE(4956)] = 130784, - [SMALL_STATE(4957)] = 130794, - [SMALL_STATE(4958)] = 130804, - [SMALL_STATE(4959)] = 130814, - [SMALL_STATE(4960)] = 130824, - [SMALL_STATE(4961)] = 130834, - [SMALL_STATE(4962)] = 130844, - [SMALL_STATE(4963)] = 130854, - [SMALL_STATE(4964)] = 130864, - [SMALL_STATE(4965)] = 130874, - [SMALL_STATE(4966)] = 130884, - [SMALL_STATE(4967)] = 130894, - [SMALL_STATE(4968)] = 130904, - [SMALL_STATE(4969)] = 130914, - [SMALL_STATE(4970)] = 130924, - [SMALL_STATE(4971)] = 130934, - [SMALL_STATE(4972)] = 130944, - [SMALL_STATE(4973)] = 130954, - [SMALL_STATE(4974)] = 130964, - [SMALL_STATE(4975)] = 130974, - [SMALL_STATE(4976)] = 130984, - [SMALL_STATE(4977)] = 130994, - [SMALL_STATE(4978)] = 131004, - [SMALL_STATE(4979)] = 131014, - [SMALL_STATE(4980)] = 131024, - [SMALL_STATE(4981)] = 131034, - [SMALL_STATE(4982)] = 131044, - [SMALL_STATE(4983)] = 131054, - [SMALL_STATE(4984)] = 131064, - [SMALL_STATE(4985)] = 131074, - [SMALL_STATE(4986)] = 131084, - [SMALL_STATE(4987)] = 131094, - [SMALL_STATE(4988)] = 131104, - [SMALL_STATE(4989)] = 131114, - [SMALL_STATE(4990)] = 131124, - [SMALL_STATE(4991)] = 131134, - [SMALL_STATE(4992)] = 131144, - [SMALL_STATE(4993)] = 131154, - [SMALL_STATE(4994)] = 131164, - [SMALL_STATE(4995)] = 131174, - [SMALL_STATE(4996)] = 131184, - [SMALL_STATE(4997)] = 131194, - [SMALL_STATE(4998)] = 131204, - [SMALL_STATE(4999)] = 131214, - [SMALL_STATE(5000)] = 131224, - [SMALL_STATE(5001)] = 131234, - [SMALL_STATE(5002)] = 131244, - [SMALL_STATE(5003)] = 131254, - [SMALL_STATE(5004)] = 131264, - [SMALL_STATE(5005)] = 131274, - [SMALL_STATE(5006)] = 131284, - [SMALL_STATE(5007)] = 131294, - [SMALL_STATE(5008)] = 131304, - [SMALL_STATE(5009)] = 131314, - [SMALL_STATE(5010)] = 131324, - [SMALL_STATE(5011)] = 131334, - [SMALL_STATE(5012)] = 131344, - [SMALL_STATE(5013)] = 131354, - [SMALL_STATE(5014)] = 131364, - [SMALL_STATE(5015)] = 131374, - [SMALL_STATE(5016)] = 131384, - [SMALL_STATE(5017)] = 131394, - [SMALL_STATE(5018)] = 131404, - [SMALL_STATE(5019)] = 131414, - [SMALL_STATE(5020)] = 131424, - [SMALL_STATE(5021)] = 131434, - [SMALL_STATE(5022)] = 131444, - [SMALL_STATE(5023)] = 131454, - [SMALL_STATE(5024)] = 131464, - [SMALL_STATE(5025)] = 131474, - [SMALL_STATE(5026)] = 131484, - [SMALL_STATE(5027)] = 131494, - [SMALL_STATE(5028)] = 131504, - [SMALL_STATE(5029)] = 131514, - [SMALL_STATE(5030)] = 131524, - [SMALL_STATE(5031)] = 131534, - [SMALL_STATE(5032)] = 131544, - [SMALL_STATE(5033)] = 131554, - [SMALL_STATE(5034)] = 131564, - [SMALL_STATE(5035)] = 131574, - [SMALL_STATE(5036)] = 131584, - [SMALL_STATE(5037)] = 131594, - [SMALL_STATE(5038)] = 131604, - [SMALL_STATE(5039)] = 131614, - [SMALL_STATE(5040)] = 131624, - [SMALL_STATE(5041)] = 131634, - [SMALL_STATE(5042)] = 131644, - [SMALL_STATE(5043)] = 131654, - [SMALL_STATE(5044)] = 131664, - [SMALL_STATE(5045)] = 131674, - [SMALL_STATE(5046)] = 131684, - [SMALL_STATE(5047)] = 131694, - [SMALL_STATE(5048)] = 131704, - [SMALL_STATE(5049)] = 131714, - [SMALL_STATE(5050)] = 131724, - [SMALL_STATE(5051)] = 131734, - [SMALL_STATE(5052)] = 131744, - [SMALL_STATE(5053)] = 131754, - [SMALL_STATE(5054)] = 131764, - [SMALL_STATE(5055)] = 131774, - [SMALL_STATE(5056)] = 131784, - [SMALL_STATE(5057)] = 131794, - [SMALL_STATE(5058)] = 131804, - [SMALL_STATE(5059)] = 131814, - [SMALL_STATE(5060)] = 131824, - [SMALL_STATE(5061)] = 131834, - [SMALL_STATE(5062)] = 131844, - [SMALL_STATE(5063)] = 131854, - [SMALL_STATE(5064)] = 131864, - [SMALL_STATE(5065)] = 131874, - [SMALL_STATE(5066)] = 131884, - [SMALL_STATE(5067)] = 131894, - [SMALL_STATE(5068)] = 131904, - [SMALL_STATE(5069)] = 131914, - [SMALL_STATE(5070)] = 131924, - [SMALL_STATE(5071)] = 131934, - [SMALL_STATE(5072)] = 131944, - [SMALL_STATE(5073)] = 131954, - [SMALL_STATE(5074)] = 131964, - [SMALL_STATE(5075)] = 131974, - [SMALL_STATE(5076)] = 131984, - [SMALL_STATE(5077)] = 131994, - [SMALL_STATE(5078)] = 132004, - [SMALL_STATE(5079)] = 132014, - [SMALL_STATE(5080)] = 132024, - [SMALL_STATE(5081)] = 132034, - [SMALL_STATE(5082)] = 132044, - [SMALL_STATE(5083)] = 132054, - [SMALL_STATE(5084)] = 132064, - [SMALL_STATE(5085)] = 132074, - [SMALL_STATE(5086)] = 132084, - [SMALL_STATE(5087)] = 132094, - [SMALL_STATE(5088)] = 132104, - [SMALL_STATE(5089)] = 132114, - [SMALL_STATE(5090)] = 132124, - [SMALL_STATE(5091)] = 132134, - [SMALL_STATE(5092)] = 132144, - [SMALL_STATE(5093)] = 132154, - [SMALL_STATE(5094)] = 132164, - [SMALL_STATE(5095)] = 132174, - [SMALL_STATE(5096)] = 132184, - [SMALL_STATE(5097)] = 132194, - [SMALL_STATE(5098)] = 132204, - [SMALL_STATE(5099)] = 132214, - [SMALL_STATE(5100)] = 132224, - [SMALL_STATE(5101)] = 132234, - [SMALL_STATE(5102)] = 132244, - [SMALL_STATE(5103)] = 132254, - [SMALL_STATE(5104)] = 132264, - [SMALL_STATE(5105)] = 132274, - [SMALL_STATE(5106)] = 132284, - [SMALL_STATE(5107)] = 132294, - [SMALL_STATE(5108)] = 132304, - [SMALL_STATE(5109)] = 132314, - [SMALL_STATE(5110)] = 132324, - [SMALL_STATE(5111)] = 132334, - [SMALL_STATE(5112)] = 132344, - [SMALL_STATE(5113)] = 132354, - [SMALL_STATE(5114)] = 132364, - [SMALL_STATE(5115)] = 132374, - [SMALL_STATE(5116)] = 132384, - [SMALL_STATE(5117)] = 132394, - [SMALL_STATE(5118)] = 132404, - [SMALL_STATE(5119)] = 132414, - [SMALL_STATE(5120)] = 132424, - [SMALL_STATE(5121)] = 132434, - [SMALL_STATE(5122)] = 132444, - [SMALL_STATE(5123)] = 132454, - [SMALL_STATE(5124)] = 132464, - [SMALL_STATE(5125)] = 132474, - [SMALL_STATE(5126)] = 132484, - [SMALL_STATE(5127)] = 132494, - [SMALL_STATE(5128)] = 132504, - [SMALL_STATE(5129)] = 132514, - [SMALL_STATE(5130)] = 132524, - [SMALL_STATE(5131)] = 132534, - [SMALL_STATE(5132)] = 132544, - [SMALL_STATE(5133)] = 132554, - [SMALL_STATE(5134)] = 132564, - [SMALL_STATE(5135)] = 132574, - [SMALL_STATE(5136)] = 132584, - [SMALL_STATE(5137)] = 132594, - [SMALL_STATE(5138)] = 132604, - [SMALL_STATE(5139)] = 132614, - [SMALL_STATE(5140)] = 132624, - [SMALL_STATE(5141)] = 132634, - [SMALL_STATE(5142)] = 132644, - [SMALL_STATE(5143)] = 132654, - [SMALL_STATE(5144)] = 132664, - [SMALL_STATE(5145)] = 132674, - [SMALL_STATE(5146)] = 132684, - [SMALL_STATE(5147)] = 132694, - [SMALL_STATE(5148)] = 132704, - [SMALL_STATE(5149)] = 132714, - [SMALL_STATE(5150)] = 132724, - [SMALL_STATE(5151)] = 132734, - [SMALL_STATE(5152)] = 132744, - [SMALL_STATE(5153)] = 132754, - [SMALL_STATE(5154)] = 132764, - [SMALL_STATE(5155)] = 132774, - [SMALL_STATE(5156)] = 132784, - [SMALL_STATE(5157)] = 132794, - [SMALL_STATE(5158)] = 132804, - [SMALL_STATE(5159)] = 132814, - [SMALL_STATE(5160)] = 132824, - [SMALL_STATE(5161)] = 132834, - [SMALL_STATE(5162)] = 132844, - [SMALL_STATE(5163)] = 132854, - [SMALL_STATE(5164)] = 132864, - [SMALL_STATE(5165)] = 132874, - [SMALL_STATE(5166)] = 132884, - [SMALL_STATE(5167)] = 132894, - [SMALL_STATE(5168)] = 132904, - [SMALL_STATE(5169)] = 132914, - [SMALL_STATE(5170)] = 132924, - [SMALL_STATE(5171)] = 132934, - [SMALL_STATE(5172)] = 132944, - [SMALL_STATE(5173)] = 132954, - [SMALL_STATE(5174)] = 132964, - [SMALL_STATE(5175)] = 132974, - [SMALL_STATE(5176)] = 132984, - [SMALL_STATE(5177)] = 132994, - [SMALL_STATE(5178)] = 133004, - [SMALL_STATE(5179)] = 133014, - [SMALL_STATE(5180)] = 133024, - [SMALL_STATE(5181)] = 133034, - [SMALL_STATE(5182)] = 133044, - [SMALL_STATE(5183)] = 133054, - [SMALL_STATE(5184)] = 133064, - [SMALL_STATE(5185)] = 133074, - [SMALL_STATE(5186)] = 133084, - [SMALL_STATE(5187)] = 133094, - [SMALL_STATE(5188)] = 133104, - [SMALL_STATE(5189)] = 133114, - [SMALL_STATE(5190)] = 133124, - [SMALL_STATE(5191)] = 133134, - [SMALL_STATE(5192)] = 133144, - [SMALL_STATE(5193)] = 133154, - [SMALL_STATE(5194)] = 133164, - [SMALL_STATE(5195)] = 133174, - [SMALL_STATE(5196)] = 133184, - [SMALL_STATE(5197)] = 133194, - [SMALL_STATE(5198)] = 133204, - [SMALL_STATE(5199)] = 133214, - [SMALL_STATE(5200)] = 133224, - [SMALL_STATE(5201)] = 133234, - [SMALL_STATE(5202)] = 133244, - [SMALL_STATE(5203)] = 133254, + [SMALL_STATE(1271)] = 0, + [SMALL_STATE(1272)] = 73, + [SMALL_STATE(1273)] = 216, + [SMALL_STATE(1274)] = 289, + [SMALL_STATE(1275)] = 362, + [SMALL_STATE(1276)] = 435, + [SMALL_STATE(1277)] = 508, + [SMALL_STATE(1278)] = 581, + [SMALL_STATE(1279)] = 654, + [SMALL_STATE(1280)] = 727, + [SMALL_STATE(1281)] = 822, + [SMALL_STATE(1282)] = 913, + [SMALL_STATE(1283)] = 986, + [SMALL_STATE(1284)] = 1059, + [SMALL_STATE(1285)] = 1132, + [SMALL_STATE(1286)] = 1205, + [SMALL_STATE(1287)] = 1282, + [SMALL_STATE(1288)] = 1383, + [SMALL_STATE(1289)] = 1522, + [SMALL_STATE(1290)] = 1615, + [SMALL_STATE(1291)] = 1688, + [SMALL_STATE(1292)] = 1761, + [SMALL_STATE(1293)] = 1834, + [SMALL_STATE(1294)] = 1907, + [SMALL_STATE(1295)] = 2010, + [SMALL_STATE(1296)] = 2083, + [SMALL_STATE(1297)] = 2156, + [SMALL_STATE(1298)] = 2229, + [SMALL_STATE(1299)] = 2302, + [SMALL_STATE(1300)] = 2375, + [SMALL_STATE(1301)] = 2448, + [SMALL_STATE(1302)] = 2521, + [SMALL_STATE(1303)] = 2594, + [SMALL_STATE(1304)] = 2667, + [SMALL_STATE(1305)] = 2740, + [SMALL_STATE(1306)] = 2813, + [SMALL_STATE(1307)] = 2886, + [SMALL_STATE(1308)] = 2959, + [SMALL_STATE(1309)] = 3042, + [SMALL_STATE(1310)] = 3115, + [SMALL_STATE(1311)] = 3188, + [SMALL_STATE(1312)] = 3261, + [SMALL_STATE(1313)] = 3334, + [SMALL_STATE(1314)] = 3407, + [SMALL_STATE(1315)] = 3480, + [SMALL_STATE(1316)] = 3553, + [SMALL_STATE(1317)] = 3626, + [SMALL_STATE(1318)] = 3699, + [SMALL_STATE(1319)] = 3772, + [SMALL_STATE(1320)] = 3845, + [SMALL_STATE(1321)] = 3918, + [SMALL_STATE(1322)] = 4015, + [SMALL_STATE(1323)] = 4158, + [SMALL_STATE(1324)] = 4231, + [SMALL_STATE(1325)] = 4304, + [SMALL_STATE(1326)] = 4393, + [SMALL_STATE(1327)] = 4536, + [SMALL_STATE(1328)] = 4609, + [SMALL_STATE(1329)] = 4694, + [SMALL_STATE(1330)] = 4767, + [SMALL_STATE(1331)] = 4840, + [SMALL_STATE(1332)] = 4913, + [SMALL_STATE(1333)] = 5052, + [SMALL_STATE(1334)] = 5125, + [SMALL_STATE(1335)] = 5204, + [SMALL_STATE(1336)] = 5277, + [SMALL_STATE(1337)] = 5350, + [SMALL_STATE(1338)] = 5423, + [SMALL_STATE(1339)] = 5496, + [SMALL_STATE(1340)] = 5569, + [SMALL_STATE(1341)] = 5642, + [SMALL_STATE(1342)] = 5781, + [SMALL_STATE(1343)] = 5854, + [SMALL_STATE(1344)] = 5927, + [SMALL_STATE(1345)] = 6000, + [SMALL_STATE(1346)] = 6143, + [SMALL_STATE(1347)] = 6216, + [SMALL_STATE(1348)] = 6291, + [SMALL_STATE(1349)] = 6364, + [SMALL_STATE(1350)] = 6463, + [SMALL_STATE(1351)] = 6536, + [SMALL_STATE(1352)] = 6609, + [SMALL_STATE(1353)] = 6682, + [SMALL_STATE(1354)] = 6755, + [SMALL_STATE(1355)] = 6895, + [SMALL_STATE(1356)] = 7043, + [SMALL_STATE(1357)] = 7116, + [SMALL_STATE(1358)] = 7189, + [SMALL_STATE(1359)] = 7326, + [SMALL_STATE(1360)] = 7463, + [SMALL_STATE(1361)] = 7600, + [SMALL_STATE(1362)] = 7737, + [SMALL_STATE(1363)] = 7814, + [SMALL_STATE(1364)] = 7951, + [SMALL_STATE(1365)] = 8028, + [SMALL_STATE(1366)] = 8105, + [SMALL_STATE(1367)] = 8239, + [SMALL_STATE(1368)] = 8311, + [SMALL_STATE(1369)] = 8453, + [SMALL_STATE(1370)] = 8531, + [SMALL_STATE(1371)] = 8607, + [SMALL_STATE(1372)] = 8677, + [SMALL_STATE(1373)] = 8753, + [SMALL_STATE(1374)] = 8887, + [SMALL_STATE(1375)] = 8959, + [SMALL_STATE(1376)] = 9033, + [SMALL_STATE(1377)] = 9103, + [SMALL_STATE(1378)] = 9237, + [SMALL_STATE(1379)] = 9379, + [SMALL_STATE(1380)] = 9455, + [SMALL_STATE(1381)] = 9595, + [SMALL_STATE(1382)] = 9729, + [SMALL_STATE(1383)] = 9863, + [SMALL_STATE(1384)] = 9939, + [SMALL_STATE(1385)] = 10012, + [SMALL_STATE(1386)] = 10081, + [SMALL_STATE(1387)] = 10150, + [SMALL_STATE(1388)] = 10223, + [SMALL_STATE(1389)] = 10308, + [SMALL_STATE(1390)] = 10377, + [SMALL_STATE(1391)] = 10446, + [SMALL_STATE(1392)] = 10521, + [SMALL_STATE(1393)] = 10590, + [SMALL_STATE(1394)] = 10659, + [SMALL_STATE(1395)] = 10741, + [SMALL_STATE(1396)] = 10827, + [SMALL_STATE(1397)] = 10895, + [SMALL_STATE(1398)] = 10963, + [SMALL_STATE(1399)] = 11045, + [SMALL_STATE(1400)] = 11129, + [SMALL_STATE(1401)] = 11215, + [SMALL_STATE(1402)] = 11296, + [SMALL_STATE(1403)] = 11429, + [SMALL_STATE(1404)] = 11554, + [SMALL_STATE(1405)] = 11635, + [SMALL_STATE(1406)] = 11706, + [SMALL_STATE(1407)] = 11779, + [SMALL_STATE(1408)] = 11850, + [SMALL_STATE(1409)] = 11921, + [SMALL_STATE(1410)] = 12046, + [SMALL_STATE(1411)] = 12126, + [SMALL_STATE(1412)] = 12192, + [SMALL_STATE(1413)] = 12262, + [SMALL_STATE(1414)] = 12330, + [SMALL_STATE(1415)] = 12400, + [SMALL_STATE(1416)] = 12468, + [SMALL_STATE(1417)] = 12536, + [SMALL_STATE(1418)] = 12606, + [SMALL_STATE(1419)] = 12674, + [SMALL_STATE(1420)] = 12753, + [SMALL_STATE(1421)] = 12820, + [SMALL_STATE(1422)] = 12949, + [SMALL_STATE(1423)] = 13014, + [SMALL_STATE(1424)] = 13081, + [SMALL_STATE(1425)] = 13206, + [SMALL_STATE(1426)] = 13271, + [SMALL_STATE(1427)] = 13340, + [SMALL_STATE(1428)] = 13469, + [SMALL_STATE(1429)] = 13534, + [SMALL_STATE(1430)] = 13603, + [SMALL_STATE(1431)] = 13668, + [SMALL_STATE(1432)] = 13797, + [SMALL_STATE(1433)] = 13862, + [SMALL_STATE(1434)] = 13991, + [SMALL_STATE(1435)] = 14055, + [SMALL_STATE(1436)] = 14121, + [SMALL_STATE(1437)] = 14185, + [SMALL_STATE(1438)] = 14251, + [SMALL_STATE(1439)] = 14319, + [SMALL_STATE(1440)] = 14383, + [SMALL_STATE(1441)] = 14451, + [SMALL_STATE(1442)] = 14516, + [SMALL_STATE(1443)] = 14579, + [SMALL_STATE(1444)] = 14644, + [SMALL_STATE(1445)] = 14715, + [SMALL_STATE(1446)] = 14786, + [SMALL_STATE(1447)] = 14849, + [SMALL_STATE(1448)] = 14912, + [SMALL_STATE(1449)] = 14974, + [SMALL_STATE(1450)] = 15036, + [SMALL_STATE(1451)] = 15098, + [SMALL_STATE(1452)] = 15164, + [SMALL_STATE(1453)] = 15262, + [SMALL_STATE(1454)] = 15332, + [SMALL_STATE(1455)] = 15430, + [SMALL_STATE(1456)] = 15502, + [SMALL_STATE(1457)] = 15572, + [SMALL_STATE(1458)] = 15638, + [SMALL_STATE(1459)] = 15731, + [SMALL_STATE(1460)] = 15796, + [SMALL_STATE(1461)] = 15861, + [SMALL_STATE(1462)] = 15954, + [SMALL_STATE(1463)] = 16017, + [SMALL_STATE(1464)] = 16114, + [SMALL_STATE(1465)] = 16207, + [SMALL_STATE(1466)] = 16278, + [SMALL_STATE(1467)] = 16341, + [SMALL_STATE(1468)] = 16438, + [SMALL_STATE(1469)] = 16502, + [SMALL_STATE(1470)] = 16566, + [SMALL_STATE(1471)] = 16632, + [SMALL_STATE(1472)] = 16692, + [SMALL_STATE(1473)] = 16754, + [SMALL_STATE(1474)] = 16820, + [SMALL_STATE(1475)] = 16886, + [SMALL_STATE(1476)] = 16950, + [SMALL_STATE(1477)] = 17016, + [SMALL_STATE(1478)] = 17080, + [SMALL_STATE(1479)] = 17144, + [SMALL_STATE(1480)] = 17208, + [SMALL_STATE(1481)] = 17274, + [SMALL_STATE(1482)] = 17338, + [SMALL_STATE(1483)] = 17404, + [SMALL_STATE(1484)] = 17466, + [SMALL_STATE(1485)] = 17532, + [SMALL_STATE(1486)] = 17598, + [SMALL_STATE(1487)] = 17664, + [SMALL_STATE(1488)] = 17730, + [SMALL_STATE(1489)] = 17794, + [SMALL_STATE(1490)] = 17854, + [SMALL_STATE(1491)] = 17916, + [SMALL_STATE(1492)] = 17980, + [SMALL_STATE(1493)] = 18046, + [SMALL_STATE(1494)] = 18112, + [SMALL_STATE(1495)] = 18172, + [SMALL_STATE(1496)] = 18232, + [SMALL_STATE(1497)] = 18295, + [SMALL_STATE(1498)] = 18358, + [SMALL_STATE(1499)] = 18417, + [SMALL_STATE(1500)] = 18480, + [SMALL_STATE(1501)] = 18543, + [SMALL_STATE(1502)] = 18606, + [SMALL_STATE(1503)] = 18669, + [SMALL_STATE(1504)] = 18730, + [SMALL_STATE(1505)] = 18791, + [SMALL_STATE(1506)] = 18850, + [SMALL_STATE(1507)] = 18911, + [SMALL_STATE(1508)] = 18974, + [SMALL_STATE(1509)] = 19037, + [SMALL_STATE(1510)] = 19100, + [SMALL_STATE(1511)] = 19159, + [SMALL_STATE(1512)] = 19222, + [SMALL_STATE(1513)] = 19281, + [SMALL_STATE(1514)] = 19344, + [SMALL_STATE(1515)] = 19403, + [SMALL_STATE(1516)] = 19464, + [SMALL_STATE(1517)] = 19525, + [SMALL_STATE(1518)] = 19593, + [SMALL_STATE(1519)] = 19653, + [SMALL_STATE(1520)] = 19713, + [SMALL_STATE(1521)] = 19773, + [SMALL_STATE(1522)] = 19831, + [SMALL_STATE(1523)] = 19911, + [SMALL_STATE(1524)] = 19991, + [SMALL_STATE(1525)] = 20071, + [SMALL_STATE(1526)] = 20151, + [SMALL_STATE(1527)] = 20211, + [SMALL_STATE(1528)] = 20285, + [SMALL_STATE(1529)] = 20345, + [SMALL_STATE(1530)] = 20425, + [SMALL_STATE(1531)] = 20505, + [SMALL_STATE(1532)] = 20585, + [SMALL_STATE(1533)] = 20665, + [SMALL_STATE(1534)] = 20745, + [SMALL_STATE(1535)] = 20825, + [SMALL_STATE(1536)] = 20905, + [SMALL_STATE(1537)] = 20985, + [SMALL_STATE(1538)] = 21065, + [SMALL_STATE(1539)] = 21145, + [SMALL_STATE(1540)] = 21231, + [SMALL_STATE(1541)] = 21311, + [SMALL_STATE(1542)] = 21391, + [SMALL_STATE(1543)] = 21483, + [SMALL_STATE(1544)] = 21563, + [SMALL_STATE(1545)] = 21643, + [SMALL_STATE(1546)] = 21723, + [SMALL_STATE(1547)] = 21803, + [SMALL_STATE(1548)] = 21883, + [SMALL_STATE(1549)] = 21963, + [SMALL_STATE(1550)] = 22043, + [SMALL_STATE(1551)] = 22123, + [SMALL_STATE(1552)] = 22203, + [SMALL_STATE(1553)] = 22283, + [SMALL_STATE(1554)] = 22363, + [SMALL_STATE(1555)] = 22443, + [SMALL_STATE(1556)] = 22529, + [SMALL_STATE(1557)] = 22609, + [SMALL_STATE(1558)] = 22689, + [SMALL_STATE(1559)] = 22769, + [SMALL_STATE(1560)] = 22849, + [SMALL_STATE(1561)] = 22929, + [SMALL_STATE(1562)] = 23009, + [SMALL_STATE(1563)] = 23089, + [SMALL_STATE(1564)] = 23169, + [SMALL_STATE(1565)] = 23249, + [SMALL_STATE(1566)] = 23329, + [SMALL_STATE(1567)] = 23409, + [SMALL_STATE(1568)] = 23489, + [SMALL_STATE(1569)] = 23565, + [SMALL_STATE(1570)] = 23639, + [SMALL_STATE(1571)] = 23707, + [SMALL_STATE(1572)] = 23771, + [SMALL_STATE(1573)] = 23857, + [SMALL_STATE(1574)] = 23945, + [SMALL_STATE(1575)] = 24035, + [SMALL_STATE(1576)] = 24113, + [SMALL_STATE(1577)] = 24185, + [SMALL_STATE(1578)] = 24265, + [SMALL_STATE(1579)] = 24347, + [SMALL_STATE(1580)] = 24431, + [SMALL_STATE(1581)] = 24517, + [SMALL_STATE(1582)] = 24593, + [SMALL_STATE(1583)] = 24667, + [SMALL_STATE(1584)] = 24741, + [SMALL_STATE(1585)] = 24813, + [SMALL_STATE(1586)] = 24881, + [SMALL_STATE(1587)] = 24947, + [SMALL_STATE(1588)] = 25011, + [SMALL_STATE(1589)] = 25073, + [SMALL_STATE(1590)] = 25159, + [SMALL_STATE(1591)] = 25243, + [SMALL_STATE(1592)] = 25331, + [SMALL_STATE(1593)] = 25417, + [SMALL_STATE(1594)] = 25507, + [SMALL_STATE(1595)] = 25595, + [SMALL_STATE(1596)] = 25673, + [SMALL_STATE(1597)] = 25749, + [SMALL_STATE(1598)] = 25821, + [SMALL_STATE(1599)] = 25891, + [SMALL_STATE(1600)] = 25971, + [SMALL_STATE(1601)] = 26049, + [SMALL_STATE(1602)] = 26131, + [SMALL_STATE(1603)] = 26211, + [SMALL_STATE(1604)] = 26295, + [SMALL_STATE(1605)] = 26377, + [SMALL_STATE(1606)] = 26453, + [SMALL_STATE(1607)] = 26527, + [SMALL_STATE(1608)] = 26613, + [SMALL_STATE(1609)] = 26677, + [SMALL_STATE(1610)] = 26757, + [SMALL_STATE(1611)] = 26843, + [SMALL_STATE(1612)] = 26931, + [SMALL_STATE(1613)] = 27021, + [SMALL_STATE(1614)] = 27099, + [SMALL_STATE(1615)] = 27171, + [SMALL_STATE(1616)] = 27251, + [SMALL_STATE(1617)] = 27333, + [SMALL_STATE(1618)] = 27417, + [SMALL_STATE(1619)] = 27509, + [SMALL_STATE(1620)] = 27583, + [SMALL_STATE(1621)] = 27655, + [SMALL_STATE(1622)] = 27721, + [SMALL_STATE(1623)] = 27783, + [SMALL_STATE(1624)] = 27867, + [SMALL_STATE(1625)] = 27953, + [SMALL_STATE(1626)] = 28041, + [SMALL_STATE(1627)] = 28117, + [SMALL_STATE(1628)] = 28187, + [SMALL_STATE(1629)] = 28265, + [SMALL_STATE(1630)] = 28345, + [SMALL_STATE(1631)] = 28427, + [SMALL_STATE(1632)] = 28503, + [SMALL_STATE(1633)] = 28577, + [SMALL_STATE(1634)] = 28651, + [SMALL_STATE(1635)] = 28723, + [SMALL_STATE(1636)] = 28791, + [SMALL_STATE(1637)] = 28857, + [SMALL_STATE(1638)] = 28921, + [SMALL_STATE(1639)] = 28983, + [SMALL_STATE(1640)] = 29069, + [SMALL_STATE(1641)] = 29153, + [SMALL_STATE(1642)] = 29241, + [SMALL_STATE(1643)] = 29327, + [SMALL_STATE(1644)] = 29417, + [SMALL_STATE(1645)] = 29505, + [SMALL_STATE(1646)] = 29583, + [SMALL_STATE(1647)] = 29659, + [SMALL_STATE(1648)] = 29731, + [SMALL_STATE(1649)] = 29801, + [SMALL_STATE(1650)] = 29881, + [SMALL_STATE(1651)] = 29959, + [SMALL_STATE(1652)] = 30041, + [SMALL_STATE(1653)] = 30121, + [SMALL_STATE(1654)] = 30205, + [SMALL_STATE(1655)] = 30287, + [SMALL_STATE(1656)] = 30361, + [SMALL_STATE(1657)] = 30433, + [SMALL_STATE(1658)] = 30499, + [SMALL_STATE(1659)] = 30561, + [SMALL_STATE(1660)] = 30645, + [SMALL_STATE(1661)] = 30731, + [SMALL_STATE(1662)] = 30819, + [SMALL_STATE(1663)] = 30895, + [SMALL_STATE(1664)] = 30965, + [SMALL_STATE(1665)] = 31043, + [SMALL_STATE(1666)] = 31123, + [SMALL_STATE(1667)] = 31205, + [SMALL_STATE(1668)] = 31295, + [SMALL_STATE(1669)] = 31367, + [SMALL_STATE(1670)] = 31437, + [SMALL_STATE(1671)] = 31501, + [SMALL_STATE(1672)] = 31561, + [SMALL_STATE(1673)] = 31643, + [SMALL_STATE(1674)] = 31727, + [SMALL_STATE(1675)] = 31813, + [SMALL_STATE(1676)] = 31887, + [SMALL_STATE(1677)] = 31955, + [SMALL_STATE(1678)] = 32031, + [SMALL_STATE(1679)] = 32109, + [SMALL_STATE(1680)] = 32189, + [SMALL_STATE(1681)] = 32275, + [SMALL_STATE(1682)] = 32355, + [SMALL_STATE(1683)] = 32435, + [SMALL_STATE(1684)] = 32521, + [SMALL_STATE(1685)] = 32607, + [SMALL_STATE(1686)] = 32693, + [SMALL_STATE(1687)] = 32773, + [SMALL_STATE(1688)] = 32853, + [SMALL_STATE(1689)] = 32933, + [SMALL_STATE(1690)] = 33013, + [SMALL_STATE(1691)] = 33093, + [SMALL_STATE(1692)] = 33164, + [SMALL_STATE(1693)] = 33235, + [SMALL_STATE(1694)] = 33322, + [SMALL_STATE(1695)] = 33393, + [SMALL_STATE(1696)] = 33462, + [SMALL_STATE(1697)] = 33525, + [SMALL_STATE(1698)] = 33584, + [SMALL_STATE(1699)] = 33665, + [SMALL_STATE(1700)] = 33748, + [SMALL_STATE(1701)] = 33833, + [SMALL_STATE(1702)] = 33906, + [SMALL_STATE(1703)] = 33973, + [SMALL_STATE(1704)] = 34048, + [SMALL_STATE(1705)] = 34125, + [SMALL_STATE(1706)] = 34202, + [SMALL_STATE(1707)] = 34281, + [SMALL_STATE(1708)] = 34340, + [SMALL_STATE(1709)] = 34413, + [SMALL_STATE(1710)] = 34500, + [SMALL_STATE(1711)] = 34586, + [SMALL_STATE(1712)] = 34672, + [SMALL_STATE(1713)] = 34758, + [SMALL_STATE(1714)] = 34818, + [SMALL_STATE(1715)] = 34878, + [SMALL_STATE(1716)] = 34964, + [SMALL_STATE(1717)] = 35050, + [SMALL_STATE(1718)] = 35120, + [SMALL_STATE(1719)] = 35190, + [SMALL_STATE(1720)] = 35260, + [SMALL_STATE(1721)] = 35330, + [SMALL_STATE(1722)] = 35416, + [SMALL_STATE(1723)] = 35502, + [SMALL_STATE(1724)] = 35588, + [SMALL_STATE(1725)] = 35674, + [SMALL_STATE(1726)] = 35760, + [SMALL_STATE(1727)] = 35846, + [SMALL_STATE(1728)] = 35903, + [SMALL_STATE(1729)] = 35974, + [SMALL_STATE(1730)] = 36037, + [SMALL_STATE(1731)] = 36104, + [SMALL_STATE(1732)] = 36185, + [SMALL_STATE(1733)] = 36252, + [SMALL_STATE(1734)] = 36315, + [SMALL_STATE(1735)] = 36378, + [SMALL_STATE(1736)] = 36439, + [SMALL_STATE(1737)] = 36496, + [SMALL_STATE(1738)] = 36567, + [SMALL_STATE(1739)] = 36636, + [SMALL_STATE(1740)] = 36717, + [SMALL_STATE(1741)] = 36798, + [SMALL_STATE(1742)] = 36865, + [SMALL_STATE(1743)] = 36924, + [SMALL_STATE(1744)] = 36983, + [SMALL_STATE(1745)] = 37050, + [SMALL_STATE(1746)] = 37117, + [SMALL_STATE(1747)] = 37184, + [SMALL_STATE(1748)] = 37255, + [SMALL_STATE(1749)] = 37326, + [SMALL_STATE(1750)] = 37397, + [SMALL_STATE(1751)] = 37465, + [SMALL_STATE(1752)] = 37523, + [SMALL_STATE(1753)] = 37601, + [SMALL_STATE(1754)] = 37669, + [SMALL_STATE(1755)] = 37723, + [SMALL_STATE(1756)] = 37777, + [SMALL_STATE(1757)] = 37831, + [SMALL_STATE(1758)] = 37885, + [SMALL_STATE(1759)] = 37939, + [SMALL_STATE(1760)] = 37993, + [SMALL_STATE(1761)] = 38071, + [SMALL_STATE(1762)] = 38133, + [SMALL_STATE(1763)] = 38211, + [SMALL_STATE(1764)] = 38279, + [SMALL_STATE(1765)] = 38341, + [SMALL_STATE(1766)] = 38419, + [SMALL_STATE(1767)] = 38479, + [SMALL_STATE(1768)] = 38557, + [SMALL_STATE(1769)] = 38613, + [SMALL_STATE(1770)] = 38691, + [SMALL_STATE(1771)] = 38771, + [SMALL_STATE(1772)] = 38833, + [SMALL_STATE(1773)] = 38911, + [SMALL_STATE(1774)] = 38989, + [SMALL_STATE(1775)] = 39057, + [SMALL_STATE(1776)] = 39125, + [SMALL_STATE(1777)] = 39183, + [SMALL_STATE(1778)] = 39243, + [SMALL_STATE(1779)] = 39321, + [SMALL_STATE(1780)] = 39389, + [SMALL_STATE(1781)] = 39447, + [SMALL_STATE(1782)] = 39525, + [SMALL_STATE(1783)] = 39583, + [SMALL_STATE(1784)] = 39651, + [SMALL_STATE(1785)] = 39705, + [SMALL_STATE(1786)] = 39783, + [SMALL_STATE(1787)] = 39841, + [SMALL_STATE(1788)] = 39895, + [SMALL_STATE(1789)] = 39949, + [SMALL_STATE(1790)] = 40029, + [SMALL_STATE(1791)] = 40085, + [SMALL_STATE(1792)] = 40138, + [SMALL_STATE(1793)] = 40215, + [SMALL_STATE(1794)] = 40292, + [SMALL_STATE(1795)] = 40357, + [SMALL_STATE(1796)] = 40422, + [SMALL_STATE(1797)] = 40487, + [SMALL_STATE(1798)] = 40544, + [SMALL_STATE(1799)] = 40609, + [SMALL_STATE(1800)] = 40660, + [SMALL_STATE(1801)] = 40719, + [SMALL_STATE(1802)] = 40784, + [SMALL_STATE(1803)] = 40835, + [SMALL_STATE(1804)] = 40892, + [SMALL_STATE(1805)] = 40957, + [SMALL_STATE(1806)] = 41008, + [SMALL_STATE(1807)] = 41061, + [SMALL_STATE(1808)] = 41114, + [SMALL_STATE(1809)] = 41167, + [SMALL_STATE(1810)] = 41222, + [SMALL_STATE(1811)] = 41275, + [SMALL_STATE(1812)] = 41328, + [SMALL_STATE(1813)] = 41379, + [SMALL_STATE(1814)] = 41444, + [SMALL_STATE(1815)] = 41499, + [SMALL_STATE(1816)] = 41562, + [SMALL_STATE(1817)] = 41617, + [SMALL_STATE(1818)] = 41672, + [SMALL_STATE(1819)] = 41749, + [SMALL_STATE(1820)] = 41814, + [SMALL_STATE(1821)] = 41879, + [SMALL_STATE(1822)] = 41944, + [SMALL_STATE(1823)] = 42009, + [SMALL_STATE(1824)] = 42062, + [SMALL_STATE(1825)] = 42115, + [SMALL_STATE(1826)] = 42168, + [SMALL_STATE(1827)] = 42233, + [SMALL_STATE(1828)] = 42288, + [SMALL_STATE(1829)] = 42353, + [SMALL_STATE(1830)] = 42408, + [SMALL_STATE(1831)] = 42473, + [SMALL_STATE(1832)] = 42538, + [SMALL_STATE(1833)] = 42603, + [SMALL_STATE(1834)] = 42654, + [SMALL_STATE(1835)] = 42731, + [SMALL_STATE(1836)] = 42808, + [SMALL_STATE(1837)] = 42859, + [SMALL_STATE(1838)] = 42924, + [SMALL_STATE(1839)] = 43001, + [SMALL_STATE(1840)] = 43066, + [SMALL_STATE(1841)] = 43131, + [SMALL_STATE(1842)] = 43208, + [SMALL_STATE(1843)] = 43265, + [SMALL_STATE(1844)] = 43342, + [SMALL_STATE(1845)] = 43407, + [SMALL_STATE(1846)] = 43484, + [SMALL_STATE(1847)] = 43561, + [SMALL_STATE(1848)] = 43638, + [SMALL_STATE(1849)] = 43703, + [SMALL_STATE(1850)] = 43768, + [SMALL_STATE(1851)] = 43833, + [SMALL_STATE(1852)] = 43898, + [SMALL_STATE(1853)] = 43975, + [SMALL_STATE(1854)] = 44040, + [SMALL_STATE(1855)] = 44105, + [SMALL_STATE(1856)] = 44159, + [SMALL_STATE(1857)] = 44219, + [SMALL_STATE(1858)] = 44281, + [SMALL_STATE(1859)] = 44343, + [SMALL_STATE(1860)] = 44403, + [SMALL_STATE(1861)] = 44463, + [SMALL_STATE(1862)] = 44523, + [SMALL_STATE(1863)] = 44575, + [SMALL_STATE(1864)] = 44637, + [SMALL_STATE(1865)] = 44689, + [SMALL_STATE(1866)] = 44741, + [SMALL_STATE(1867)] = 44793, + [SMALL_STATE(1868)] = 44847, + [SMALL_STATE(1869)] = 44899, + [SMALL_STATE(1870)] = 44951, + [SMALL_STATE(1871)] = 45005, + [SMALL_STATE(1872)] = 45057, + [SMALL_STATE(1873)] = 45109, + [SMALL_STATE(1874)] = 45161, + [SMALL_STATE(1875)] = 45215, + [SMALL_STATE(1876)] = 45266, + [SMALL_STATE(1877)] = 45325, + [SMALL_STATE(1878)] = 45376, + [SMALL_STATE(1879)] = 45427, + [SMALL_STATE(1880)] = 45478, + [SMALL_STATE(1881)] = 45529, + [SMALL_STATE(1882)] = 45580, + [SMALL_STATE(1883)] = 45639, + [SMALL_STATE(1884)] = 45738, + [SMALL_STATE(1885)] = 45789, + [SMALL_STATE(1886)] = 45844, + [SMALL_STATE(1887)] = 45895, + [SMALL_STATE(1888)] = 45954, + [SMALL_STATE(1889)] = 46005, + [SMALL_STATE(1890)] = 46056, + [SMALL_STATE(1891)] = 46107, + [SMALL_STATE(1892)] = 46166, + [SMALL_STATE(1893)] = 46217, + [SMALL_STATE(1894)] = 46268, + [SMALL_STATE(1895)] = 46319, + [SMALL_STATE(1896)] = 46370, + [SMALL_STATE(1897)] = 46421, + [SMALL_STATE(1898)] = 46472, + [SMALL_STATE(1899)] = 46523, + [SMALL_STATE(1900)] = 46574, + [SMALL_STATE(1901)] = 46625, + [SMALL_STATE(1902)] = 46680, + [SMALL_STATE(1903)] = 46739, + [SMALL_STATE(1904)] = 46790, + [SMALL_STATE(1905)] = 46841, + [SMALL_STATE(1906)] = 46896, + [SMALL_STATE(1907)] = 46947, + [SMALL_STATE(1908)] = 47006, + [SMALL_STATE(1909)] = 47065, + [SMALL_STATE(1910)] = 47120, + [SMALL_STATE(1911)] = 47171, + [SMALL_STATE(1912)] = 47221, + [SMALL_STATE(1913)] = 47271, + [SMALL_STATE(1914)] = 47329, + [SMALL_STATE(1915)] = 47385, + [SMALL_STATE(1916)] = 47435, + [SMALL_STATE(1917)] = 47493, + [SMALL_STATE(1918)] = 47551, + [SMALL_STATE(1919)] = 47647, + [SMALL_STATE(1920)] = 47701, + [SMALL_STATE(1921)] = 47753, + [SMALL_STATE(1922)] = 47803, + [SMALL_STATE(1923)] = 47857, + [SMALL_STATE(1924)] = 47909, + [SMALL_STATE(1925)] = 47967, + [SMALL_STATE(1926)] = 48021, + [SMALL_STATE(1927)] = 48071, + [SMALL_STATE(1928)] = 48121, + [SMALL_STATE(1929)] = 48171, + [SMALL_STATE(1930)] = 48221, + [SMALL_STATE(1931)] = 48271, + [SMALL_STATE(1932)] = 48323, + [SMALL_STATE(1933)] = 48419, + [SMALL_STATE(1934)] = 48469, + [SMALL_STATE(1935)] = 48523, + [SMALL_STATE(1936)] = 48573, + [SMALL_STATE(1937)] = 48623, + [SMALL_STATE(1938)] = 48681, + [SMALL_STATE(1939)] = 48733, + [SMALL_STATE(1940)] = 48783, + [SMALL_STATE(1941)] = 48841, + [SMALL_STATE(1942)] = 48891, + [SMALL_STATE(1943)] = 48941, + [SMALL_STATE(1944)] = 48999, + [SMALL_STATE(1945)] = 49049, + [SMALL_STATE(1946)] = 49099, + [SMALL_STATE(1947)] = 49149, + [SMALL_STATE(1948)] = 49202, + [SMALL_STATE(1949)] = 49253, + [SMALL_STATE(1950)] = 49306, + [SMALL_STATE(1951)] = 49359, + [SMALL_STATE(1952)] = 49408, + [SMALL_STATE(1953)] = 49457, + [SMALL_STATE(1954)] = 49506, + [SMALL_STATE(1955)] = 49557, + [SMALL_STATE(1956)] = 49606, + [SMALL_STATE(1957)] = 49659, + [SMALL_STATE(1958)] = 49714, + [SMALL_STATE(1959)] = 49767, + [SMALL_STATE(1960)] = 49820, + [SMALL_STATE(1961)] = 49871, + [SMALL_STATE(1962)] = 49924, + [SMALL_STATE(1963)] = 49979, + [SMALL_STATE(1964)] = 50028, + [SMALL_STATE(1965)] = 50123, + [SMALL_STATE(1966)] = 50172, + [SMALL_STATE(1967)] = 50221, + [SMALL_STATE(1968)] = 50274, + [SMALL_STATE(1969)] = 50323, + [SMALL_STATE(1970)] = 50376, + [SMALL_STATE(1971)] = 50429, + [SMALL_STATE(1972)] = 50482, + [SMALL_STATE(1973)] = 50535, + [SMALL_STATE(1974)] = 50584, + [SMALL_STATE(1975)] = 50633, + [SMALL_STATE(1976)] = 50728, + [SMALL_STATE(1977)] = 50781, + [SMALL_STATE(1978)] = 50834, + [SMALL_STATE(1979)] = 50887, + [SMALL_STATE(1980)] = 50936, + [SMALL_STATE(1981)] = 50985, + [SMALL_STATE(1982)] = 51038, + [SMALL_STATE(1983)] = 51091, + [SMALL_STATE(1984)] = 51144, + [SMALL_STATE(1985)] = 51201, + [SMALL_STATE(1986)] = 51254, + [SMALL_STATE(1987)] = 51303, + [SMALL_STATE(1988)] = 51356, + [SMALL_STATE(1989)] = 51409, + [SMALL_STATE(1990)] = 51458, + [SMALL_STATE(1991)] = 51513, + [SMALL_STATE(1992)] = 51566, + [SMALL_STATE(1993)] = 51617, + [SMALL_STATE(1994)] = 51670, + [SMALL_STATE(1995)] = 51723, + [SMALL_STATE(1996)] = 51776, + [SMALL_STATE(1997)] = 51829, + [SMALL_STATE(1998)] = 51887, + [SMALL_STATE(1999)] = 51939, + [SMALL_STATE(2000)] = 51991, + [SMALL_STATE(2001)] = 52043, + [SMALL_STATE(2002)] = 52095, + [SMALL_STATE(2003)] = 52143, + [SMALL_STATE(2004)] = 52191, + [SMALL_STATE(2005)] = 52243, + [SMALL_STATE(2006)] = 52295, + [SMALL_STATE(2007)] = 52347, + [SMALL_STATE(2008)] = 52401, + [SMALL_STATE(2009)] = 52457, + [SMALL_STATE(2010)] = 52505, + [SMALL_STATE(2011)] = 52553, + [SMALL_STATE(2012)] = 52601, + [SMALL_STATE(2013)] = 52649, + [SMALL_STATE(2014)] = 52703, + [SMALL_STATE(2015)] = 52759, + [SMALL_STATE(2016)] = 52809, + [SMALL_STATE(2017)] = 52859, + [SMALL_STATE(2018)] = 52913, + [SMALL_STATE(2019)] = 52967, + [SMALL_STATE(2020)] = 53033, + [SMALL_STATE(2021)] = 53097, + [SMALL_STATE(2022)] = 53155, + [SMALL_STATE(2023)] = 53209, + [SMALL_STATE(2024)] = 53263, + [SMALL_STATE(2025)] = 53339, + [SMALL_STATE(2026)] = 53389, + [SMALL_STATE(2027)] = 53467, + [SMALL_STATE(2028)] = 53547, + [SMALL_STATE(2029)] = 53615, + [SMALL_STATE(2030)] = 53677, + [SMALL_STATE(2031)] = 53747, + [SMALL_STATE(2032)] = 53819, + [SMALL_STATE(2033)] = 53893, + [SMALL_STATE(2034)] = 53947, + [SMALL_STATE(2035)] = 54013, + [SMALL_STATE(2036)] = 54077, + [SMALL_STATE(2037)] = 54141, + [SMALL_STATE(2038)] = 54203, + [SMALL_STATE(2039)] = 54259, + [SMALL_STATE(2040)] = 54313, + [SMALL_STATE(2041)] = 54365, + [SMALL_STATE(2042)] = 54441, + [SMALL_STATE(2043)] = 54515, + [SMALL_STATE(2044)] = 54593, + [SMALL_STATE(2045)] = 54669, + [SMALL_STATE(2046)] = 54749, + [SMALL_STATE(2047)] = 54827, + [SMALL_STATE(2048)] = 54895, + [SMALL_STATE(2049)] = 54961, + [SMALL_STATE(2050)] = 55023, + [SMALL_STATE(2051)] = 55083, + [SMALL_STATE(2052)] = 55153, + [SMALL_STATE(2053)] = 55221, + [SMALL_STATE(2054)] = 55293, + [SMALL_STATE(2055)] = 55363, + [SMALL_STATE(2056)] = 55437, + [SMALL_STATE(2057)] = 55509, + [SMALL_STATE(2058)] = 55575, + [SMALL_STATE(2059)] = 55639, + [SMALL_STATE(2060)] = 55697, + [SMALL_STATE(2061)] = 55751, + [SMALL_STATE(2062)] = 55827, + [SMALL_STATE(2063)] = 55905, + [SMALL_STATE(2064)] = 55985, + [SMALL_STATE(2065)] = 56053, + [SMALL_STATE(2066)] = 56115, + [SMALL_STATE(2067)] = 56185, + [SMALL_STATE(2068)] = 56257, + [SMALL_STATE(2069)] = 56331, + [SMALL_STATE(2070)] = 56385, + [SMALL_STATE(2071)] = 56449, + [SMALL_STATE(2072)] = 56511, + [SMALL_STATE(2073)] = 56567, + [SMALL_STATE(2074)] = 56619, + [SMALL_STATE(2075)] = 56693, + [SMALL_STATE(2076)] = 56769, + [SMALL_STATE(2077)] = 56847, + [SMALL_STATE(2078)] = 56913, + [SMALL_STATE(2079)] = 56973, + [SMALL_STATE(2080)] = 57041, + [SMALL_STATE(2081)] = 57111, + [SMALL_STATE(2082)] = 57183, + [SMALL_STATE(2083)] = 57249, + [SMALL_STATE(2084)] = 57313, + [SMALL_STATE(2085)] = 57377, + [SMALL_STATE(2086)] = 57429, + [SMALL_STATE(2087)] = 57487, + [SMALL_STATE(2088)] = 57543, + [SMALL_STATE(2089)] = 57597, + [SMALL_STATE(2090)] = 57649, + [SMALL_STATE(2091)] = 57725, + [SMALL_STATE(2092)] = 57799, + [SMALL_STATE(2093)] = 57877, + [SMALL_STATE(2094)] = 57953, + [SMALL_STATE(2095)] = 58033, + [SMALL_STATE(2096)] = 58111, + [SMALL_STATE(2097)] = 58179, + [SMALL_STATE(2098)] = 58245, + [SMALL_STATE(2099)] = 58307, + [SMALL_STATE(2100)] = 58367, + [SMALL_STATE(2101)] = 58437, + [SMALL_STATE(2102)] = 58505, + [SMALL_STATE(2103)] = 58577, + [SMALL_STATE(2104)] = 58647, + [SMALL_STATE(2105)] = 58721, + [SMALL_STATE(2106)] = 58793, + [SMALL_STATE(2107)] = 58847, + [SMALL_STATE(2108)] = 58911, + [SMALL_STATE(2109)] = 58973, + [SMALL_STATE(2110)] = 59029, + [SMALL_STATE(2111)] = 59081, + [SMALL_STATE(2112)] = 59155, + [SMALL_STATE(2113)] = 59231, + [SMALL_STATE(2114)] = 59309, + [SMALL_STATE(2115)] = 59375, + [SMALL_STATE(2116)] = 59435, + [SMALL_STATE(2117)] = 59503, + [SMALL_STATE(2118)] = 59573, + [SMALL_STATE(2119)] = 59645, + [SMALL_STATE(2120)] = 59699, + [SMALL_STATE(2121)] = 59747, + [SMALL_STATE(2122)] = 59801, + [SMALL_STATE(2123)] = 59853, + [SMALL_STATE(2124)] = 59903, + [SMALL_STATE(2125)] = 59951, + [SMALL_STATE(2126)] = 60001, + [SMALL_STATE(2127)] = 60053, + [SMALL_STATE(2128)] = 60101, + [SMALL_STATE(2129)] = 60151, + [SMALL_STATE(2130)] = 60201, + [SMALL_STATE(2131)] = 60249, + [SMALL_STATE(2132)] = 60297, + [SMALL_STATE(2133)] = 60349, + [SMALL_STATE(2134)] = 60403, + [SMALL_STATE(2135)] = 60457, + [SMALL_STATE(2136)] = 60503, + [SMALL_STATE(2137)] = 60557, + [SMALL_STATE(2138)] = 60611, + [SMALL_STATE(2139)] = 60665, + [SMALL_STATE(2140)] = 60719, + [SMALL_STATE(2141)] = 60771, + [SMALL_STATE(2142)] = 60833, + [SMALL_STATE(2143)] = 60882, + [SMALL_STATE(2144)] = 60931, + [SMALL_STATE(2145)] = 60980, + [SMALL_STATE(2146)] = 61059, + [SMALL_STATE(2147)] = 61110, + [SMALL_STATE(2148)] = 61161, + [SMALL_STATE(2149)] = 61208, + [SMALL_STATE(2150)] = 61255, + [SMALL_STATE(2151)] = 61304, + [SMALL_STATE(2152)] = 61351, + [SMALL_STATE(2153)] = 61396, + [SMALL_STATE(2154)] = 61445, + [SMALL_STATE(2155)] = 61494, + [SMALL_STATE(2156)] = 61543, + [SMALL_STATE(2157)] = 61590, + [SMALL_STATE(2158)] = 61669, + [SMALL_STATE(2159)] = 61716, + [SMALL_STATE(2160)] = 61765, + [SMALL_STATE(2161)] = 61844, + [SMALL_STATE(2162)] = 61923, + [SMALL_STATE(2163)] = 61972, + [SMALL_STATE(2164)] = 62051, + [SMALL_STATE(2165)] = 62130, + [SMALL_STATE(2166)] = 62177, + [SMALL_STATE(2167)] = 62223, + [SMALL_STATE(2168)] = 62269, + [SMALL_STATE(2169)] = 62315, + [SMALL_STATE(2170)] = 62361, + [SMALL_STATE(2171)] = 62407, + [SMALL_STATE(2172)] = 62453, + [SMALL_STATE(2173)] = 62499, + [SMALL_STATE(2174)] = 62545, + [SMALL_STATE(2175)] = 62591, + [SMALL_STATE(2176)] = 62637, + [SMALL_STATE(2177)] = 62729, + [SMALL_STATE(2178)] = 62775, + [SMALL_STATE(2179)] = 62821, + [SMALL_STATE(2180)] = 62881, + [SMALL_STATE(2181)] = 62939, + [SMALL_STATE(2182)] = 62991, + [SMALL_STATE(2183)] = 63039, + [SMALL_STATE(2184)] = 63109, + [SMALL_STATE(2185)] = 63181, + [SMALL_STATE(2186)] = 63255, + [SMALL_STATE(2187)] = 63317, + [SMALL_STATE(2188)] = 63373, + [SMALL_STATE(2189)] = 63437, + [SMALL_STATE(2190)] = 63503, + [SMALL_STATE(2191)] = 63571, + [SMALL_STATE(2192)] = 63617, + [SMALL_STATE(2193)] = 63663, + [SMALL_STATE(2194)] = 63711, + [SMALL_STATE(2195)] = 63759, + [SMALL_STATE(2196)] = 63805, + [SMALL_STATE(2197)] = 63851, + [SMALL_STATE(2198)] = 63897, + [SMALL_STATE(2199)] = 63945, + [SMALL_STATE(2200)] = 63991, + [SMALL_STATE(2201)] = 64037, + [SMALL_STATE(2202)] = 64129, + [SMALL_STATE(2203)] = 64175, + [SMALL_STATE(2204)] = 64221, + [SMALL_STATE(2205)] = 64267, + [SMALL_STATE(2206)] = 64313, + [SMALL_STATE(2207)] = 64359, + [SMALL_STATE(2208)] = 64405, + [SMALL_STATE(2209)] = 64451, + [SMALL_STATE(2210)] = 64497, + [SMALL_STATE(2211)] = 64543, + [SMALL_STATE(2212)] = 64589, + [SMALL_STATE(2213)] = 64649, + [SMALL_STATE(2214)] = 64707, + [SMALL_STATE(2215)] = 64759, + [SMALL_STATE(2216)] = 64807, + [SMALL_STATE(2217)] = 64877, + [SMALL_STATE(2218)] = 64923, + [SMALL_STATE(2219)] = 64995, + [SMALL_STATE(2220)] = 65069, + [SMALL_STATE(2221)] = 65115, + [SMALL_STATE(2222)] = 65177, + [SMALL_STATE(2223)] = 65233, + [SMALL_STATE(2224)] = 65281, + [SMALL_STATE(2225)] = 65345, + [SMALL_STATE(2226)] = 65437, + [SMALL_STATE(2227)] = 65503, + [SMALL_STATE(2228)] = 65571, + [SMALL_STATE(2229)] = 65619, + [SMALL_STATE(2230)] = 65665, + [SMALL_STATE(2231)] = 65711, + [SMALL_STATE(2232)] = 65759, + [SMALL_STATE(2233)] = 65805, + [SMALL_STATE(2234)] = 65851, + [SMALL_STATE(2235)] = 65899, + [SMALL_STATE(2236)] = 65947, + [SMALL_STATE(2237)] = 65993, + [SMALL_STATE(2238)] = 66085, + [SMALL_STATE(2239)] = 66131, + [SMALL_STATE(2240)] = 66177, + [SMALL_STATE(2241)] = 66223, + [SMALL_STATE(2242)] = 66269, + [SMALL_STATE(2243)] = 66315, + [SMALL_STATE(2244)] = 66361, + [SMALL_STATE(2245)] = 66407, + [SMALL_STATE(2246)] = 66455, + [SMALL_STATE(2247)] = 66500, + [SMALL_STATE(2248)] = 66573, + [SMALL_STATE(2249)] = 66624, + [SMALL_STATE(2250)] = 66697, + [SMALL_STATE(2251)] = 66770, + [SMALL_STATE(2252)] = 66843, + [SMALL_STATE(2253)] = 66916, + [SMALL_STATE(2254)] = 66989, + [SMALL_STATE(2255)] = 67075, + [SMALL_STATE(2256)] = 67125, + [SMALL_STATE(2257)] = 67175, + [SMALL_STATE(2258)] = 67225, + [SMALL_STATE(2259)] = 67275, + [SMALL_STATE(2260)] = 67321, + [SMALL_STATE(2261)] = 67367, + [SMALL_STATE(2262)] = 67416, + [SMALL_STATE(2263)] = 67465, + [SMALL_STATE(2264)] = 67514, + [SMALL_STATE(2265)] = 67561, + [SMALL_STATE(2266)] = 67612, + [SMALL_STATE(2267)] = 67655, + [SMALL_STATE(2268)] = 67698, + [SMALL_STATE(2269)] = 67741, + [SMALL_STATE(2270)] = 67790, + [SMALL_STATE(2271)] = 67835, + [SMALL_STATE(2272)] = 67884, + [SMALL_STATE(2273)] = 67933, + [SMALL_STATE(2274)] = 67976, + [SMALL_STATE(2275)] = 68019, + [SMALL_STATE(2276)] = 68062, + [SMALL_STATE(2277)] = 68107, + [SMALL_STATE(2278)] = 68150, + [SMALL_STATE(2279)] = 68193, + [SMALL_STATE(2280)] = 68235, + [SMALL_STATE(2281)] = 68315, + [SMALL_STATE(2282)] = 68359, + [SMALL_STATE(2283)] = 68439, + [SMALL_STATE(2284)] = 68485, + [SMALL_STATE(2285)] = 68527, + [SMALL_STATE(2286)] = 68605, + [SMALL_STATE(2287)] = 68650, + [SMALL_STATE(2288)] = 68691, + [SMALL_STATE(2289)] = 68736, + [SMALL_STATE(2290)] = 68818, + [SMALL_STATE(2291)] = 68862, + [SMALL_STATE(2292)] = 68906, + [SMALL_STATE(2293)] = 68950, + [SMALL_STATE(2294)] = 68990, + [SMALL_STATE(2295)] = 69034, + [SMALL_STATE(2296)] = 69116, + [SMALL_STATE(2297)] = 69161, + [SMALL_STATE(2298)] = 69237, + [SMALL_STATE(2299)] = 69313, + [SMALL_STATE(2300)] = 69389, + [SMALL_STATE(2301)] = 69465, + [SMALL_STATE(2302)] = 69541, + [SMALL_STATE(2303)] = 69587, + [SMALL_STATE(2304)] = 69639, + [SMALL_STATE(2305)] = 69715, + [SMALL_STATE(2306)] = 69791, + [SMALL_STATE(2307)] = 69867, + [SMALL_STATE(2308)] = 69943, + [SMALL_STATE(2309)] = 70019, + [SMALL_STATE(2310)] = 70095, + [SMALL_STATE(2311)] = 70171, + [SMALL_STATE(2312)] = 70247, + [SMALL_STATE(2313)] = 70323, + [SMALL_STATE(2314)] = 70399, + [SMALL_STATE(2315)] = 70475, + [SMALL_STATE(2316)] = 70551, + [SMALL_STATE(2317)] = 70627, + [SMALL_STATE(2318)] = 70703, + [SMALL_STATE(2319)] = 70779, + [SMALL_STATE(2320)] = 70855, + [SMALL_STATE(2321)] = 70931, + [SMALL_STATE(2322)] = 71007, + [SMALL_STATE(2323)] = 71083, + [SMALL_STATE(2324)] = 71127, + [SMALL_STATE(2325)] = 71169, + [SMALL_STATE(2326)] = 71215, + [SMALL_STATE(2327)] = 71261, + [SMALL_STATE(2328)] = 71337, + [SMALL_STATE(2329)] = 71413, + [SMALL_STATE(2330)] = 71464, + [SMALL_STATE(2331)] = 71503, + [SMALL_STATE(2332)] = 71552, + [SMALL_STATE(2333)] = 71601, + [SMALL_STATE(2334)] = 71650, + [SMALL_STATE(2335)] = 71696, + [SMALL_STATE(2336)] = 71766, + [SMALL_STATE(2337)] = 71806, + [SMALL_STATE(2338)] = 71876, + [SMALL_STATE(2339)] = 71946, + [SMALL_STATE(2340)] = 72016, + [SMALL_STATE(2341)] = 72056, + [SMALL_STATE(2342)] = 72126, + [SMALL_STATE(2343)] = 72174, + [SMALL_STATE(2344)] = 72244, + [SMALL_STATE(2345)] = 72292, + [SMALL_STATE(2346)] = 72340, + [SMALL_STATE(2347)] = 72410, + [SMALL_STATE(2348)] = 72456, + [SMALL_STATE(2349)] = 72526, + [SMALL_STATE(2350)] = 72572, + [SMALL_STATE(2351)] = 72618, + [SMALL_STATE(2352)] = 72688, + [SMALL_STATE(2353)] = 72742, + [SMALL_STATE(2354)] = 72812, + [SMALL_STATE(2355)] = 72882, + [SMALL_STATE(2356)] = 72952, + [SMALL_STATE(2357)] = 72999, + [SMALL_STATE(2358)] = 73038, + [SMALL_STATE(2359)] = 73075, + [SMALL_STATE(2360)] = 73114, + [SMALL_STATE(2361)] = 73151, + [SMALL_STATE(2362)] = 73202, + [SMALL_STATE(2363)] = 73253, + [SMALL_STATE(2364)] = 73298, + [SMALL_STATE(2365)] = 73351, + [SMALL_STATE(2366)] = 73402, + [SMALL_STATE(2367)] = 73447, + [SMALL_STATE(2368)] = 73492, + [SMALL_STATE(2369)] = 73537, + [SMALL_STATE(2370)] = 73575, + [SMALL_STATE(2371)] = 73609, + [SMALL_STATE(2372)] = 73657, + [SMALL_STATE(2373)] = 73693, + [SMALL_STATE(2374)] = 73743, + [SMALL_STATE(2375)] = 73793, + [SMALL_STATE(2376)] = 73839, + [SMALL_STATE(2377)] = 73877, + [SMALL_STATE(2378)] = 73919, + [SMALL_STATE(2379)] = 73955, + [SMALL_STATE(2380)] = 73989, + [SMALL_STATE(2381)] = 74037, + [SMALL_STATE(2382)] = 74085, + [SMALL_STATE(2383)] = 74133, + [SMALL_STATE(2384)] = 74167, + [SMALL_STATE(2385)] = 74207, + [SMALL_STATE(2386)] = 74241, + [SMALL_STATE(2387)] = 74281, + [SMALL_STATE(2388)] = 74319, + [SMALL_STATE(2389)] = 74357, + [SMALL_STATE(2390)] = 74407, + [SMALL_STATE(2391)] = 74441, + [SMALL_STATE(2392)] = 74481, + [SMALL_STATE(2393)] = 74515, + [SMALL_STATE(2394)] = 74549, + [SMALL_STATE(2395)] = 74583, + [SMALL_STATE(2396)] = 74621, + [SMALL_STATE(2397)] = 74655, + [SMALL_STATE(2398)] = 74694, + [SMALL_STATE(2399)] = 74729, + [SMALL_STATE(2400)] = 74770, + [SMALL_STATE(2401)] = 74809, + [SMALL_STATE(2402)] = 74844, + [SMALL_STATE(2403)] = 74895, + [SMALL_STATE(2404)] = 74930, + [SMALL_STATE(2405)] = 74969, + [SMALL_STATE(2406)] = 75002, + [SMALL_STATE(2407)] = 75039, + [SMALL_STATE(2408)] = 75086, + [SMALL_STATE(2409)] = 75133, + [SMALL_STATE(2410)] = 75180, + [SMALL_STATE(2411)] = 75217, + [SMALL_STATE(2412)] = 75254, + [SMALL_STATE(2413)] = 75293, + [SMALL_STATE(2414)] = 75328, + [SMALL_STATE(2415)] = 75367, + [SMALL_STATE(2416)] = 75408, + [SMALL_STATE(2417)] = 75441, + [SMALL_STATE(2418)] = 75480, + [SMALL_STATE(2419)] = 75519, + [SMALL_STATE(2420)] = 75566, + [SMALL_STATE(2421)] = 75601, + [SMALL_STATE(2422)] = 75638, + [SMALL_STATE(2423)] = 75671, + [SMALL_STATE(2424)] = 75718, + [SMALL_STATE(2425)] = 75755, + [SMALL_STATE(2426)] = 75791, + [SMALL_STATE(2427)] = 75827, + [SMALL_STATE(2428)] = 75865, + [SMALL_STATE(2429)] = 75901, + [SMALL_STATE(2430)] = 75935, + [SMALL_STATE(2431)] = 75975, + [SMALL_STATE(2432)] = 76013, + [SMALL_STATE(2433)] = 76045, + [SMALL_STATE(2434)] = 76079, + [SMALL_STATE(2435)] = 76111, + [SMALL_STATE(2436)] = 76143, + [SMALL_STATE(2437)] = 76175, + [SMALL_STATE(2438)] = 76215, + [SMALL_STATE(2439)] = 76249, + [SMALL_STATE(2440)] = 76289, + [SMALL_STATE(2441)] = 76321, + [SMALL_STATE(2442)] = 76353, + [SMALL_STATE(2443)] = 76387, + [SMALL_STATE(2444)] = 76425, + [SMALL_STATE(2445)] = 76461, + [SMALL_STATE(2446)] = 76499, + [SMALL_STATE(2447)] = 76537, + [SMALL_STATE(2448)] = 76571, + [SMALL_STATE(2449)] = 76603, + [SMALL_STATE(2450)] = 76635, + [SMALL_STATE(2451)] = 76683, + [SMALL_STATE(2452)] = 76731, + [SMALL_STATE(2453)] = 76779, + [SMALL_STATE(2454)] = 76817, + [SMALL_STATE(2455)] = 76855, + [SMALL_STATE(2456)] = 76887, + [SMALL_STATE(2457)] = 76925, + [SMALL_STATE(2458)] = 76963, + [SMALL_STATE(2459)] = 76997, + [SMALL_STATE(2460)] = 77033, + [SMALL_STATE(2461)] = 77067, + [SMALL_STATE(2462)] = 77113, + [SMALL_STATE(2463)] = 77149, + [SMALL_STATE(2464)] = 77180, + [SMALL_STATE(2465)] = 77217, + [SMALL_STATE(2466)] = 77254, + [SMALL_STATE(2467)] = 77291, + [SMALL_STATE(2468)] = 77326, + [SMALL_STATE(2469)] = 77365, + [SMALL_STATE(2470)] = 77400, + [SMALL_STATE(2471)] = 77431, + [SMALL_STATE(2472)] = 77462, + [SMALL_STATE(2473)] = 77493, + [SMALL_STATE(2474)] = 77526, + [SMALL_STATE(2475)] = 77559, + [SMALL_STATE(2476)] = 77594, + [SMALL_STATE(2477)] = 77625, + [SMALL_STATE(2478)] = 77656, + [SMALL_STATE(2479)] = 77701, + [SMALL_STATE(2480)] = 77738, + [SMALL_STATE(2481)] = 77783, + [SMALL_STATE(2482)] = 77828, + [SMALL_STATE(2483)] = 77859, + [SMALL_STATE(2484)] = 77890, + [SMALL_STATE(2485)] = 77921, + [SMALL_STATE(2486)] = 77966, + [SMALL_STATE(2487)] = 77997, + [SMALL_STATE(2488)] = 78036, + [SMALL_STATE(2489)] = 78075, + [SMALL_STATE(2490)] = 78106, + [SMALL_STATE(2491)] = 78139, + [SMALL_STATE(2492)] = 78170, + [SMALL_STATE(2493)] = 78215, + [SMALL_STATE(2494)] = 78256, + [SMALL_STATE(2495)] = 78289, + [SMALL_STATE(2496)] = 78324, + [SMALL_STATE(2497)] = 78359, + [SMALL_STATE(2498)] = 78388, + [SMALL_STATE(2499)] = 78419, + [SMALL_STATE(2500)] = 78448, + [SMALL_STATE(2501)] = 78477, + [SMALL_STATE(2502)] = 78509, + [SMALL_STATE(2503)] = 78547, + [SMALL_STATE(2504)] = 78579, + [SMALL_STATE(2505)] = 78611, + [SMALL_STATE(2506)] = 78645, + [SMALL_STATE(2507)] = 78673, + [SMALL_STATE(2508)] = 78709, + [SMALL_STATE(2509)] = 78747, + [SMALL_STATE(2510)] = 78775, + [SMALL_STATE(2511)] = 78809, + [SMALL_STATE(2512)] = 78839, + [SMALL_STATE(2513)] = 78869, + [SMALL_STATE(2514)] = 78899, + [SMALL_STATE(2515)] = 78929, + [SMALL_STATE(2516)] = 78965, + [SMALL_STATE(2517)] = 79001, + [SMALL_STATE(2518)] = 79029, + [SMALL_STATE(2519)] = 79059, + [SMALL_STATE(2520)] = 79091, + [SMALL_STATE(2521)] = 79127, + [SMALL_STATE(2522)] = 79161, + [SMALL_STATE(2523)] = 79197, + [SMALL_STATE(2524)] = 79227, + [SMALL_STATE(2525)] = 79259, + [SMALL_STATE(2526)] = 79295, + [SMALL_STATE(2527)] = 79331, + [SMALL_STATE(2528)] = 79369, + [SMALL_STATE(2529)] = 79409, + [SMALL_STATE(2530)] = 79441, + [SMALL_STATE(2531)] = 79493, + [SMALL_STATE(2532)] = 79523, + [SMALL_STATE(2533)] = 79553, + [SMALL_STATE(2534)] = 79581, + [SMALL_STATE(2535)] = 79617, + [SMALL_STATE(2536)] = 79669, + [SMALL_STATE(2537)] = 79701, + [SMALL_STATE(2538)] = 79731, + [SMALL_STATE(2539)] = 79767, + [SMALL_STATE(2540)] = 79795, + [SMALL_STATE(2541)] = 79833, + [SMALL_STATE(2542)] = 79867, + [SMALL_STATE(2543)] = 79897, + [SMALL_STATE(2544)] = 79927, + [SMALL_STATE(2545)] = 79959, + [SMALL_STATE(2546)] = 79991, + [SMALL_STATE(2547)] = 80025, + [SMALL_STATE(2548)] = 80053, + [SMALL_STATE(2549)] = 80083, + [SMALL_STATE(2550)] = 80115, + [SMALL_STATE(2551)] = 80165, + [SMALL_STATE(2552)] = 80217, + [SMALL_STATE(2553)] = 80249, + [SMALL_STATE(2554)] = 80281, + [SMALL_STATE(2555)] = 80311, + [SMALL_STATE(2556)] = 80343, + [SMALL_STATE(2557)] = 80395, + [SMALL_STATE(2558)] = 80425, + [SMALL_STATE(2559)] = 80457, + [SMALL_STATE(2560)] = 80495, + [SMALL_STATE(2561)] = 80525, + [SMALL_STATE(2562)] = 80562, + [SMALL_STATE(2563)] = 80593, + [SMALL_STATE(2564)] = 80624, + [SMALL_STATE(2565)] = 80655, + [SMALL_STATE(2566)] = 80682, + [SMALL_STATE(2567)] = 80711, + [SMALL_STATE(2568)] = 80742, + [SMALL_STATE(2569)] = 80771, + [SMALL_STATE(2570)] = 80808, + [SMALL_STATE(2571)] = 80837, + [SMALL_STATE(2572)] = 80872, + [SMALL_STATE(2573)] = 80899, + [SMALL_STATE(2574)] = 80936, + [SMALL_STATE(2575)] = 80965, + [SMALL_STATE(2576)] = 80994, + [SMALL_STATE(2577)] = 81021, + [SMALL_STATE(2578)] = 81054, + [SMALL_STATE(2579)] = 81085, + [SMALL_STATE(2580)] = 81116, + [SMALL_STATE(2581)] = 81143, + [SMALL_STATE(2582)] = 81174, + [SMALL_STATE(2583)] = 81201, + [SMALL_STATE(2584)] = 81230, + [SMALL_STATE(2585)] = 81257, + [SMALL_STATE(2586)] = 81286, + [SMALL_STATE(2587)] = 81313, + [SMALL_STATE(2588)] = 81348, + [SMALL_STATE(2589)] = 81379, + [SMALL_STATE(2590)] = 81416, + [SMALL_STATE(2591)] = 81447, + [SMALL_STATE(2592)] = 81478, + [SMALL_STATE(2593)] = 81515, + [SMALL_STATE(2594)] = 81544, + [SMALL_STATE(2595)] = 81571, + [SMALL_STATE(2596)] = 81598, + [SMALL_STATE(2597)] = 81631, + [SMALL_STATE(2598)] = 81664, + [SMALL_STATE(2599)] = 81701, + [SMALL_STATE(2600)] = 81728, + [SMALL_STATE(2601)] = 81765, + [SMALL_STATE(2602)] = 81796, + [SMALL_STATE(2603)] = 81823, + [SMALL_STATE(2604)] = 81852, + [SMALL_STATE(2605)] = 81883, + [SMALL_STATE(2606)] = 81914, + [SMALL_STATE(2607)] = 81947, + [SMALL_STATE(2608)] = 81976, + [SMALL_STATE(2609)] = 82009, + [SMALL_STATE(2610)] = 82040, + [SMALL_STATE(2611)] = 82071, + [SMALL_STATE(2612)] = 82102, + [SMALL_STATE(2613)] = 82137, + [SMALL_STATE(2614)] = 82168, + [SMALL_STATE(2615)] = 82197, + [SMALL_STATE(2616)] = 82226, + [SMALL_STATE(2617)] = 82257, + [SMALL_STATE(2618)] = 82294, + [SMALL_STATE(2619)] = 82321, + [SMALL_STATE(2620)] = 82350, + [SMALL_STATE(2621)] = 82377, + [SMALL_STATE(2622)] = 82414, + [SMALL_STATE(2623)] = 82449, + [SMALL_STATE(2624)] = 82486, + [SMALL_STATE(2625)] = 82515, + [SMALL_STATE(2626)] = 82544, + [SMALL_STATE(2627)] = 82577, + [SMALL_STATE(2628)] = 82610, + [SMALL_STATE(2629)] = 82641, + [SMALL_STATE(2630)] = 82672, + [SMALL_STATE(2631)] = 82709, + [SMALL_STATE(2632)] = 82740, + [SMALL_STATE(2633)] = 82771, + [SMALL_STATE(2634)] = 82802, + [SMALL_STATE(2635)] = 82833, + [SMALL_STATE(2636)] = 82862, + [SMALL_STATE(2637)] = 82899, + [SMALL_STATE(2638)] = 82934, + [SMALL_STATE(2639)] = 82971, + [SMALL_STATE(2640)] = 83002, + [SMALL_STATE(2641)] = 83037, + [SMALL_STATE(2642)] = 83068, + [SMALL_STATE(2643)] = 83099, + [SMALL_STATE(2644)] = 83126, + [SMALL_STATE(2645)] = 83154, + [SMALL_STATE(2646)] = 83182, + [SMALL_STATE(2647)] = 83210, + [SMALL_STATE(2648)] = 83238, + [SMALL_STATE(2649)] = 83266, + [SMALL_STATE(2650)] = 83296, + [SMALL_STATE(2651)] = 83332, + [SMALL_STATE(2652)] = 83358, + [SMALL_STATE(2653)] = 83390, + [SMALL_STATE(2654)] = 83418, + [SMALL_STATE(2655)] = 83450, + [SMALL_STATE(2656)] = 83482, + [SMALL_STATE(2657)] = 83514, + [SMALL_STATE(2658)] = 83546, + [SMALL_STATE(2659)] = 83578, + [SMALL_STATE(2660)] = 83614, + [SMALL_STATE(2661)] = 83658, + [SMALL_STATE(2662)] = 83688, + [SMALL_STATE(2663)] = 83724, + [SMALL_STATE(2664)] = 83752, + [SMALL_STATE(2665)] = 83788, + [SMALL_STATE(2666)] = 83818, + [SMALL_STATE(2667)] = 83846, + [SMALL_STATE(2668)] = 83874, + [SMALL_STATE(2669)] = 83904, + [SMALL_STATE(2670)] = 83940, + [SMALL_STATE(2671)] = 83968, + [SMALL_STATE(2672)] = 84004, + [SMALL_STATE(2673)] = 84034, + [SMALL_STATE(2674)] = 84070, + [SMALL_STATE(2675)] = 84098, + [SMALL_STATE(2676)] = 84132, + [SMALL_STATE(2677)] = 84168, + [SMALL_STATE(2678)] = 84198, + [SMALL_STATE(2679)] = 84226, + [SMALL_STATE(2680)] = 84264, + [SMALL_STATE(2681)] = 84296, + [SMALL_STATE(2682)] = 84332, + [SMALL_STATE(2683)] = 84366, + [SMALL_STATE(2684)] = 84400, + [SMALL_STATE(2685)] = 84444, + [SMALL_STATE(2686)] = 84488, + [SMALL_STATE(2687)] = 84518, + [SMALL_STATE(2688)] = 84548, + [SMALL_STATE(2689)] = 84584, + [SMALL_STATE(2690)] = 84612, + [SMALL_STATE(2691)] = 84642, + [SMALL_STATE(2692)] = 84676, + [SMALL_STATE(2693)] = 84706, + [SMALL_STATE(2694)] = 84736, + [SMALL_STATE(2695)] = 84770, + [SMALL_STATE(2696)] = 84798, + [SMALL_STATE(2697)] = 84826, + [SMALL_STATE(2698)] = 84862, + [SMALL_STATE(2699)] = 84898, + [SMALL_STATE(2700)] = 84928, + [SMALL_STATE(2701)] = 84958, + [SMALL_STATE(2702)] = 84988, + [SMALL_STATE(2703)] = 85024, + [SMALL_STATE(2704)] = 85058, + [SMALL_STATE(2705)] = 85090, + [SMALL_STATE(2706)] = 85120, + [SMALL_STATE(2707)] = 85148, + [SMALL_STATE(2708)] = 85192, + [SMALL_STATE(2709)] = 85220, + [SMALL_STATE(2710)] = 85264, + [SMALL_STATE(2711)] = 85296, + [SMALL_STATE(2712)] = 85324, + [SMALL_STATE(2713)] = 85354, + [SMALL_STATE(2714)] = 85388, + [SMALL_STATE(2715)] = 85418, + [SMALL_STATE(2716)] = 85445, + [SMALL_STATE(2717)] = 85472, + [SMALL_STATE(2718)] = 85497, + [SMALL_STATE(2719)] = 85524, + [SMALL_STATE(2720)] = 85551, + [SMALL_STATE(2721)] = 85578, + [SMALL_STATE(2722)] = 85609, + [SMALL_STATE(2723)] = 85636, + [SMALL_STATE(2724)] = 85667, + [SMALL_STATE(2725)] = 85694, + [SMALL_STATE(2726)] = 85721, + [SMALL_STATE(2727)] = 85750, + [SMALL_STATE(2728)] = 85779, + [SMALL_STATE(2729)] = 85810, + [SMALL_STATE(2730)] = 85841, + [SMALL_STATE(2731)] = 85868, + [SMALL_STATE(2732)] = 85895, + [SMALL_STATE(2733)] = 85922, + [SMALL_STATE(2734)] = 85949, + [SMALL_STATE(2735)] = 85980, + [SMALL_STATE(2736)] = 86011, + [SMALL_STATE(2737)] = 86040, + [SMALL_STATE(2738)] = 86069, + [SMALL_STATE(2739)] = 86102, + [SMALL_STATE(2740)] = 86135, + [SMALL_STATE(2741)] = 86166, + [SMALL_STATE(2742)] = 86197, + [SMALL_STATE(2743)] = 86224, + [SMALL_STATE(2744)] = 86251, + [SMALL_STATE(2745)] = 86280, + [SMALL_STATE(2746)] = 86309, + [SMALL_STATE(2747)] = 86340, + [SMALL_STATE(2748)] = 86371, + [SMALL_STATE(2749)] = 86398, + [SMALL_STATE(2750)] = 86425, + [SMALL_STATE(2751)] = 86452, + [SMALL_STATE(2752)] = 86483, + [SMALL_STATE(2753)] = 86514, + [SMALL_STATE(2754)] = 86545, + [SMALL_STATE(2755)] = 86574, + [SMALL_STATE(2756)] = 86603, + [SMALL_STATE(2757)] = 86636, + [SMALL_STATE(2758)] = 86669, + [SMALL_STATE(2759)] = 86700, + [SMALL_STATE(2760)] = 86731, + [SMALL_STATE(2761)] = 86762, + [SMALL_STATE(2762)] = 86793, + [SMALL_STATE(2763)] = 86826, + [SMALL_STATE(2764)] = 86859, + [SMALL_STATE(2765)] = 86886, + [SMALL_STATE(2766)] = 86913, + [SMALL_STATE(2767)] = 86940, + [SMALL_STATE(2768)] = 86967, + [SMALL_STATE(2769)] = 86998, + [SMALL_STATE(2770)] = 87029, + [SMALL_STATE(2771)] = 87056, + [SMALL_STATE(2772)] = 87083, + [SMALL_STATE(2773)] = 87112, + [SMALL_STATE(2774)] = 87141, + [SMALL_STATE(2775)] = 87170, + [SMALL_STATE(2776)] = 87195, + [SMALL_STATE(2777)] = 87224, + [SMALL_STATE(2778)] = 87257, + [SMALL_STATE(2779)] = 87284, + [SMALL_STATE(2780)] = 87311, + [SMALL_STATE(2781)] = 87340, + [SMALL_STATE(2782)] = 87369, + [SMALL_STATE(2783)] = 87400, + [SMALL_STATE(2784)] = 87433, + [SMALL_STATE(2785)] = 87464, + [SMALL_STATE(2786)] = 87495, + [SMALL_STATE(2787)] = 87522, + [SMALL_STATE(2788)] = 87549, + [SMALL_STATE(2789)] = 87578, + [SMALL_STATE(2790)] = 87607, + [SMALL_STATE(2791)] = 87638, + [SMALL_STATE(2792)] = 87669, + [SMALL_STATE(2793)] = 87700, + [SMALL_STATE(2794)] = 87731, + [SMALL_STATE(2795)] = 87762, + [SMALL_STATE(2796)] = 87789, + [SMALL_STATE(2797)] = 87818, + [SMALL_STATE(2798)] = 87845, + [SMALL_STATE(2799)] = 87876, + [SMALL_STATE(2800)] = 87907, + [SMALL_STATE(2801)] = 87938, + [SMALL_STATE(2802)] = 87969, + [SMALL_STATE(2803)] = 88002, + [SMALL_STATE(2804)] = 88035, + [SMALL_STATE(2805)] = 88068, + [SMALL_STATE(2806)] = 88099, + [SMALL_STATE(2807)] = 88130, + [SMALL_STATE(2808)] = 88159, + [SMALL_STATE(2809)] = 88194, + [SMALL_STATE(2810)] = 88225, + [SMALL_STATE(2811)] = 88256, + [SMALL_STATE(2812)] = 88291, + [SMALL_STATE(2813)] = 88322, + [SMALL_STATE(2814)] = 88349, + [SMALL_STATE(2815)] = 88380, + [SMALL_STATE(2816)] = 88411, + [SMALL_STATE(2817)] = 88442, + [SMALL_STATE(2818)] = 88469, + [SMALL_STATE(2819)] = 88500, + [SMALL_STATE(2820)] = 88533, + [SMALL_STATE(2821)] = 88564, + [SMALL_STATE(2822)] = 88595, + [SMALL_STATE(2823)] = 88622, + [SMALL_STATE(2824)] = 88647, + [SMALL_STATE(2825)] = 88680, + [SMALL_STATE(2826)] = 88705, + [SMALL_STATE(2827)] = 88736, + [SMALL_STATE(2828)] = 88767, + [SMALL_STATE(2829)] = 88792, + [SMALL_STATE(2830)] = 88817, + [SMALL_STATE(2831)] = 88842, + [SMALL_STATE(2832)] = 88877, + [SMALL_STATE(2833)] = 88912, + [SMALL_STATE(2834)] = 88947, + [SMALL_STATE(2835)] = 88982, + [SMALL_STATE(2836)] = 89017, + [SMALL_STATE(2837)] = 89052, + [SMALL_STATE(2838)] = 89085, + [SMALL_STATE(2839)] = 89118, + [SMALL_STATE(2840)] = 89145, + [SMALL_STATE(2841)] = 89178, + [SMALL_STATE(2842)] = 89205, + [SMALL_STATE(2843)] = 89236, + [SMALL_STATE(2844)] = 89267, + [SMALL_STATE(2845)] = 89298, + [SMALL_STATE(2846)] = 89329, + [SMALL_STATE(2847)] = 89362, + [SMALL_STATE(2848)] = 89395, + [SMALL_STATE(2849)] = 89422, + [SMALL_STATE(2850)] = 89449, + [SMALL_STATE(2851)] = 89480, + [SMALL_STATE(2852)] = 89511, + [SMALL_STATE(2853)] = 89544, + [SMALL_STATE(2854)] = 89577, + [SMALL_STATE(2855)] = 89608, + [SMALL_STATE(2856)] = 89639, + [SMALL_STATE(2857)] = 89674, + [SMALL_STATE(2858)] = 89699, + [SMALL_STATE(2859)] = 89724, + [SMALL_STATE(2860)] = 89757, + [SMALL_STATE(2861)] = 89794, + [SMALL_STATE(2862)] = 89821, + [SMALL_STATE(2863)] = 89848, + [SMALL_STATE(2864)] = 89875, + [SMALL_STATE(2865)] = 89908, + [SMALL_STATE(2866)] = 89935, + [SMALL_STATE(2867)] = 89962, + [SMALL_STATE(2868)] = 89993, + [SMALL_STATE(2869)] = 90024, + [SMALL_STATE(2870)] = 90055, + [SMALL_STATE(2871)] = 90082, + [SMALL_STATE(2872)] = 90109, + [SMALL_STATE(2873)] = 90142, + [SMALL_STATE(2874)] = 90169, + [SMALL_STATE(2875)] = 90200, + [SMALL_STATE(2876)] = 90227, + [SMALL_STATE(2877)] = 90254, + [SMALL_STATE(2878)] = 90279, + [SMALL_STATE(2879)] = 90306, + [SMALL_STATE(2880)] = 90333, + [SMALL_STATE(2881)] = 90360, + [SMALL_STATE(2882)] = 90385, + [SMALL_STATE(2883)] = 90420, + [SMALL_STATE(2884)] = 90453, + [SMALL_STATE(2885)] = 90484, + [SMALL_STATE(2886)] = 90515, + [SMALL_STATE(2887)] = 90542, + [SMALL_STATE(2888)] = 90573, + [SMALL_STATE(2889)] = 90602, + [SMALL_STATE(2890)] = 90627, + [SMALL_STATE(2891)] = 90656, + [SMALL_STATE(2892)] = 90691, + [SMALL_STATE(2893)] = 90718, + [SMALL_STATE(2894)] = 90751, + [SMALL_STATE(2895)] = 90784, + [SMALL_STATE(2896)] = 90815, + [SMALL_STATE(2897)] = 90844, + [SMALL_STATE(2898)] = 90873, + [SMALL_STATE(2899)] = 90902, + [SMALL_STATE(2900)] = 90931, + [SMALL_STATE(2901)] = 90960, + [SMALL_STATE(2902)] = 90989, + [SMALL_STATE(2903)] = 91022, + [SMALL_STATE(2904)] = 91047, + [SMALL_STATE(2905)] = 91078, + [SMALL_STATE(2906)] = 91106, + [SMALL_STATE(2907)] = 91130, + [SMALL_STATE(2908)] = 91154, + [SMALL_STATE(2909)] = 91178, + [SMALL_STATE(2910)] = 91206, + [SMALL_STATE(2911)] = 91236, + [SMALL_STATE(2912)] = 91266, + [SMALL_STATE(2913)] = 91290, + [SMALL_STATE(2914)] = 91316, + [SMALL_STATE(2915)] = 91342, + [SMALL_STATE(2916)] = 91368, + [SMALL_STATE(2917)] = 91398, + [SMALL_STATE(2918)] = 91424, + [SMALL_STATE(2919)] = 91450, + [SMALL_STATE(2920)] = 91482, + [SMALL_STATE(2921)] = 91512, + [SMALL_STATE(2922)] = 91542, + [SMALL_STATE(2923)] = 91572, + [SMALL_STATE(2924)] = 91600, + [SMALL_STATE(2925)] = 91624, + [SMALL_STATE(2926)] = 91650, + [SMALL_STATE(2927)] = 91676, + [SMALL_STATE(2928)] = 91702, + [SMALL_STATE(2929)] = 91728, + [SMALL_STATE(2930)] = 91754, + [SMALL_STATE(2931)] = 91780, + [SMALL_STATE(2932)] = 91806, + [SMALL_STATE(2933)] = 91834, + [SMALL_STATE(2934)] = 91886, + [SMALL_STATE(2935)] = 91938, + [SMALL_STATE(2936)] = 91968, + [SMALL_STATE(2937)] = 91992, + [SMALL_STATE(2938)] = 92018, + [SMALL_STATE(2939)] = 92044, + [SMALL_STATE(2940)] = 92090, + [SMALL_STATE(2941)] = 92118, + [SMALL_STATE(2942)] = 92148, + [SMALL_STATE(2943)] = 92178, + [SMALL_STATE(2944)] = 92204, + [SMALL_STATE(2945)] = 92232, + [SMALL_STATE(2946)] = 92258, + [SMALL_STATE(2947)] = 92288, + [SMALL_STATE(2948)] = 92320, + [SMALL_STATE(2949)] = 92372, + [SMALL_STATE(2950)] = 92424, + [SMALL_STATE(2951)] = 92454, + [SMALL_STATE(2952)] = 92484, + [SMALL_STATE(2953)] = 92514, + [SMALL_STATE(2954)] = 92544, + [SMALL_STATE(2955)] = 92568, + [SMALL_STATE(2956)] = 92592, + [SMALL_STATE(2957)] = 92624, + [SMALL_STATE(2958)] = 92654, + [SMALL_STATE(2959)] = 92706, + [SMALL_STATE(2960)] = 92732, + [SMALL_STATE(2961)] = 92762, + [SMALL_STATE(2962)] = 92788, + [SMALL_STATE(2963)] = 92814, + [SMALL_STATE(2964)] = 92840, + [SMALL_STATE(2965)] = 92868, + [SMALL_STATE(2966)] = 92892, + [SMALL_STATE(2967)] = 92944, + [SMALL_STATE(2968)] = 92968, + [SMALL_STATE(2969)] = 92998, + [SMALL_STATE(2970)] = 93022, + [SMALL_STATE(2971)] = 93052, + [SMALL_STATE(2972)] = 93092, + [SMALL_STATE(2973)] = 93136, + [SMALL_STATE(2974)] = 93162, + [SMALL_STATE(2975)] = 93186, + [SMALL_STATE(2976)] = 93210, + [SMALL_STATE(2977)] = 93262, + [SMALL_STATE(2978)] = 93290, + [SMALL_STATE(2979)] = 93316, + [SMALL_STATE(2980)] = 93340, + [SMALL_STATE(2981)] = 93364, + [SMALL_STATE(2982)] = 93388, + [SMALL_STATE(2983)] = 93440, + [SMALL_STATE(2984)] = 93472, + [SMALL_STATE(2985)] = 93498, + [SMALL_STATE(2986)] = 93524, + [SMALL_STATE(2987)] = 93554, + [SMALL_STATE(2988)] = 93580, + [SMALL_STATE(2989)] = 93604, + [SMALL_STATE(2990)] = 93632, + [SMALL_STATE(2991)] = 93658, + [SMALL_STATE(2992)] = 93686, + [SMALL_STATE(2993)] = 93714, + [SMALL_STATE(2994)] = 93742, + [SMALL_STATE(2995)] = 93772, + [SMALL_STATE(2996)] = 93802, + [SMALL_STATE(2997)] = 93828, + [SMALL_STATE(2998)] = 93854, + [SMALL_STATE(2999)] = 93882, + [SMALL_STATE(3000)] = 93906, + [SMALL_STATE(3001)] = 93934, + [SMALL_STATE(3002)] = 93986, + [SMALL_STATE(3003)] = 94038, + [SMALL_STATE(3004)] = 94070, + [SMALL_STATE(3005)] = 94096, + [SMALL_STATE(3006)] = 94126, + [SMALL_STATE(3007)] = 94156, + [SMALL_STATE(3008)] = 94186, + [SMALL_STATE(3009)] = 94214, + [SMALL_STATE(3010)] = 94246, + [SMALL_STATE(3011)] = 94276, + [SMALL_STATE(3012)] = 94306, + [SMALL_STATE(3013)] = 94336, + [SMALL_STATE(3014)] = 94362, + [SMALL_STATE(3015)] = 94388, + [SMALL_STATE(3016)] = 94416, + [SMALL_STATE(3017)] = 94444, + [SMALL_STATE(3018)] = 94472, + [SMALL_STATE(3019)] = 94498, + [SMALL_STATE(3020)] = 94528, + [SMALL_STATE(3021)] = 94556, + [SMALL_STATE(3022)] = 94584, + [SMALL_STATE(3023)] = 94612, + [SMALL_STATE(3024)] = 94637, + [SMALL_STATE(3025)] = 94662, + [SMALL_STATE(3026)] = 94691, + [SMALL_STATE(3027)] = 94716, + [SMALL_STATE(3028)] = 94741, + [SMALL_STATE(3029)] = 94768, + [SMALL_STATE(3030)] = 94793, + [SMALL_STATE(3031)] = 94818, + [SMALL_STATE(3032)] = 94841, + [SMALL_STATE(3033)] = 94866, + [SMALL_STATE(3034)] = 94891, + [SMALL_STATE(3035)] = 94916, + [SMALL_STATE(3036)] = 94943, + [SMALL_STATE(3037)] = 94970, + [SMALL_STATE(3038)] = 94995, + [SMALL_STATE(3039)] = 95024, + [SMALL_STATE(3040)] = 95061, + [SMALL_STATE(3041)] = 95086, + [SMALL_STATE(3042)] = 95111, + [SMALL_STATE(3043)] = 95140, + [SMALL_STATE(3044)] = 95169, + [SMALL_STATE(3045)] = 95192, + [SMALL_STATE(3046)] = 95217, + [SMALL_STATE(3047)] = 95246, + [SMALL_STATE(3048)] = 95275, + [SMALL_STATE(3049)] = 95300, + [SMALL_STATE(3050)] = 95325, + [SMALL_STATE(3051)] = 95350, + [SMALL_STATE(3052)] = 95373, + [SMALL_STATE(3053)] = 95398, + [SMALL_STATE(3054)] = 95423, + [SMALL_STATE(3055)] = 95452, + [SMALL_STATE(3056)] = 95475, + [SMALL_STATE(3057)] = 95512, + [SMALL_STATE(3058)] = 95537, + [SMALL_STATE(3059)] = 95562, + [SMALL_STATE(3060)] = 95591, + [SMALL_STATE(3061)] = 95620, + [SMALL_STATE(3062)] = 95645, + [SMALL_STATE(3063)] = 95676, + [SMALL_STATE(3064)] = 95699, + [SMALL_STATE(3065)] = 95728, + [SMALL_STATE(3066)] = 95753, + [SMALL_STATE(3067)] = 95778, + [SMALL_STATE(3068)] = 95803, + [SMALL_STATE(3069)] = 95830, + [SMALL_STATE(3070)] = 95857, + [SMALL_STATE(3071)] = 95882, + [SMALL_STATE(3072)] = 95907, + [SMALL_STATE(3073)] = 95932, + [SMALL_STATE(3074)] = 95957, + [SMALL_STATE(3075)] = 95984, + [SMALL_STATE(3076)] = 96015, + [SMALL_STATE(3077)] = 96044, + [SMALL_STATE(3078)] = 96069, + [SMALL_STATE(3079)] = 96106, + [SMALL_STATE(3080)] = 96135, + [SMALL_STATE(3081)] = 96164, + [SMALL_STATE(3082)] = 96187, + [SMALL_STATE(3083)] = 96216, + [SMALL_STATE(3084)] = 96245, + [SMALL_STATE(3085)] = 96268, + [SMALL_STATE(3086)] = 96293, + [SMALL_STATE(3087)] = 96322, + [SMALL_STATE(3088)] = 96351, + [SMALL_STATE(3089)] = 96380, + [SMALL_STATE(3090)] = 96405, + [SMALL_STATE(3091)] = 96434, + [SMALL_STATE(3092)] = 96459, + [SMALL_STATE(3093)] = 96484, + [SMALL_STATE(3094)] = 96513, + [SMALL_STATE(3095)] = 96538, + [SMALL_STATE(3096)] = 96563, + [SMALL_STATE(3097)] = 96586, + [SMALL_STATE(3098)] = 96613, + [SMALL_STATE(3099)] = 96638, + [SMALL_STATE(3100)] = 96665, + [SMALL_STATE(3101)] = 96690, + [SMALL_STATE(3102)] = 96715, + [SMALL_STATE(3103)] = 96740, + [SMALL_STATE(3104)] = 96769, + [SMALL_STATE(3105)] = 96798, + [SMALL_STATE(3106)] = 96823, + [SMALL_STATE(3107)] = 96846, + [SMALL_STATE(3108)] = 96869, + [SMALL_STATE(3109)] = 96898, + [SMALL_STATE(3110)] = 96923, + [SMALL_STATE(3111)] = 96966, + [SMALL_STATE(3112)] = 96995, + [SMALL_STATE(3113)] = 97024, + [SMALL_STATE(3114)] = 97049, + [SMALL_STATE(3115)] = 97074, + [SMALL_STATE(3116)] = 97103, + [SMALL_STATE(3117)] = 97134, + [SMALL_STATE(3118)] = 97163, + [SMALL_STATE(3119)] = 97192, + [SMALL_STATE(3120)] = 97215, + [SMALL_STATE(3121)] = 97240, + [SMALL_STATE(3122)] = 97265, + [SMALL_STATE(3123)] = 97290, + [SMALL_STATE(3124)] = 97315, + [SMALL_STATE(3125)] = 97344, + [SMALL_STATE(3126)] = 97369, + [SMALL_STATE(3127)] = 97392, + [SMALL_STATE(3128)] = 97421, + [SMALL_STATE(3129)] = 97450, + [SMALL_STATE(3130)] = 97475, + [SMALL_STATE(3131)] = 97500, + [SMALL_STATE(3132)] = 97529, + [SMALL_STATE(3133)] = 97554, + [SMALL_STATE(3134)] = 97583, + [SMALL_STATE(3135)] = 97612, + [SMALL_STATE(3136)] = 97641, + [SMALL_STATE(3137)] = 97670, + [SMALL_STATE(3138)] = 97695, + [SMALL_STATE(3139)] = 97720, + [SMALL_STATE(3140)] = 97745, + [SMALL_STATE(3141)] = 97770, + [SMALL_STATE(3142)] = 97795, + [SMALL_STATE(3143)] = 97820, + [SMALL_STATE(3144)] = 97845, + [SMALL_STATE(3145)] = 97874, + [SMALL_STATE(3146)] = 97913, + [SMALL_STATE(3147)] = 97938, + [SMALL_STATE(3148)] = 97963, + [SMALL_STATE(3149)] = 97988, + [SMALL_STATE(3150)] = 98011, + [SMALL_STATE(3151)] = 98036, + [SMALL_STATE(3152)] = 98065, + [SMALL_STATE(3153)] = 98090, + [SMALL_STATE(3154)] = 98117, + [SMALL_STATE(3155)] = 98142, + [SMALL_STATE(3156)] = 98167, + [SMALL_STATE(3157)] = 98210, + [SMALL_STATE(3158)] = 98239, + [SMALL_STATE(3159)] = 98262, + [SMALL_STATE(3160)] = 98287, + [SMALL_STATE(3161)] = 98316, + [SMALL_STATE(3162)] = 98339, + [SMALL_STATE(3163)] = 98362, + [SMALL_STATE(3164)] = 98385, + [SMALL_STATE(3165)] = 98410, + [SMALL_STATE(3166)] = 98435, + [SMALL_STATE(3167)] = 98458, + [SMALL_STATE(3168)] = 98483, + [SMALL_STATE(3169)] = 98506, + [SMALL_STATE(3170)] = 98531, + [SMALL_STATE(3171)] = 98560, + [SMALL_STATE(3172)] = 98585, + [SMALL_STATE(3173)] = 98610, + [SMALL_STATE(3174)] = 98635, + [SMALL_STATE(3175)] = 98660, + [SMALL_STATE(3176)] = 98685, + [SMALL_STATE(3177)] = 98714, + [SMALL_STATE(3178)] = 98739, + [SMALL_STATE(3179)] = 98766, + [SMALL_STATE(3180)] = 98791, + [SMALL_STATE(3181)] = 98820, + [SMALL_STATE(3182)] = 98845, + [SMALL_STATE(3183)] = 98870, + [SMALL_STATE(3184)] = 98895, + [SMALL_STATE(3185)] = 98918, + [SMALL_STATE(3186)] = 98943, + [SMALL_STATE(3187)] = 98968, + [SMALL_STATE(3188)] = 98993, + [SMALL_STATE(3189)] = 99018, + [SMALL_STATE(3190)] = 99043, + [SMALL_STATE(3191)] = 99068, + [SMALL_STATE(3192)] = 99091, + [SMALL_STATE(3193)] = 99116, + [SMALL_STATE(3194)] = 99145, + [SMALL_STATE(3195)] = 99168, + [SMALL_STATE(3196)] = 99191, + [SMALL_STATE(3197)] = 99214, + [SMALL_STATE(3198)] = 99237, + [SMALL_STATE(3199)] = 99262, + [SMALL_STATE(3200)] = 99287, + [SMALL_STATE(3201)] = 99318, + [SMALL_STATE(3202)] = 99345, + [SMALL_STATE(3203)] = 99370, + [SMALL_STATE(3204)] = 99395, + [SMALL_STATE(3205)] = 99420, + [SMALL_STATE(3206)] = 99449, + [SMALL_STATE(3207)] = 99474, + [SMALL_STATE(3208)] = 99497, + [SMALL_STATE(3209)] = 99520, + [SMALL_STATE(3210)] = 99543, + [SMALL_STATE(3211)] = 99572, + [SMALL_STATE(3212)] = 99597, + [SMALL_STATE(3213)] = 99621, + [SMALL_STATE(3214)] = 99645, + [SMALL_STATE(3215)] = 99669, + [SMALL_STATE(3216)] = 99711, + [SMALL_STATE(3217)] = 99735, + [SMALL_STATE(3218)] = 99759, + [SMALL_STATE(3219)] = 99805, + [SMALL_STATE(3220)] = 99827, + [SMALL_STATE(3221)] = 99849, + [SMALL_STATE(3222)] = 99873, + [SMALL_STATE(3223)] = 99895, + [SMALL_STATE(3224)] = 99919, + [SMALL_STATE(3225)] = 99943, + [SMALL_STATE(3226)] = 99967, + [SMALL_STATE(3227)] = 99991, + [SMALL_STATE(3228)] = 100031, + [SMALL_STATE(3229)] = 100055, + [SMALL_STATE(3230)] = 100095, + [SMALL_STATE(3231)] = 100119, + [SMALL_STATE(3232)] = 100143, + [SMALL_STATE(3233)] = 100167, + [SMALL_STATE(3234)] = 100189, + [SMALL_STATE(3235)] = 100213, + [SMALL_STATE(3236)] = 100247, + [SMALL_STATE(3237)] = 100281, + [SMALL_STATE(3238)] = 100315, + [SMALL_STATE(3239)] = 100339, + [SMALL_STATE(3240)] = 100363, + [SMALL_STATE(3241)] = 100385, + [SMALL_STATE(3242)] = 100409, + [SMALL_STATE(3243)] = 100433, + [SMALL_STATE(3244)] = 100457, + [SMALL_STATE(3245)] = 100479, + [SMALL_STATE(3246)] = 100503, + [SMALL_STATE(3247)] = 100525, + [SMALL_STATE(3248)] = 100561, + [SMALL_STATE(3249)] = 100585, + [SMALL_STATE(3250)] = 100609, + [SMALL_STATE(3251)] = 100633, + [SMALL_STATE(3252)] = 100657, + [SMALL_STATE(3253)] = 100693, + [SMALL_STATE(3254)] = 100739, + [SMALL_STATE(3255)] = 100763, + [SMALL_STATE(3256)] = 100785, + [SMALL_STATE(3257)] = 100807, + [SMALL_STATE(3258)] = 100831, + [SMALL_STATE(3259)] = 100855, + [SMALL_STATE(3260)] = 100879, + [SMALL_STATE(3261)] = 100903, + [SMALL_STATE(3262)] = 100927, + [SMALL_STATE(3263)] = 100967, + [SMALL_STATE(3264)] = 100989, + [SMALL_STATE(3265)] = 101013, + [SMALL_STATE(3266)] = 101037, + [SMALL_STATE(3267)] = 101061, + [SMALL_STATE(3268)] = 101085, + [SMALL_STATE(3269)] = 101107, + [SMALL_STATE(3270)] = 101129, + [SMALL_STATE(3271)] = 101169, + [SMALL_STATE(3272)] = 101193, + [SMALL_STATE(3273)] = 101239, + [SMALL_STATE(3274)] = 101263, + [SMALL_STATE(3275)] = 101287, + [SMALL_STATE(3276)] = 101311, + [SMALL_STATE(3277)] = 101335, + [SMALL_STATE(3278)] = 101357, + [SMALL_STATE(3279)] = 101379, + [SMALL_STATE(3280)] = 101403, + [SMALL_STATE(3281)] = 101427, + [SMALL_STATE(3282)] = 101451, + [SMALL_STATE(3283)] = 101475, + [SMALL_STATE(3284)] = 101497, + [SMALL_STATE(3285)] = 101521, + [SMALL_STATE(3286)] = 101545, + [SMALL_STATE(3287)] = 101569, + [SMALL_STATE(3288)] = 101591, + [SMALL_STATE(3289)] = 101613, + [SMALL_STATE(3290)] = 101635, + [SMALL_STATE(3291)] = 101659, + [SMALL_STATE(3292)] = 101681, + [SMALL_STATE(3293)] = 101703, + [SMALL_STATE(3294)] = 101727, + [SMALL_STATE(3295)] = 101751, + [SMALL_STATE(3296)] = 101785, + [SMALL_STATE(3297)] = 101809, + [SMALL_STATE(3298)] = 101833, + [SMALL_STATE(3299)] = 101857, + [SMALL_STATE(3300)] = 101903, + [SMALL_STATE(3301)] = 101927, + [SMALL_STATE(3302)] = 101951, + [SMALL_STATE(3303)] = 101975, + [SMALL_STATE(3304)] = 101999, + [SMALL_STATE(3305)] = 102023, + [SMALL_STATE(3306)] = 102047, + [SMALL_STATE(3307)] = 102071, + [SMALL_STATE(3308)] = 102117, + [SMALL_STATE(3309)] = 102141, + [SMALL_STATE(3310)] = 102165, + [SMALL_STATE(3311)] = 102207, + [SMALL_STATE(3312)] = 102231, + [SMALL_STATE(3313)] = 102255, + [SMALL_STATE(3314)] = 102279, + [SMALL_STATE(3315)] = 102303, + [SMALL_STATE(3316)] = 102327, + [SMALL_STATE(3317)] = 102351, + [SMALL_STATE(3318)] = 102375, + [SMALL_STATE(3319)] = 102399, + [SMALL_STATE(3320)] = 102445, + [SMALL_STATE(3321)] = 102469, + [SMALL_STATE(3322)] = 102515, + [SMALL_STATE(3323)] = 102555, + [SMALL_STATE(3324)] = 102581, + [SMALL_STATE(3325)] = 102605, + [SMALL_STATE(3326)] = 102629, + [SMALL_STATE(3327)] = 102657, + [SMALL_STATE(3328)] = 102681, + [SMALL_STATE(3329)] = 102709, + [SMALL_STATE(3330)] = 102737, + [SMALL_STATE(3331)] = 102765, + [SMALL_STATE(3332)] = 102793, + [SMALL_STATE(3333)] = 102821, + [SMALL_STATE(3334)] = 102849, + [SMALL_STATE(3335)] = 102877, + [SMALL_STATE(3336)] = 102905, + [SMALL_STATE(3337)] = 102933, + [SMALL_STATE(3338)] = 102961, + [SMALL_STATE(3339)] = 102989, + [SMALL_STATE(3340)] = 103029, + [SMALL_STATE(3341)] = 103053, + [SMALL_STATE(3342)] = 103077, + [SMALL_STATE(3343)] = 103101, + [SMALL_STATE(3344)] = 103125, + [SMALL_STATE(3345)] = 103149, + [SMALL_STATE(3346)] = 103173, + [SMALL_STATE(3347)] = 103195, + [SMALL_STATE(3348)] = 103219, + [SMALL_STATE(3349)] = 103241, + [SMALL_STATE(3350)] = 103265, + [SMALL_STATE(3351)] = 103289, + [SMALL_STATE(3352)] = 103311, + [SMALL_STATE(3353)] = 103333, + [SMALL_STATE(3354)] = 103379, + [SMALL_STATE(3355)] = 103419, + [SMALL_STATE(3356)] = 103443, + [SMALL_STATE(3357)] = 103489, + [SMALL_STATE(3358)] = 103511, + [SMALL_STATE(3359)] = 103533, + [SMALL_STATE(3360)] = 103555, + [SMALL_STATE(3361)] = 103581, + [SMALL_STATE(3362)] = 103603, + [SMALL_STATE(3363)] = 103627, + [SMALL_STATE(3364)] = 103673, + [SMALL_STATE(3365)] = 103697, + [SMALL_STATE(3366)] = 103724, + [SMALL_STATE(3367)] = 103747, + [SMALL_STATE(3368)] = 103768, + [SMALL_STATE(3369)] = 103789, + [SMALL_STATE(3370)] = 103812, + [SMALL_STATE(3371)] = 103833, + [SMALL_STATE(3372)] = 103856, + [SMALL_STATE(3373)] = 103877, + [SMALL_STATE(3374)] = 103898, + [SMALL_STATE(3375)] = 103921, + [SMALL_STATE(3376)] = 103944, + [SMALL_STATE(3377)] = 103983, + [SMALL_STATE(3378)] = 104020, + [SMALL_STATE(3379)] = 104057, + [SMALL_STATE(3380)] = 104078, + [SMALL_STATE(3381)] = 104099, + [SMALL_STATE(3382)] = 104120, + [SMALL_STATE(3383)] = 104143, + [SMALL_STATE(3384)] = 104164, + [SMALL_STATE(3385)] = 104191, + [SMALL_STATE(3386)] = 104214, + [SMALL_STATE(3387)] = 104235, + [SMALL_STATE(3388)] = 104256, + [SMALL_STATE(3389)] = 104279, + [SMALL_STATE(3390)] = 104302, + [SMALL_STATE(3391)] = 104325, + [SMALL_STATE(3392)] = 104348, + [SMALL_STATE(3393)] = 104369, + [SMALL_STATE(3394)] = 104392, + [SMALL_STATE(3395)] = 104413, + [SMALL_STATE(3396)] = 104436, + [SMALL_STATE(3397)] = 104459, + [SMALL_STATE(3398)] = 104486, + [SMALL_STATE(3399)] = 104509, + [SMALL_STATE(3400)] = 104532, + [SMALL_STATE(3401)] = 104557, + [SMALL_STATE(3402)] = 104578, + [SMALL_STATE(3403)] = 104617, + [SMALL_STATE(3404)] = 104638, + [SMALL_STATE(3405)] = 104659, + [SMALL_STATE(3406)] = 104680, + [SMALL_STATE(3407)] = 104719, + [SMALL_STATE(3408)] = 104742, + [SMALL_STATE(3409)] = 104763, + [SMALL_STATE(3410)] = 104800, + [SMALL_STATE(3411)] = 104823, + [SMALL_STATE(3412)] = 104844, + [SMALL_STATE(3413)] = 104881, + [SMALL_STATE(3414)] = 104904, + [SMALL_STATE(3415)] = 104931, + [SMALL_STATE(3416)] = 104952, + [SMALL_STATE(3417)] = 104991, + [SMALL_STATE(3418)] = 105012, + [SMALL_STATE(3419)] = 105049, + [SMALL_STATE(3420)] = 105076, + [SMALL_STATE(3421)] = 105097, + [SMALL_STATE(3422)] = 105120, + [SMALL_STATE(3423)] = 105141, + [SMALL_STATE(3424)] = 105164, + [SMALL_STATE(3425)] = 105191, + [SMALL_STATE(3426)] = 105214, + [SMALL_STATE(3427)] = 105237, + [SMALL_STATE(3428)] = 105260, + [SMALL_STATE(3429)] = 105287, + [SMALL_STATE(3430)] = 105308, + [SMALL_STATE(3431)] = 105335, + [SMALL_STATE(3432)] = 105374, + [SMALL_STATE(3433)] = 105397, + [SMALL_STATE(3434)] = 105420, + [SMALL_STATE(3435)] = 105443, + [SMALL_STATE(3436)] = 105464, + [SMALL_STATE(3437)] = 105485, + [SMALL_STATE(3438)] = 105508, + [SMALL_STATE(3439)] = 105529, + [SMALL_STATE(3440)] = 105550, + [SMALL_STATE(3441)] = 105573, + [SMALL_STATE(3442)] = 105594, + [SMALL_STATE(3443)] = 105617, + [SMALL_STATE(3444)] = 105638, + [SMALL_STATE(3445)] = 105659, + [SMALL_STATE(3446)] = 105682, + [SMALL_STATE(3447)] = 105703, + [SMALL_STATE(3448)] = 105726, + [SMALL_STATE(3449)] = 105749, + [SMALL_STATE(3450)] = 105770, + [SMALL_STATE(3451)] = 105791, + [SMALL_STATE(3452)] = 105828, + [SMALL_STATE(3453)] = 105865, + [SMALL_STATE(3454)] = 105902, + [SMALL_STATE(3455)] = 105939, + [SMALL_STATE(3456)] = 105976, + [SMALL_STATE(3457)] = 106013, + [SMALL_STATE(3458)] = 106052, + [SMALL_STATE(3459)] = 106073, + [SMALL_STATE(3460)] = 106096, + [SMALL_STATE(3461)] = 106123, + [SMALL_STATE(3462)] = 106150, + [SMALL_STATE(3463)] = 106187, + [SMALL_STATE(3464)] = 106214, + [SMALL_STATE(3465)] = 106241, + [SMALL_STATE(3466)] = 106268, + [SMALL_STATE(3467)] = 106295, + [SMALL_STATE(3468)] = 106322, + [SMALL_STATE(3469)] = 106349, + [SMALL_STATE(3470)] = 106376, + [SMALL_STATE(3471)] = 106403, + [SMALL_STATE(3472)] = 106430, + [SMALL_STATE(3473)] = 106457, + [SMALL_STATE(3474)] = 106484, + [SMALL_STATE(3475)] = 106505, + [SMALL_STATE(3476)] = 106526, + [SMALL_STATE(3477)] = 106549, + [SMALL_STATE(3478)] = 106570, + [SMALL_STATE(3479)] = 106593, + [SMALL_STATE(3480)] = 106616, + [SMALL_STATE(3481)] = 106639, + [SMALL_STATE(3482)] = 106660, + [SMALL_STATE(3483)] = 106681, + [SMALL_STATE(3484)] = 106702, + [SMALL_STATE(3485)] = 106723, + [SMALL_STATE(3486)] = 106746, + [SMALL_STATE(3487)] = 106767, + [SMALL_STATE(3488)] = 106788, + [SMALL_STATE(3489)] = 106809, + [SMALL_STATE(3490)] = 106830, + [SMALL_STATE(3491)] = 106851, + [SMALL_STATE(3492)] = 106872, + [SMALL_STATE(3493)] = 106911, + [SMALL_STATE(3494)] = 106932, + [SMALL_STATE(3495)] = 106953, + [SMALL_STATE(3496)] = 106974, + [SMALL_STATE(3497)] = 107001, + [SMALL_STATE(3498)] = 107022, + [SMALL_STATE(3499)] = 107059, + [SMALL_STATE(3500)] = 107080, + [SMALL_STATE(3501)] = 107103, + [SMALL_STATE(3502)] = 107124, + [SMALL_STATE(3503)] = 107145, + [SMALL_STATE(3504)] = 107166, + [SMALL_STATE(3505)] = 107187, + [SMALL_STATE(3506)] = 107214, + [SMALL_STATE(3507)] = 107235, + [SMALL_STATE(3508)] = 107258, + [SMALL_STATE(3509)] = 107287, + [SMALL_STATE(3510)] = 107318, + [SMALL_STATE(3511)] = 107339, + [SMALL_STATE(3512)] = 107362, + [SMALL_STATE(3513)] = 107383, + [SMALL_STATE(3514)] = 107404, + [SMALL_STATE(3515)] = 107425, + [SMALL_STATE(3516)] = 107446, + [SMALL_STATE(3517)] = 107467, + [SMALL_STATE(3518)] = 107488, + [SMALL_STATE(3519)] = 107511, + [SMALL_STATE(3520)] = 107545, + [SMALL_STATE(3521)] = 107571, + [SMALL_STATE(3522)] = 107595, + [SMALL_STATE(3523)] = 107621, + [SMALL_STATE(3524)] = 107645, + [SMALL_STATE(3525)] = 107681, + [SMALL_STATE(3526)] = 107713, + [SMALL_STATE(3527)] = 107739, + [SMALL_STATE(3528)] = 107765, + [SMALL_STATE(3529)] = 107801, + [SMALL_STATE(3530)] = 107825, + [SMALL_STATE(3531)] = 107857, + [SMALL_STATE(3532)] = 107887, + [SMALL_STATE(3533)] = 107909, + [SMALL_STATE(3534)] = 107933, + [SMALL_STATE(3535)] = 107957, + [SMALL_STATE(3536)] = 107979, + [SMALL_STATE(3537)] = 108011, + [SMALL_STATE(3538)] = 108033, + [SMALL_STATE(3539)] = 108061, + [SMALL_STATE(3540)] = 108087, + [SMALL_STATE(3541)] = 108117, + [SMALL_STATE(3542)] = 108143, + [SMALL_STATE(3543)] = 108177, + [SMALL_STATE(3544)] = 108201, + [SMALL_STATE(3545)] = 108237, + [SMALL_STATE(3546)] = 108263, + [SMALL_STATE(3547)] = 108287, + [SMALL_STATE(3548)] = 108313, + [SMALL_STATE(3549)] = 108339, + [SMALL_STATE(3550)] = 108365, + [SMALL_STATE(3551)] = 108387, + [SMALL_STATE(3552)] = 108419, + [SMALL_STATE(3553)] = 108453, + [SMALL_STATE(3554)] = 108489, + [SMALL_STATE(3555)] = 108515, + [SMALL_STATE(3556)] = 108537, + [SMALL_STATE(3557)] = 108569, + [SMALL_STATE(3558)] = 108591, + [SMALL_STATE(3559)] = 108615, + [SMALL_STATE(3560)] = 108639, + [SMALL_STATE(3561)] = 108665, + [SMALL_STATE(3562)] = 108691, + [SMALL_STATE(3563)] = 108713, + [SMALL_STATE(3564)] = 108735, + [SMALL_STATE(3565)] = 108759, + [SMALL_STATE(3566)] = 108792, + [SMALL_STATE(3567)] = 108825, + [SMALL_STATE(3568)] = 108858, + [SMALL_STATE(3569)] = 108889, + [SMALL_STATE(3570)] = 108920, + [SMALL_STATE(3571)] = 108945, + [SMALL_STATE(3572)] = 108966, + [SMALL_STATE(3573)] = 108999, + [SMALL_STATE(3574)] = 109032, + [SMALL_STATE(3575)] = 109063, + [SMALL_STATE(3576)] = 109084, + [SMALL_STATE(3577)] = 109105, + [SMALL_STATE(3578)] = 109130, + [SMALL_STATE(3579)] = 109163, + [SMALL_STATE(3580)] = 109196, + [SMALL_STATE(3581)] = 109227, + [SMALL_STATE(3582)] = 109248, + [SMALL_STATE(3583)] = 109281, + [SMALL_STATE(3584)] = 109314, + [SMALL_STATE(3585)] = 109347, + [SMALL_STATE(3586)] = 109378, + [SMALL_STATE(3587)] = 109399, + [SMALL_STATE(3588)] = 109432, + [SMALL_STATE(3589)] = 109465, + [SMALL_STATE(3590)] = 109496, + [SMALL_STATE(3591)] = 109517, + [SMALL_STATE(3592)] = 109548, + [SMALL_STATE(3593)] = 109581, + [SMALL_STATE(3594)] = 109614, + [SMALL_STATE(3595)] = 109645, + [SMALL_STATE(3596)] = 109678, + [SMALL_STATE(3597)] = 109711, + [SMALL_STATE(3598)] = 109744, + [SMALL_STATE(3599)] = 109775, + [SMALL_STATE(3600)] = 109808, + [SMALL_STATE(3601)] = 109841, + [SMALL_STATE(3602)] = 109872, + [SMALL_STATE(3603)] = 109905, + [SMALL_STATE(3604)] = 109936, + [SMALL_STATE(3605)] = 109969, + [SMALL_STATE(3606)] = 110002, + [SMALL_STATE(3607)] = 110033, + [SMALL_STATE(3608)] = 110066, + [SMALL_STATE(3609)] = 110099, + [SMALL_STATE(3610)] = 110130, + [SMALL_STATE(3611)] = 110161, + [SMALL_STATE(3612)] = 110192, + [SMALL_STATE(3613)] = 110223, + [SMALL_STATE(3614)] = 110244, + [SMALL_STATE(3615)] = 110275, + [SMALL_STATE(3616)] = 110306, + [SMALL_STATE(3617)] = 110337, + [SMALL_STATE(3618)] = 110368, + [SMALL_STATE(3619)] = 110399, + [SMALL_STATE(3620)] = 110420, + [SMALL_STATE(3621)] = 110453, + [SMALL_STATE(3622)] = 110488, + [SMALL_STATE(3623)] = 110521, + [SMALL_STATE(3624)] = 110544, + [SMALL_STATE(3625)] = 110569, + [SMALL_STATE(3626)] = 110592, + [SMALL_STATE(3627)] = 110625, + [SMALL_STATE(3628)] = 110656, + [SMALL_STATE(3629)] = 110679, + [SMALL_STATE(3630)] = 110710, + [SMALL_STATE(3631)] = 110735, + [SMALL_STATE(3632)] = 110766, + [SMALL_STATE(3633)] = 110799, + [SMALL_STATE(3634)] = 110824, + [SMALL_STATE(3635)] = 110857, + [SMALL_STATE(3636)] = 110890, + [SMALL_STATE(3637)] = 110919, + [SMALL_STATE(3638)] = 110952, + [SMALL_STATE(3639)] = 110977, + [SMALL_STATE(3640)] = 111000, + [SMALL_STATE(3641)] = 111035, + [SMALL_STATE(3642)] = 111068, + [SMALL_STATE(3643)] = 111101, + [SMALL_STATE(3644)] = 111122, + [SMALL_STATE(3645)] = 111153, + [SMALL_STATE(3646)] = 111174, + [SMALL_STATE(3647)] = 111199, + [SMALL_STATE(3648)] = 111232, + [SMALL_STATE(3649)] = 111265, + [SMALL_STATE(3650)] = 111286, + [SMALL_STATE(3651)] = 111319, + [SMALL_STATE(3652)] = 111340, + [SMALL_STATE(3653)] = 111363, + [SMALL_STATE(3654)] = 111384, + [SMALL_STATE(3655)] = 111407, + [SMALL_STATE(3656)] = 111432, + [SMALL_STATE(3657)] = 111455, + [SMALL_STATE(3658)] = 111486, + [SMALL_STATE(3659)] = 111510, + [SMALL_STATE(3660)] = 111538, + [SMALL_STATE(3661)] = 111566, + [SMALL_STATE(3662)] = 111588, + [SMALL_STATE(3663)] = 111616, + [SMALL_STATE(3664)] = 111644, + [SMALL_STATE(3665)] = 111672, + [SMALL_STATE(3666)] = 111692, + [SMALL_STATE(3667)] = 111720, + [SMALL_STATE(3668)] = 111748, + [SMALL_STATE(3669)] = 111776, + [SMALL_STATE(3670)] = 111804, + [SMALL_STATE(3671)] = 111832, + [SMALL_STATE(3672)] = 111854, + [SMALL_STATE(3673)] = 111874, + [SMALL_STATE(3674)] = 111902, + [SMALL_STATE(3675)] = 111930, + [SMALL_STATE(3676)] = 111958, + [SMALL_STATE(3677)] = 111980, + [SMALL_STATE(3678)] = 112008, + [SMALL_STATE(3679)] = 112036, + [SMALL_STATE(3680)] = 112064, + [SMALL_STATE(3681)] = 112092, + [SMALL_STATE(3682)] = 112120, + [SMALL_STATE(3683)] = 112140, + [SMALL_STATE(3684)] = 112168, + [SMALL_STATE(3685)] = 112194, + [SMALL_STATE(3686)] = 112216, + [SMALL_STATE(3687)] = 112244, + [SMALL_STATE(3688)] = 112266, + [SMALL_STATE(3689)] = 112294, + [SMALL_STATE(3690)] = 112322, + [SMALL_STATE(3691)] = 112350, + [SMALL_STATE(3692)] = 112378, + [SMALL_STATE(3693)] = 112398, + [SMALL_STATE(3694)] = 112426, + [SMALL_STATE(3695)] = 112452, + [SMALL_STATE(3696)] = 112480, + [SMALL_STATE(3697)] = 112508, + [SMALL_STATE(3698)] = 112536, + [SMALL_STATE(3699)] = 112564, + [SMALL_STATE(3700)] = 112584, + [SMALL_STATE(3701)] = 112614, + [SMALL_STATE(3702)] = 112642, + [SMALL_STATE(3703)] = 112670, + [SMALL_STATE(3704)] = 112690, + [SMALL_STATE(3705)] = 112718, + [SMALL_STATE(3706)] = 112742, + [SMALL_STATE(3707)] = 112766, + [SMALL_STATE(3708)] = 112790, + [SMALL_STATE(3709)] = 112816, + [SMALL_STATE(3710)] = 112836, + [SMALL_STATE(3711)] = 112860, + [SMALL_STATE(3712)] = 112888, + [SMALL_STATE(3713)] = 112908, + [SMALL_STATE(3714)] = 112926, + [SMALL_STATE(3715)] = 112954, + [SMALL_STATE(3716)] = 112974, + [SMALL_STATE(3717)] = 113002, + [SMALL_STATE(3718)] = 113024, + [SMALL_STATE(3719)] = 113052, + [SMALL_STATE(3720)] = 113070, + [SMALL_STATE(3721)] = 113090, + [SMALL_STATE(3722)] = 113118, + [SMALL_STATE(3723)] = 113146, + [SMALL_STATE(3724)] = 113168, + [SMALL_STATE(3725)] = 113196, + [SMALL_STATE(3726)] = 113224, + [SMALL_STATE(3727)] = 113244, + [SMALL_STATE(3728)] = 113274, + [SMALL_STATE(3729)] = 113302, + [SMALL_STATE(3730)] = 113324, + [SMALL_STATE(3731)] = 113344, + [SMALL_STATE(3732)] = 113364, + [SMALL_STATE(3733)] = 113392, + [SMALL_STATE(3734)] = 113420, + [SMALL_STATE(3735)] = 113440, + [SMALL_STATE(3736)] = 113468, + [SMALL_STATE(3737)] = 113492, + [SMALL_STATE(3738)] = 113512, + [SMALL_STATE(3739)] = 113540, + [SMALL_STATE(3740)] = 113563, + [SMALL_STATE(3741)] = 113586, + [SMALL_STATE(3742)] = 113611, + [SMALL_STATE(3743)] = 113630, + [SMALL_STATE(3744)] = 113649, + [SMALL_STATE(3745)] = 113670, + [SMALL_STATE(3746)] = 113689, + [SMALL_STATE(3747)] = 113714, + [SMALL_STATE(3748)] = 113739, + [SMALL_STATE(3749)] = 113760, + [SMALL_STATE(3750)] = 113785, + [SMALL_STATE(3751)] = 113806, + [SMALL_STATE(3752)] = 113833, + [SMALL_STATE(3753)] = 113860, + [SMALL_STATE(3754)] = 113887, + [SMALL_STATE(3755)] = 113912, + [SMALL_STATE(3756)] = 113937, + [SMALL_STATE(3757)] = 113956, + [SMALL_STATE(3758)] = 113975, + [SMALL_STATE(3759)] = 114000, + [SMALL_STATE(3760)] = 114019, + [SMALL_STATE(3761)] = 114038, + [SMALL_STATE(3762)] = 114057, + [SMALL_STATE(3763)] = 114082, + [SMALL_STATE(3764)] = 114105, + [SMALL_STATE(3765)] = 114130, + [SMALL_STATE(3766)] = 114151, + [SMALL_STATE(3767)] = 114176, + [SMALL_STATE(3768)] = 114197, + [SMALL_STATE(3769)] = 114216, + [SMALL_STATE(3770)] = 114235, + [SMALL_STATE(3771)] = 114254, + [SMALL_STATE(3772)] = 114277, + [SMALL_STATE(3773)] = 114302, + [SMALL_STATE(3774)] = 114331, + [SMALL_STATE(3775)] = 114358, + [SMALL_STATE(3776)] = 114383, + [SMALL_STATE(3777)] = 114408, + [SMALL_STATE(3778)] = 114429, + [SMALL_STATE(3779)] = 114454, + [SMALL_STATE(3780)] = 114485, + [SMALL_STATE(3781)] = 114512, + [SMALL_STATE(3782)] = 114539, + [SMALL_STATE(3783)] = 114558, + [SMALL_STATE(3784)] = 114577, + [SMALL_STATE(3785)] = 114602, + [SMALL_STATE(3786)] = 114627, + [SMALL_STATE(3787)] = 114645, + [SMALL_STATE(3788)] = 114673, + [SMALL_STATE(3789)] = 114699, + [SMALL_STATE(3790)] = 114727, + [SMALL_STATE(3791)] = 114755, + [SMALL_STATE(3792)] = 114777, + [SMALL_STATE(3793)] = 114803, + [SMALL_STATE(3794)] = 114829, + [SMALL_STATE(3795)] = 114857, + [SMALL_STATE(3796)] = 114885, + [SMALL_STATE(3797)] = 114907, + [SMALL_STATE(3798)] = 114935, + [SMALL_STATE(3799)] = 114953, + [SMALL_STATE(3800)] = 114981, + [SMALL_STATE(3801)] = 115005, + [SMALL_STATE(3802)] = 115027, + [SMALL_STATE(3803)] = 115055, + [SMALL_STATE(3804)] = 115083, + [SMALL_STATE(3805)] = 115107, + [SMALL_STATE(3806)] = 115125, + [SMALL_STATE(3807)] = 115151, + [SMALL_STATE(3808)] = 115177, + [SMALL_STATE(3809)] = 115197, + [SMALL_STATE(3810)] = 115221, + [SMALL_STATE(3811)] = 115239, + [SMALL_STATE(3812)] = 115261, + [SMALL_STATE(3813)] = 115289, + [SMALL_STATE(3814)] = 115313, + [SMALL_STATE(3815)] = 115335, + [SMALL_STATE(3816)] = 115363, + [SMALL_STATE(3817)] = 115389, + [SMALL_STATE(3818)] = 115407, + [SMALL_STATE(3819)] = 115435, + [SMALL_STATE(3820)] = 115459, + [SMALL_STATE(3821)] = 115487, + [SMALL_STATE(3822)] = 115505, + [SMALL_STATE(3823)] = 115531, + [SMALL_STATE(3824)] = 115559, + [SMALL_STATE(3825)] = 115587, + [SMALL_STATE(3826)] = 115607, + [SMALL_STATE(3827)] = 115635, + [SMALL_STATE(3828)] = 115661, + [SMALL_STATE(3829)] = 115689, + [SMALL_STATE(3830)] = 115715, + [SMALL_STATE(3831)] = 115741, + [SMALL_STATE(3832)] = 115769, + [SMALL_STATE(3833)] = 115793, + [SMALL_STATE(3834)] = 115821, + [SMALL_STATE(3835)] = 115843, + [SMALL_STATE(3836)] = 115863, + [SMALL_STATE(3837)] = 115885, + [SMALL_STATE(3838)] = 115913, + [SMALL_STATE(3839)] = 115931, + [SMALL_STATE(3840)] = 115953, + [SMALL_STATE(3841)] = 115979, + [SMALL_STATE(3842)] = 116007, + [SMALL_STATE(3843)] = 116035, + [SMALL_STATE(3844)] = 116061, + [SMALL_STATE(3845)] = 116087, + [SMALL_STATE(3846)] = 116115, + [SMALL_STATE(3847)] = 116143, + [SMALL_STATE(3848)] = 116165, + [SMALL_STATE(3849)] = 116183, + [SMALL_STATE(3850)] = 116211, + [SMALL_STATE(3851)] = 116229, + [SMALL_STATE(3852)] = 116251, + [SMALL_STATE(3853)] = 116279, + [SMALL_STATE(3854)] = 116305, + [SMALL_STATE(3855)] = 116333, + [SMALL_STATE(3856)] = 116361, + [SMALL_STATE(3857)] = 116387, + [SMALL_STATE(3858)] = 116415, + [SMALL_STATE(3859)] = 116443, + [SMALL_STATE(3860)] = 116471, + [SMALL_STATE(3861)] = 116489, + [SMALL_STATE(3862)] = 116511, + [SMALL_STATE(3863)] = 116539, + [SMALL_STATE(3864)] = 116567, + [SMALL_STATE(3865)] = 116585, + [SMALL_STATE(3866)] = 116605, + [SMALL_STATE(3867)] = 116633, + [SMALL_STATE(3868)] = 116661, + [SMALL_STATE(3869)] = 116689, + [SMALL_STATE(3870)] = 116709, + [SMALL_STATE(3871)] = 116731, + [SMALL_STATE(3872)] = 116757, + [SMALL_STATE(3873)] = 116775, + [SMALL_STATE(3874)] = 116799, + [SMALL_STATE(3875)] = 116827, + [SMALL_STATE(3876)] = 116855, + [SMALL_STATE(3877)] = 116875, + [SMALL_STATE(3878)] = 116903, + [SMALL_STATE(3879)] = 116931, + [SMALL_STATE(3880)] = 116951, + [SMALL_STATE(3881)] = 116979, + [SMALL_STATE(3882)] = 117003, + [SMALL_STATE(3883)] = 117031, + [SMALL_STATE(3884)] = 117059, + [SMALL_STATE(3885)] = 117087, + [SMALL_STATE(3886)] = 117111, + [SMALL_STATE(3887)] = 117139, + [SMALL_STATE(3888)] = 117165, + [SMALL_STATE(3889)] = 117185, + [SMALL_STATE(3890)] = 117211, + [SMALL_STATE(3891)] = 117239, + [SMALL_STATE(3892)] = 117257, + [SMALL_STATE(3893)] = 117283, + [SMALL_STATE(3894)] = 117309, + [SMALL_STATE(3895)] = 117335, + [SMALL_STATE(3896)] = 117360, + [SMALL_STATE(3897)] = 117385, + [SMALL_STATE(3898)] = 117404, + [SMALL_STATE(3899)] = 117429, + [SMALL_STATE(3900)] = 117452, + [SMALL_STATE(3901)] = 117475, + [SMALL_STATE(3902)] = 117498, + [SMALL_STATE(3903)] = 117519, + [SMALL_STATE(3904)] = 117542, + [SMALL_STATE(3905)] = 117563, + [SMALL_STATE(3906)] = 117586, + [SMALL_STATE(3907)] = 117611, + [SMALL_STATE(3908)] = 117634, + [SMALL_STATE(3909)] = 117653, + [SMALL_STATE(3910)] = 117672, + [SMALL_STATE(3911)] = 117693, + [SMALL_STATE(3912)] = 117714, + [SMALL_STATE(3913)] = 117739, + [SMALL_STATE(3914)] = 117764, + [SMALL_STATE(3915)] = 117783, + [SMALL_STATE(3916)] = 117808, + [SMALL_STATE(3917)] = 117831, + [SMALL_STATE(3918)] = 117854, + [SMALL_STATE(3919)] = 117877, + [SMALL_STATE(3920)] = 117900, + [SMALL_STATE(3921)] = 117923, + [SMALL_STATE(3922)] = 117946, + [SMALL_STATE(3923)] = 117965, + [SMALL_STATE(3924)] = 117986, + [SMALL_STATE(3925)] = 118009, + [SMALL_STATE(3926)] = 118030, + [SMALL_STATE(3927)] = 118051, + [SMALL_STATE(3928)] = 118076, + [SMALL_STATE(3929)] = 118099, + [SMALL_STATE(3930)] = 118120, + [SMALL_STATE(3931)] = 118141, + [SMALL_STATE(3932)] = 118166, + [SMALL_STATE(3933)] = 118187, + [SMALL_STATE(3934)] = 118208, + [SMALL_STATE(3935)] = 118229, + [SMALL_STATE(3936)] = 118254, + [SMALL_STATE(3937)] = 118279, + [SMALL_STATE(3938)] = 118304, + [SMALL_STATE(3939)] = 118323, + [SMALL_STATE(3940)] = 118346, + [SMALL_STATE(3941)] = 118369, + [SMALL_STATE(3942)] = 118392, + [SMALL_STATE(3943)] = 118415, + [SMALL_STATE(3944)] = 118434, + [SMALL_STATE(3945)] = 118449, + [SMALL_STATE(3946)] = 118474, + [SMALL_STATE(3947)] = 118489, + [SMALL_STATE(3948)] = 118504, + [SMALL_STATE(3949)] = 118527, + [SMALL_STATE(3950)] = 118542, + [SMALL_STATE(3951)] = 118557, + [SMALL_STATE(3952)] = 118572, + [SMALL_STATE(3953)] = 118597, + [SMALL_STATE(3954)] = 118616, + [SMALL_STATE(3955)] = 118641, + [SMALL_STATE(3956)] = 118662, + [SMALL_STATE(3957)] = 118681, + [SMALL_STATE(3958)] = 118704, + [SMALL_STATE(3959)] = 118723, + [SMALL_STATE(3960)] = 118746, + [SMALL_STATE(3961)] = 118769, + [SMALL_STATE(3962)] = 118790, + [SMALL_STATE(3963)] = 118815, + [SMALL_STATE(3964)] = 118836, + [SMALL_STATE(3965)] = 118855, + [SMALL_STATE(3966)] = 118876, + [SMALL_STATE(3967)] = 118895, + [SMALL_STATE(3968)] = 118918, + [SMALL_STATE(3969)] = 118941, + [SMALL_STATE(3970)] = 118964, + [SMALL_STATE(3971)] = 118987, + [SMALL_STATE(3972)] = 119006, + [SMALL_STATE(3973)] = 119029, + [SMALL_STATE(3974)] = 119052, + [SMALL_STATE(3975)] = 119075, + [SMALL_STATE(3976)] = 119098, + [SMALL_STATE(3977)] = 119121, + [SMALL_STATE(3978)] = 119144, + [SMALL_STATE(3979)] = 119167, + [SMALL_STATE(3980)] = 119192, + [SMALL_STATE(3981)] = 119213, + [SMALL_STATE(3982)] = 119236, + [SMALL_STATE(3983)] = 119259, + [SMALL_STATE(3984)] = 119282, + [SMALL_STATE(3985)] = 119303, + [SMALL_STATE(3986)] = 119326, + [SMALL_STATE(3987)] = 119345, + [SMALL_STATE(3988)] = 119368, + [SMALL_STATE(3989)] = 119389, + [SMALL_STATE(3990)] = 119412, + [SMALL_STATE(3991)] = 119435, + [SMALL_STATE(3992)] = 119456, + [SMALL_STATE(3993)] = 119475, + [SMALL_STATE(3994)] = 119494, + [SMALL_STATE(3995)] = 119517, + [SMALL_STATE(3996)] = 119540, + [SMALL_STATE(3997)] = 119563, + [SMALL_STATE(3998)] = 119586, + [SMALL_STATE(3999)] = 119609, + [SMALL_STATE(4000)] = 119632, + [SMALL_STATE(4001)] = 119651, + [SMALL_STATE(4002)] = 119670, + [SMALL_STATE(4003)] = 119691, + [SMALL_STATE(4004)] = 119712, + [SMALL_STATE(4005)] = 119733, + [SMALL_STATE(4006)] = 119754, + [SMALL_STATE(4007)] = 119777, + [SMALL_STATE(4008)] = 119798, + [SMALL_STATE(4009)] = 119815, + [SMALL_STATE(4010)] = 119838, + [SMALL_STATE(4011)] = 119855, + [SMALL_STATE(4012)] = 119872, + [SMALL_STATE(4013)] = 119893, + [SMALL_STATE(4014)] = 119918, + [SMALL_STATE(4015)] = 119943, + [SMALL_STATE(4016)] = 119968, + [SMALL_STATE(4017)] = 119989, + [SMALL_STATE(4018)] = 120008, + [SMALL_STATE(4019)] = 120033, + [SMALL_STATE(4020)] = 120054, + [SMALL_STATE(4021)] = 120075, + [SMALL_STATE(4022)] = 120096, + [SMALL_STATE(4023)] = 120117, + [SMALL_STATE(4024)] = 120138, + [SMALL_STATE(4025)] = 120159, + [SMALL_STATE(4026)] = 120184, + [SMALL_STATE(4027)] = 120209, + [SMALL_STATE(4028)] = 120234, + [SMALL_STATE(4029)] = 120259, + [SMALL_STATE(4030)] = 120278, + [SMALL_STATE(4031)] = 120297, + [SMALL_STATE(4032)] = 120316, + [SMALL_STATE(4033)] = 120337, + [SMALL_STATE(4034)] = 120362, + [SMALL_STATE(4035)] = 120387, + [SMALL_STATE(4036)] = 120412, + [SMALL_STATE(4037)] = 120437, + [SMALL_STATE(4038)] = 120462, + [SMALL_STATE(4039)] = 120487, + [SMALL_STATE(4040)] = 120512, + [SMALL_STATE(4041)] = 120533, + [SMALL_STATE(4042)] = 120554, + [SMALL_STATE(4043)] = 120575, + [SMALL_STATE(4044)] = 120598, + [SMALL_STATE(4045)] = 120621, + [SMALL_STATE(4046)] = 120644, + [SMALL_STATE(4047)] = 120665, + [SMALL_STATE(4048)] = 120688, + [SMALL_STATE(4049)] = 120710, + [SMALL_STATE(4050)] = 120730, + [SMALL_STATE(4051)] = 120752, + [SMALL_STATE(4052)] = 120772, + [SMALL_STATE(4053)] = 120794, + [SMALL_STATE(4054)] = 120816, + [SMALL_STATE(4055)] = 120836, + [SMALL_STATE(4056)] = 120858, + [SMALL_STATE(4057)] = 120878, + [SMALL_STATE(4058)] = 120900, + [SMALL_STATE(4059)] = 120918, + [SMALL_STATE(4060)] = 120936, + [SMALL_STATE(4061)] = 120958, + [SMALL_STATE(4062)] = 120976, + [SMALL_STATE(4063)] = 120996, + [SMALL_STATE(4064)] = 121018, + [SMALL_STATE(4065)] = 121040, + [SMALL_STATE(4066)] = 121062, + [SMALL_STATE(4067)] = 121084, + [SMALL_STATE(4068)] = 121104, + [SMALL_STATE(4069)] = 121126, + [SMALL_STATE(4070)] = 121146, + [SMALL_STATE(4071)] = 121168, + [SMALL_STATE(4072)] = 121188, + [SMALL_STATE(4073)] = 121204, + [SMALL_STATE(4074)] = 121224, + [SMALL_STATE(4075)] = 121242, + [SMALL_STATE(4076)] = 121262, + [SMALL_STATE(4077)] = 121284, + [SMALL_STATE(4078)] = 121306, + [SMALL_STATE(4079)] = 121326, + [SMALL_STATE(4080)] = 121344, + [SMALL_STATE(4081)] = 121362, + [SMALL_STATE(4082)] = 121382, + [SMALL_STATE(4083)] = 121404, + [SMALL_STATE(4084)] = 121426, + [SMALL_STATE(4085)] = 121442, + [SMALL_STATE(4086)] = 121458, + [SMALL_STATE(4087)] = 121478, + [SMALL_STATE(4088)] = 121500, + [SMALL_STATE(4089)] = 121518, + [SMALL_STATE(4090)] = 121540, + [SMALL_STATE(4091)] = 121562, + [SMALL_STATE(4092)] = 121580, + [SMALL_STATE(4093)] = 121600, + [SMALL_STATE(4094)] = 121620, + [SMALL_STATE(4095)] = 121642, + [SMALL_STATE(4096)] = 121662, + [SMALL_STATE(4097)] = 121680, + [SMALL_STATE(4098)] = 121698, + [SMALL_STATE(4099)] = 121716, + [SMALL_STATE(4100)] = 121738, + [SMALL_STATE(4101)] = 121756, + [SMALL_STATE(4102)] = 121772, + [SMALL_STATE(4103)] = 121788, + [SMALL_STATE(4104)] = 121808, + [SMALL_STATE(4105)] = 121830, + [SMALL_STATE(4106)] = 121850, + [SMALL_STATE(4107)] = 121870, + [SMALL_STATE(4108)] = 121890, + [SMALL_STATE(4109)] = 121912, + [SMALL_STATE(4110)] = 121934, + [SMALL_STATE(4111)] = 121956, + [SMALL_STATE(4112)] = 121976, + [SMALL_STATE(4113)] = 121996, + [SMALL_STATE(4114)] = 122018, + [SMALL_STATE(4115)] = 122040, + [SMALL_STATE(4116)] = 122062, + [SMALL_STATE(4117)] = 122082, + [SMALL_STATE(4118)] = 122104, + [SMALL_STATE(4119)] = 122120, + [SMALL_STATE(4120)] = 122140, + [SMALL_STATE(4121)] = 122160, + [SMALL_STATE(4122)] = 122176, + [SMALL_STATE(4123)] = 122196, + [SMALL_STATE(4124)] = 122216, + [SMALL_STATE(4125)] = 122232, + [SMALL_STATE(4126)] = 122252, + [SMALL_STATE(4127)] = 122268, + [SMALL_STATE(4128)] = 122284, + [SMALL_STATE(4129)] = 122306, + [SMALL_STATE(4130)] = 122326, + [SMALL_STATE(4131)] = 122348, + [SMALL_STATE(4132)] = 122368, + [SMALL_STATE(4133)] = 122388, + [SMALL_STATE(4134)] = 122410, + [SMALL_STATE(4135)] = 122430, + [SMALL_STATE(4136)] = 122446, + [SMALL_STATE(4137)] = 122466, + [SMALL_STATE(4138)] = 122486, + [SMALL_STATE(4139)] = 122506, + [SMALL_STATE(4140)] = 122526, + [SMALL_STATE(4141)] = 122546, + [SMALL_STATE(4142)] = 122566, + [SMALL_STATE(4143)] = 122582, + [SMALL_STATE(4144)] = 122598, + [SMALL_STATE(4145)] = 122618, + [SMALL_STATE(4146)] = 122634, + [SMALL_STATE(4147)] = 122654, + [SMALL_STATE(4148)] = 122674, + [SMALL_STATE(4149)] = 122692, + [SMALL_STATE(4150)] = 122714, + [SMALL_STATE(4151)] = 122732, + [SMALL_STATE(4152)] = 122754, + [SMALL_STATE(4153)] = 122770, + [SMALL_STATE(4154)] = 122786, + [SMALL_STATE(4155)] = 122806, + [SMALL_STATE(4156)] = 122824, + [SMALL_STATE(4157)] = 122840, + [SMALL_STATE(4158)] = 122858, + [SMALL_STATE(4159)] = 122876, + [SMALL_STATE(4160)] = 122892, + [SMALL_STATE(4161)] = 122912, + [SMALL_STATE(4162)] = 122928, + [SMALL_STATE(4163)] = 122948, + [SMALL_STATE(4164)] = 122966, + [SMALL_STATE(4165)] = 122988, + [SMALL_STATE(4166)] = 123008, + [SMALL_STATE(4167)] = 123030, + [SMALL_STATE(4168)] = 123046, + [SMALL_STATE(4169)] = 123066, + [SMALL_STATE(4170)] = 123082, + [SMALL_STATE(4171)] = 123104, + [SMALL_STATE(4172)] = 123124, + [SMALL_STATE(4173)] = 123142, + [SMALL_STATE(4174)] = 123162, + [SMALL_STATE(4175)] = 123182, + [SMALL_STATE(4176)] = 123198, + [SMALL_STATE(4177)] = 123214, + [SMALL_STATE(4178)] = 123232, + [SMALL_STATE(4179)] = 123254, + [SMALL_STATE(4180)] = 123274, + [SMALL_STATE(4181)] = 123292, + [SMALL_STATE(4182)] = 123308, + [SMALL_STATE(4183)] = 123324, + [SMALL_STATE(4184)] = 123342, + [SMALL_STATE(4185)] = 123360, + [SMALL_STATE(4186)] = 123376, + [SMALL_STATE(4187)] = 123398, + [SMALL_STATE(4188)] = 123418, + [SMALL_STATE(4189)] = 123434, + [SMALL_STATE(4190)] = 123452, + [SMALL_STATE(4191)] = 123474, + [SMALL_STATE(4192)] = 123490, + [SMALL_STATE(4193)] = 123506, + [SMALL_STATE(4194)] = 123522, + [SMALL_STATE(4195)] = 123544, + [SMALL_STATE(4196)] = 123560, + [SMALL_STATE(4197)] = 123580, + [SMALL_STATE(4198)] = 123596, + [SMALL_STATE(4199)] = 123616, + [SMALL_STATE(4200)] = 123634, + [SMALL_STATE(4201)] = 123652, + [SMALL_STATE(4202)] = 123670, + [SMALL_STATE(4203)] = 123690, + [SMALL_STATE(4204)] = 123710, + [SMALL_STATE(4205)] = 123732, + [SMALL_STATE(4206)] = 123748, + [SMALL_STATE(4207)] = 123764, + [SMALL_STATE(4208)] = 123783, + [SMALL_STATE(4209)] = 123796, + [SMALL_STATE(4210)] = 123809, + [SMALL_STATE(4211)] = 123824, + [SMALL_STATE(4212)] = 123839, + [SMALL_STATE(4213)] = 123858, + [SMALL_STATE(4214)] = 123871, + [SMALL_STATE(4215)] = 123886, + [SMALL_STATE(4216)] = 123901, + [SMALL_STATE(4217)] = 123920, + [SMALL_STATE(4218)] = 123935, + [SMALL_STATE(4219)] = 123954, + [SMALL_STATE(4220)] = 123969, + [SMALL_STATE(4221)] = 123988, + [SMALL_STATE(4222)] = 124007, + [SMALL_STATE(4223)] = 124020, + [SMALL_STATE(4224)] = 124033, + [SMALL_STATE(4225)] = 124050, + [SMALL_STATE(4226)] = 124069, + [SMALL_STATE(4227)] = 124084, + [SMALL_STATE(4228)] = 124101, + [SMALL_STATE(4229)] = 124116, + [SMALL_STATE(4230)] = 124133, + [SMALL_STATE(4231)] = 124150, + [SMALL_STATE(4232)] = 124169, + [SMALL_STATE(4233)] = 124184, + [SMALL_STATE(4234)] = 124199, + [SMALL_STATE(4235)] = 124212, + [SMALL_STATE(4236)] = 124227, + [SMALL_STATE(4237)] = 124240, + [SMALL_STATE(4238)] = 124255, + [SMALL_STATE(4239)] = 124272, + [SMALL_STATE(4240)] = 124287, + [SMALL_STATE(4241)] = 124302, + [SMALL_STATE(4242)] = 124317, + [SMALL_STATE(4243)] = 124336, + [SMALL_STATE(4244)] = 124353, + [SMALL_STATE(4245)] = 124370, + [SMALL_STATE(4246)] = 124383, + [SMALL_STATE(4247)] = 124398, + [SMALL_STATE(4248)] = 124413, + [SMALL_STATE(4249)] = 124428, + [SMALL_STATE(4250)] = 124447, + [SMALL_STATE(4251)] = 124462, + [SMALL_STATE(4252)] = 124475, + [SMALL_STATE(4253)] = 124490, + [SMALL_STATE(4254)] = 124505, + [SMALL_STATE(4255)] = 124520, + [SMALL_STATE(4256)] = 124535, + [SMALL_STATE(4257)] = 124550, + [SMALL_STATE(4258)] = 124565, + [SMALL_STATE(4259)] = 124580, + [SMALL_STATE(4260)] = 124595, + [SMALL_STATE(4261)] = 124610, + [SMALL_STATE(4262)] = 124629, + [SMALL_STATE(4263)] = 124642, + [SMALL_STATE(4264)] = 124655, + [SMALL_STATE(4265)] = 124670, + [SMALL_STATE(4266)] = 124685, + [SMALL_STATE(4267)] = 124700, + [SMALL_STATE(4268)] = 124715, + [SMALL_STATE(4269)] = 124728, + [SMALL_STATE(4270)] = 124741, + [SMALL_STATE(4271)] = 124754, + [SMALL_STATE(4272)] = 124769, + [SMALL_STATE(4273)] = 124782, + [SMALL_STATE(4274)] = 124799, + [SMALL_STATE(4275)] = 124816, + [SMALL_STATE(4276)] = 124835, + [SMALL_STATE(4277)] = 124852, + [SMALL_STATE(4278)] = 124865, + [SMALL_STATE(4279)] = 124884, + [SMALL_STATE(4280)] = 124897, + [SMALL_STATE(4281)] = 124912, + [SMALL_STATE(4282)] = 124931, + [SMALL_STATE(4283)] = 124944, + [SMALL_STATE(4284)] = 124957, + [SMALL_STATE(4285)] = 124972, + [SMALL_STATE(4286)] = 124985, + [SMALL_STATE(4287)] = 125000, + [SMALL_STATE(4288)] = 125013, + [SMALL_STATE(4289)] = 125026, + [SMALL_STATE(4290)] = 125041, + [SMALL_STATE(4291)] = 125054, + [SMALL_STATE(4292)] = 125069, + [SMALL_STATE(4293)] = 125088, + [SMALL_STATE(4294)] = 125103, + [SMALL_STATE(4295)] = 125118, + [SMALL_STATE(4296)] = 125131, + [SMALL_STATE(4297)] = 125144, + [SMALL_STATE(4298)] = 125157, + [SMALL_STATE(4299)] = 125170, + [SMALL_STATE(4300)] = 125183, + [SMALL_STATE(4301)] = 125198, + [SMALL_STATE(4302)] = 125211, + [SMALL_STATE(4303)] = 125224, + [SMALL_STATE(4304)] = 125237, + [SMALL_STATE(4305)] = 125250, + [SMALL_STATE(4306)] = 125263, + [SMALL_STATE(4307)] = 125276, + [SMALL_STATE(4308)] = 125291, + [SMALL_STATE(4309)] = 125304, + [SMALL_STATE(4310)] = 125317, + [SMALL_STATE(4311)] = 125330, + [SMALL_STATE(4312)] = 125345, + [SMALL_STATE(4313)] = 125360, + [SMALL_STATE(4314)] = 125373, + [SMALL_STATE(4315)] = 125388, + [SMALL_STATE(4316)] = 125401, + [SMALL_STATE(4317)] = 125414, + [SMALL_STATE(4318)] = 125427, + [SMALL_STATE(4319)] = 125446, + [SMALL_STATE(4320)] = 125465, + [SMALL_STATE(4321)] = 125484, + [SMALL_STATE(4322)] = 125501, + [SMALL_STATE(4323)] = 125514, + [SMALL_STATE(4324)] = 125533, + [SMALL_STATE(4325)] = 125550, + [SMALL_STATE(4326)] = 125563, + [SMALL_STATE(4327)] = 125582, + [SMALL_STATE(4328)] = 125595, + [SMALL_STATE(4329)] = 125608, + [SMALL_STATE(4330)] = 125621, + [SMALL_STATE(4331)] = 125634, + [SMALL_STATE(4332)] = 125647, + [SMALL_STATE(4333)] = 125660, + [SMALL_STATE(4334)] = 125673, + [SMALL_STATE(4335)] = 125686, + [SMALL_STATE(4336)] = 125699, + [SMALL_STATE(4337)] = 125718, + [SMALL_STATE(4338)] = 125731, + [SMALL_STATE(4339)] = 125748, + [SMALL_STATE(4340)] = 125765, + [SMALL_STATE(4341)] = 125782, + [SMALL_STATE(4342)] = 125795, + [SMALL_STATE(4343)] = 125808, + [SMALL_STATE(4344)] = 125821, + [SMALL_STATE(4345)] = 125838, + [SMALL_STATE(4346)] = 125857, + [SMALL_STATE(4347)] = 125870, + [SMALL_STATE(4348)] = 125889, + [SMALL_STATE(4349)] = 125902, + [SMALL_STATE(4350)] = 125921, + [SMALL_STATE(4351)] = 125934, + [SMALL_STATE(4352)] = 125947, + [SMALL_STATE(4353)] = 125960, + [SMALL_STATE(4354)] = 125977, + [SMALL_STATE(4355)] = 125990, + [SMALL_STATE(4356)] = 126003, + [SMALL_STATE(4357)] = 126020, + [SMALL_STATE(4358)] = 126033, + [SMALL_STATE(4359)] = 126048, + [SMALL_STATE(4360)] = 126061, + [SMALL_STATE(4361)] = 126074, + [SMALL_STATE(4362)] = 126093, + [SMALL_STATE(4363)] = 126106, + [SMALL_STATE(4364)] = 126119, + [SMALL_STATE(4365)] = 126132, + [SMALL_STATE(4366)] = 126145, + [SMALL_STATE(4367)] = 126160, + [SMALL_STATE(4368)] = 126173, + [SMALL_STATE(4369)] = 126188, + [SMALL_STATE(4370)] = 126201, + [SMALL_STATE(4371)] = 126214, + [SMALL_STATE(4372)] = 126227, + [SMALL_STATE(4373)] = 126240, + [SMALL_STATE(4374)] = 126253, + [SMALL_STATE(4375)] = 126266, + [SMALL_STATE(4376)] = 126279, + [SMALL_STATE(4377)] = 126292, + [SMALL_STATE(4378)] = 126309, + [SMALL_STATE(4379)] = 126322, + [SMALL_STATE(4380)] = 126335, + [SMALL_STATE(4381)] = 126348, + [SMALL_STATE(4382)] = 126361, + [SMALL_STATE(4383)] = 126374, + [SMALL_STATE(4384)] = 126389, + [SMALL_STATE(4385)] = 126404, + [SMALL_STATE(4386)] = 126417, + [SMALL_STATE(4387)] = 126432, + [SMALL_STATE(4388)] = 126451, + [SMALL_STATE(4389)] = 126464, + [SMALL_STATE(4390)] = 126477, + [SMALL_STATE(4391)] = 126490, + [SMALL_STATE(4392)] = 126509, + [SMALL_STATE(4393)] = 126526, + [SMALL_STATE(4394)] = 126545, + [SMALL_STATE(4395)] = 126558, + [SMALL_STATE(4396)] = 126577, + [SMALL_STATE(4397)] = 126596, + [SMALL_STATE(4398)] = 126615, + [SMALL_STATE(4399)] = 126632, + [SMALL_STATE(4400)] = 126647, + [SMALL_STATE(4401)] = 126660, + [SMALL_STATE(4402)] = 126679, + [SMALL_STATE(4403)] = 126692, + [SMALL_STATE(4404)] = 126709, + [SMALL_STATE(4405)] = 126722, + [SMALL_STATE(4406)] = 126739, + [SMALL_STATE(4407)] = 126752, + [SMALL_STATE(4408)] = 126765, + [SMALL_STATE(4409)] = 126784, + [SMALL_STATE(4410)] = 126801, + [SMALL_STATE(4411)] = 126814, + [SMALL_STATE(4412)] = 126827, + [SMALL_STATE(4413)] = 126840, + [SMALL_STATE(4414)] = 126855, + [SMALL_STATE(4415)] = 126870, + [SMALL_STATE(4416)] = 126889, + [SMALL_STATE(4417)] = 126902, + [SMALL_STATE(4418)] = 126921, + [SMALL_STATE(4419)] = 126936, + [SMALL_STATE(4420)] = 126951, + [SMALL_STATE(4421)] = 126964, + [SMALL_STATE(4422)] = 126983, + [SMALL_STATE(4423)] = 127000, + [SMALL_STATE(4424)] = 127019, + [SMALL_STATE(4425)] = 127034, + [SMALL_STATE(4426)] = 127053, + [SMALL_STATE(4427)] = 127070, + [SMALL_STATE(4428)] = 127085, + [SMALL_STATE(4429)] = 127104, + [SMALL_STATE(4430)] = 127119, + [SMALL_STATE(4431)] = 127136, + [SMALL_STATE(4432)] = 127149, + [SMALL_STATE(4433)] = 127166, + [SMALL_STATE(4434)] = 127181, + [SMALL_STATE(4435)] = 127194, + [SMALL_STATE(4436)] = 127209, + [SMALL_STATE(4437)] = 127224, + [SMALL_STATE(4438)] = 127237, + [SMALL_STATE(4439)] = 127256, + [SMALL_STATE(4440)] = 127269, + [SMALL_STATE(4441)] = 127288, + [SMALL_STATE(4442)] = 127301, + [SMALL_STATE(4443)] = 127320, + [SMALL_STATE(4444)] = 127333, + [SMALL_STATE(4445)] = 127352, + [SMALL_STATE(4446)] = 127365, + [SMALL_STATE(4447)] = 127380, + [SMALL_STATE(4448)] = 127399, + [SMALL_STATE(4449)] = 127418, + [SMALL_STATE(4450)] = 127437, + [SMALL_STATE(4451)] = 127454, + [SMALL_STATE(4452)] = 127469, + [SMALL_STATE(4453)] = 127488, + [SMALL_STATE(4454)] = 127507, + [SMALL_STATE(4455)] = 127522, + [SMALL_STATE(4456)] = 127541, + [SMALL_STATE(4457)] = 127556, + [SMALL_STATE(4458)] = 127571, + [SMALL_STATE(4459)] = 127586, + [SMALL_STATE(4460)] = 127599, + [SMALL_STATE(4461)] = 127616, + [SMALL_STATE(4462)] = 127629, + [SMALL_STATE(4463)] = 127646, + [SMALL_STATE(4464)] = 127659, + [SMALL_STATE(4465)] = 127672, + [SMALL_STATE(4466)] = 127691, + [SMALL_STATE(4467)] = 127704, + [SMALL_STATE(4468)] = 127719, + [SMALL_STATE(4469)] = 127732, + [SMALL_STATE(4470)] = 127745, + [SMALL_STATE(4471)] = 127758, + [SMALL_STATE(4472)] = 127771, + [SMALL_STATE(4473)] = 127790, + [SMALL_STATE(4474)] = 127809, + [SMALL_STATE(4475)] = 127828, + [SMALL_STATE(4476)] = 127841, + [SMALL_STATE(4477)] = 127856, + [SMALL_STATE(4478)] = 127869, + [SMALL_STATE(4479)] = 127882, + [SMALL_STATE(4480)] = 127895, + [SMALL_STATE(4481)] = 127908, + [SMALL_STATE(4482)] = 127921, + [SMALL_STATE(4483)] = 127938, + [SMALL_STATE(4484)] = 127951, + [SMALL_STATE(4485)] = 127964, + [SMALL_STATE(4486)] = 127983, + [SMALL_STATE(4487)] = 128002, + [SMALL_STATE(4488)] = 128015, + [SMALL_STATE(4489)] = 128028, + [SMALL_STATE(4490)] = 128041, + [SMALL_STATE(4491)] = 128058, + [SMALL_STATE(4492)] = 128071, + [SMALL_STATE(4493)] = 128084, + [SMALL_STATE(4494)] = 128101, + [SMALL_STATE(4495)] = 128120, + [SMALL_STATE(4496)] = 128139, + [SMALL_STATE(4497)] = 128158, + [SMALL_STATE(4498)] = 128177, + [SMALL_STATE(4499)] = 128196, + [SMALL_STATE(4500)] = 128215, + [SMALL_STATE(4501)] = 128234, + [SMALL_STATE(4502)] = 128253, + [SMALL_STATE(4503)] = 128272, + [SMALL_STATE(4504)] = 128285, + [SMALL_STATE(4505)] = 128300, + [SMALL_STATE(4506)] = 128313, + [SMALL_STATE(4507)] = 128328, + [SMALL_STATE(4508)] = 128345, + [SMALL_STATE(4509)] = 128362, + [SMALL_STATE(4510)] = 128379, + [SMALL_STATE(4511)] = 128398, + [SMALL_STATE(4512)] = 128417, + [SMALL_STATE(4513)] = 128436, + [SMALL_STATE(4514)] = 128455, + [SMALL_STATE(4515)] = 128470, + [SMALL_STATE(4516)] = 128485, + [SMALL_STATE(4517)] = 128502, + [SMALL_STATE(4518)] = 128521, + [SMALL_STATE(4519)] = 128534, + [SMALL_STATE(4520)] = 128546, + [SMALL_STATE(4521)] = 128558, + [SMALL_STATE(4522)] = 128574, + [SMALL_STATE(4523)] = 128586, + [SMALL_STATE(4524)] = 128602, + [SMALL_STATE(4525)] = 128618, + [SMALL_STATE(4526)] = 128634, + [SMALL_STATE(4527)] = 128650, + [SMALL_STATE(4528)] = 128666, + [SMALL_STATE(4529)] = 128678, + [SMALL_STATE(4530)] = 128690, + [SMALL_STATE(4531)] = 128706, + [SMALL_STATE(4532)] = 128722, + [SMALL_STATE(4533)] = 128736, + [SMALL_STATE(4534)] = 128752, + [SMALL_STATE(4535)] = 128766, + [SMALL_STATE(4536)] = 128778, + [SMALL_STATE(4537)] = 128790, + [SMALL_STATE(4538)] = 128804, + [SMALL_STATE(4539)] = 128818, + [SMALL_STATE(4540)] = 128830, + [SMALL_STATE(4541)] = 128846, + [SMALL_STATE(4542)] = 128860, + [SMALL_STATE(4543)] = 128876, + [SMALL_STATE(4544)] = 128892, + [SMALL_STATE(4545)] = 128908, + [SMALL_STATE(4546)] = 128924, + [SMALL_STATE(4547)] = 128938, + [SMALL_STATE(4548)] = 128950, + [SMALL_STATE(4549)] = 128966, + [SMALL_STATE(4550)] = 128982, + [SMALL_STATE(4551)] = 128996, + [SMALL_STATE(4552)] = 129012, + [SMALL_STATE(4553)] = 129024, + [SMALL_STATE(4554)] = 129040, + [SMALL_STATE(4555)] = 129054, + [SMALL_STATE(4556)] = 129066, + [SMALL_STATE(4557)] = 129080, + [SMALL_STATE(4558)] = 129094, + [SMALL_STATE(4559)] = 129108, + [SMALL_STATE(4560)] = 129124, + [SMALL_STATE(4561)] = 129140, + [SMALL_STATE(4562)] = 129152, + [SMALL_STATE(4563)] = 129168, + [SMALL_STATE(4564)] = 129180, + [SMALL_STATE(4565)] = 129196, + [SMALL_STATE(4566)] = 129212, + [SMALL_STATE(4567)] = 129224, + [SMALL_STATE(4568)] = 129236, + [SMALL_STATE(4569)] = 129250, + [SMALL_STATE(4570)] = 129262, + [SMALL_STATE(4571)] = 129274, + [SMALL_STATE(4572)] = 129286, + [SMALL_STATE(4573)] = 129300, + [SMALL_STATE(4574)] = 129312, + [SMALL_STATE(4575)] = 129324, + [SMALL_STATE(4576)] = 129336, + [SMALL_STATE(4577)] = 129348, + [SMALL_STATE(4578)] = 129360, + [SMALL_STATE(4579)] = 129372, + [SMALL_STATE(4580)] = 129384, + [SMALL_STATE(4581)] = 129398, + [SMALL_STATE(4582)] = 129412, + [SMALL_STATE(4583)] = 129424, + [SMALL_STATE(4584)] = 129436, + [SMALL_STATE(4585)] = 129448, + [SMALL_STATE(4586)] = 129460, + [SMALL_STATE(4587)] = 129474, + [SMALL_STATE(4588)] = 129490, + [SMALL_STATE(4589)] = 129502, + [SMALL_STATE(4590)] = 129518, + [SMALL_STATE(4591)] = 129532, + [SMALL_STATE(4592)] = 129544, + [SMALL_STATE(4593)] = 129560, + [SMALL_STATE(4594)] = 129574, + [SMALL_STATE(4595)] = 129586, + [SMALL_STATE(4596)] = 129602, + [SMALL_STATE(4597)] = 129614, + [SMALL_STATE(4598)] = 129626, + [SMALL_STATE(4599)] = 129640, + [SMALL_STATE(4600)] = 129656, + [SMALL_STATE(4601)] = 129672, + [SMALL_STATE(4602)] = 129688, + [SMALL_STATE(4603)] = 129704, + [SMALL_STATE(4604)] = 129720, + [SMALL_STATE(4605)] = 129732, + [SMALL_STATE(4606)] = 129748, + [SMALL_STATE(4607)] = 129764, + [SMALL_STATE(4608)] = 129780, + [SMALL_STATE(4609)] = 129792, + [SMALL_STATE(4610)] = 129804, + [SMALL_STATE(4611)] = 129816, + [SMALL_STATE(4612)] = 129832, + [SMALL_STATE(4613)] = 129848, + [SMALL_STATE(4614)] = 129860, + [SMALL_STATE(4615)] = 129872, + [SMALL_STATE(4616)] = 129888, + [SMALL_STATE(4617)] = 129904, + [SMALL_STATE(4618)] = 129920, + [SMALL_STATE(4619)] = 129932, + [SMALL_STATE(4620)] = 129948, + [SMALL_STATE(4621)] = 129964, + [SMALL_STATE(4622)] = 129976, + [SMALL_STATE(4623)] = 129992, + [SMALL_STATE(4624)] = 130008, + [SMALL_STATE(4625)] = 130020, + [SMALL_STATE(4626)] = 130032, + [SMALL_STATE(4627)] = 130044, + [SMALL_STATE(4628)] = 130060, + [SMALL_STATE(4629)] = 130072, + [SMALL_STATE(4630)] = 130084, + [SMALL_STATE(4631)] = 130100, + [SMALL_STATE(4632)] = 130112, + [SMALL_STATE(4633)] = 130124, + [SMALL_STATE(4634)] = 130140, + [SMALL_STATE(4635)] = 130152, + [SMALL_STATE(4636)] = 130168, + [SMALL_STATE(4637)] = 130184, + [SMALL_STATE(4638)] = 130196, + [SMALL_STATE(4639)] = 130208, + [SMALL_STATE(4640)] = 130220, + [SMALL_STATE(4641)] = 130232, + [SMALL_STATE(4642)] = 130244, + [SMALL_STATE(4643)] = 130256, + [SMALL_STATE(4644)] = 130268, + [SMALL_STATE(4645)] = 130280, + [SMALL_STATE(4646)] = 130292, + [SMALL_STATE(4647)] = 130308, + [SMALL_STATE(4648)] = 130320, + [SMALL_STATE(4649)] = 130336, + [SMALL_STATE(4650)] = 130348, + [SMALL_STATE(4651)] = 130360, + [SMALL_STATE(4652)] = 130374, + [SMALL_STATE(4653)] = 130386, + [SMALL_STATE(4654)] = 130398, + [SMALL_STATE(4655)] = 130410, + [SMALL_STATE(4656)] = 130422, + [SMALL_STATE(4657)] = 130436, + [SMALL_STATE(4658)] = 130452, + [SMALL_STATE(4659)] = 130464, + [SMALL_STATE(4660)] = 130480, + [SMALL_STATE(4661)] = 130494, + [SMALL_STATE(4662)] = 130508, + [SMALL_STATE(4663)] = 130524, + [SMALL_STATE(4664)] = 130536, + [SMALL_STATE(4665)] = 130548, + [SMALL_STATE(4666)] = 130560, + [SMALL_STATE(4667)] = 130576, + [SMALL_STATE(4668)] = 130588, + [SMALL_STATE(4669)] = 130604, + [SMALL_STATE(4670)] = 130616, + [SMALL_STATE(4671)] = 130632, + [SMALL_STATE(4672)] = 130648, + [SMALL_STATE(4673)] = 130660, + [SMALL_STATE(4674)] = 130674, + [SMALL_STATE(4675)] = 130690, + [SMALL_STATE(4676)] = 130706, + [SMALL_STATE(4677)] = 130720, + [SMALL_STATE(4678)] = 130734, + [SMALL_STATE(4679)] = 130750, + [SMALL_STATE(4680)] = 130766, + [SMALL_STATE(4681)] = 130780, + [SMALL_STATE(4682)] = 130796, + [SMALL_STATE(4683)] = 130812, + [SMALL_STATE(4684)] = 130826, + [SMALL_STATE(4685)] = 130842, + [SMALL_STATE(4686)] = 130858, + [SMALL_STATE(4687)] = 130874, + [SMALL_STATE(4688)] = 130890, + [SMALL_STATE(4689)] = 130906, + [SMALL_STATE(4690)] = 130918, + [SMALL_STATE(4691)] = 130934, + [SMALL_STATE(4692)] = 130946, + [SMALL_STATE(4693)] = 130960, + [SMALL_STATE(4694)] = 130976, + [SMALL_STATE(4695)] = 130992, + [SMALL_STATE(4696)] = 131008, + [SMALL_STATE(4697)] = 131020, + [SMALL_STATE(4698)] = 131036, + [SMALL_STATE(4699)] = 131048, + [SMALL_STATE(4700)] = 131060, + [SMALL_STATE(4701)] = 131072, + [SMALL_STATE(4702)] = 131088, + [SMALL_STATE(4703)] = 131102, + [SMALL_STATE(4704)] = 131114, + [SMALL_STATE(4705)] = 131126, + [SMALL_STATE(4706)] = 131138, + [SMALL_STATE(4707)] = 131154, + [SMALL_STATE(4708)] = 131170, + [SMALL_STATE(4709)] = 131186, + [SMALL_STATE(4710)] = 131198, + [SMALL_STATE(4711)] = 131214, + [SMALL_STATE(4712)] = 131226, + [SMALL_STATE(4713)] = 131238, + [SMALL_STATE(4714)] = 131250, + [SMALL_STATE(4715)] = 131262, + [SMALL_STATE(4716)] = 131274, + [SMALL_STATE(4717)] = 131286, + [SMALL_STATE(4718)] = 131302, + [SMALL_STATE(4719)] = 131316, + [SMALL_STATE(4720)] = 131328, + [SMALL_STATE(4721)] = 131342, + [SMALL_STATE(4722)] = 131356, + [SMALL_STATE(4723)] = 131372, + [SMALL_STATE(4724)] = 131388, + [SMALL_STATE(4725)] = 131400, + [SMALL_STATE(4726)] = 131412, + [SMALL_STATE(4727)] = 131424, + [SMALL_STATE(4728)] = 131440, + [SMALL_STATE(4729)] = 131452, + [SMALL_STATE(4730)] = 131468, + [SMALL_STATE(4731)] = 131484, + [SMALL_STATE(4732)] = 131498, + [SMALL_STATE(4733)] = 131510, + [SMALL_STATE(4734)] = 131522, + [SMALL_STATE(4735)] = 131538, + [SMALL_STATE(4736)] = 131552, + [SMALL_STATE(4737)] = 131566, + [SMALL_STATE(4738)] = 131580, + [SMALL_STATE(4739)] = 131596, + [SMALL_STATE(4740)] = 131608, + [SMALL_STATE(4741)] = 131624, + [SMALL_STATE(4742)] = 131636, + [SMALL_STATE(4743)] = 131650, + [SMALL_STATE(4744)] = 131664, + [SMALL_STATE(4745)] = 131680, + [SMALL_STATE(4746)] = 131692, + [SMALL_STATE(4747)] = 131704, + [SMALL_STATE(4748)] = 131716, + [SMALL_STATE(4749)] = 131728, + [SMALL_STATE(4750)] = 131744, + [SMALL_STATE(4751)] = 131756, + [SMALL_STATE(4752)] = 131768, + [SMALL_STATE(4753)] = 131784, + [SMALL_STATE(4754)] = 131798, + [SMALL_STATE(4755)] = 131814, + [SMALL_STATE(4756)] = 131828, + [SMALL_STATE(4757)] = 131844, + [SMALL_STATE(4758)] = 131858, + [SMALL_STATE(4759)] = 131872, + [SMALL_STATE(4760)] = 131888, + [SMALL_STATE(4761)] = 131904, + [SMALL_STATE(4762)] = 131916, + [SMALL_STATE(4763)] = 131932, + [SMALL_STATE(4764)] = 131944, + [SMALL_STATE(4765)] = 131960, + [SMALL_STATE(4766)] = 131974, + [SMALL_STATE(4767)] = 131988, + [SMALL_STATE(4768)] = 132002, + [SMALL_STATE(4769)] = 132014, + [SMALL_STATE(4770)] = 132030, + [SMALL_STATE(4771)] = 132044, + [SMALL_STATE(4772)] = 132058, + [SMALL_STATE(4773)] = 132070, + [SMALL_STATE(4774)] = 132086, + [SMALL_STATE(4775)] = 132098, + [SMALL_STATE(4776)] = 132112, + [SMALL_STATE(4777)] = 132128, + [SMALL_STATE(4778)] = 132144, + [SMALL_STATE(4779)] = 132156, + [SMALL_STATE(4780)] = 132169, + [SMALL_STATE(4781)] = 132182, + [SMALL_STATE(4782)] = 132195, + [SMALL_STATE(4783)] = 132208, + [SMALL_STATE(4784)] = 132221, + [SMALL_STATE(4785)] = 132234, + [SMALL_STATE(4786)] = 132247, + [SMALL_STATE(4787)] = 132260, + [SMALL_STATE(4788)] = 132273, + [SMALL_STATE(4789)] = 132286, + [SMALL_STATE(4790)] = 132299, + [SMALL_STATE(4791)] = 132312, + [SMALL_STATE(4792)] = 132325, + [SMALL_STATE(4793)] = 132338, + [SMALL_STATE(4794)] = 132351, + [SMALL_STATE(4795)] = 132364, + [SMALL_STATE(4796)] = 132377, + [SMALL_STATE(4797)] = 132390, + [SMALL_STATE(4798)] = 132401, + [SMALL_STATE(4799)] = 132414, + [SMALL_STATE(4800)] = 132427, + [SMALL_STATE(4801)] = 132440, + [SMALL_STATE(4802)] = 132453, + [SMALL_STATE(4803)] = 132466, + [SMALL_STATE(4804)] = 132479, + [SMALL_STATE(4805)] = 132492, + [SMALL_STATE(4806)] = 132505, + [SMALL_STATE(4807)] = 132518, + [SMALL_STATE(4808)] = 132531, + [SMALL_STATE(4809)] = 132544, + [SMALL_STATE(4810)] = 132557, + [SMALL_STATE(4811)] = 132570, + [SMALL_STATE(4812)] = 132583, + [SMALL_STATE(4813)] = 132594, + [SMALL_STATE(4814)] = 132607, + [SMALL_STATE(4815)] = 132620, + [SMALL_STATE(4816)] = 132633, + [SMALL_STATE(4817)] = 132646, + [SMALL_STATE(4818)] = 132659, + [SMALL_STATE(4819)] = 132672, + [SMALL_STATE(4820)] = 132683, + [SMALL_STATE(4821)] = 132696, + [SMALL_STATE(4822)] = 132709, + [SMALL_STATE(4823)] = 132722, + [SMALL_STATE(4824)] = 132735, + [SMALL_STATE(4825)] = 132748, + [SMALL_STATE(4826)] = 132761, + [SMALL_STATE(4827)] = 132774, + [SMALL_STATE(4828)] = 132785, + [SMALL_STATE(4829)] = 132798, + [SMALL_STATE(4830)] = 132809, + [SMALL_STATE(4831)] = 132822, + [SMALL_STATE(4832)] = 132835, + [SMALL_STATE(4833)] = 132848, + [SMALL_STATE(4834)] = 132861, + [SMALL_STATE(4835)] = 132874, + [SMALL_STATE(4836)] = 132887, + [SMALL_STATE(4837)] = 132900, + [SMALL_STATE(4838)] = 132913, + [SMALL_STATE(4839)] = 132926, + [SMALL_STATE(4840)] = 132939, + [SMALL_STATE(4841)] = 132952, + [SMALL_STATE(4842)] = 132965, + [SMALL_STATE(4843)] = 132978, + [SMALL_STATE(4844)] = 132991, + [SMALL_STATE(4845)] = 133004, + [SMALL_STATE(4846)] = 133017, + [SMALL_STATE(4847)] = 133030, + [SMALL_STATE(4848)] = 133043, + [SMALL_STATE(4849)] = 133056, + [SMALL_STATE(4850)] = 133069, + [SMALL_STATE(4851)] = 133082, + [SMALL_STATE(4852)] = 133095, + [SMALL_STATE(4853)] = 133108, + [SMALL_STATE(4854)] = 133121, + [SMALL_STATE(4855)] = 133134, + [SMALL_STATE(4856)] = 133147, + [SMALL_STATE(4857)] = 133160, + [SMALL_STATE(4858)] = 133173, + [SMALL_STATE(4859)] = 133186, + [SMALL_STATE(4860)] = 133199, + [SMALL_STATE(4861)] = 133212, + [SMALL_STATE(4862)] = 133225, + [SMALL_STATE(4863)] = 133238, + [SMALL_STATE(4864)] = 133251, + [SMALL_STATE(4865)] = 133264, + [SMALL_STATE(4866)] = 133277, + [SMALL_STATE(4867)] = 133290, + [SMALL_STATE(4868)] = 133303, + [SMALL_STATE(4869)] = 133316, + [SMALL_STATE(4870)] = 133327, + [SMALL_STATE(4871)] = 133340, + [SMALL_STATE(4872)] = 133353, + [SMALL_STATE(4873)] = 133366, + [SMALL_STATE(4874)] = 133379, + [SMALL_STATE(4875)] = 133392, + [SMALL_STATE(4876)] = 133405, + [SMALL_STATE(4877)] = 133418, + [SMALL_STATE(4878)] = 133431, + [SMALL_STATE(4879)] = 133444, + [SMALL_STATE(4880)] = 133457, + [SMALL_STATE(4881)] = 133470, + [SMALL_STATE(4882)] = 133483, + [SMALL_STATE(4883)] = 133496, + [SMALL_STATE(4884)] = 133509, + [SMALL_STATE(4885)] = 133522, + [SMALL_STATE(4886)] = 133535, + [SMALL_STATE(4887)] = 133548, + [SMALL_STATE(4888)] = 133561, + [SMALL_STATE(4889)] = 133574, + [SMALL_STATE(4890)] = 133587, + [SMALL_STATE(4891)] = 133598, + [SMALL_STATE(4892)] = 133611, + [SMALL_STATE(4893)] = 133624, + [SMALL_STATE(4894)] = 133635, + [SMALL_STATE(4895)] = 133648, + [SMALL_STATE(4896)] = 133661, + [SMALL_STATE(4897)] = 133674, + [SMALL_STATE(4898)] = 133687, + [SMALL_STATE(4899)] = 133700, + [SMALL_STATE(4900)] = 133713, + [SMALL_STATE(4901)] = 133726, + [SMALL_STATE(4902)] = 133739, + [SMALL_STATE(4903)] = 133752, + [SMALL_STATE(4904)] = 133765, + [SMALL_STATE(4905)] = 133778, + [SMALL_STATE(4906)] = 133791, + [SMALL_STATE(4907)] = 133804, + [SMALL_STATE(4908)] = 133817, + [SMALL_STATE(4909)] = 133830, + [SMALL_STATE(4910)] = 133843, + [SMALL_STATE(4911)] = 133856, + [SMALL_STATE(4912)] = 133869, + [SMALL_STATE(4913)] = 133882, + [SMALL_STATE(4914)] = 133895, + [SMALL_STATE(4915)] = 133908, + [SMALL_STATE(4916)] = 133921, + [SMALL_STATE(4917)] = 133932, + [SMALL_STATE(4918)] = 133945, + [SMALL_STATE(4919)] = 133958, + [SMALL_STATE(4920)] = 133971, + [SMALL_STATE(4921)] = 133984, + [SMALL_STATE(4922)] = 133997, + [SMALL_STATE(4923)] = 134010, + [SMALL_STATE(4924)] = 134023, + [SMALL_STATE(4925)] = 134036, + [SMALL_STATE(4926)] = 134049, + [SMALL_STATE(4927)] = 134062, + [SMALL_STATE(4928)] = 134075, + [SMALL_STATE(4929)] = 134088, + [SMALL_STATE(4930)] = 134101, + [SMALL_STATE(4931)] = 134114, + [SMALL_STATE(4932)] = 134127, + [SMALL_STATE(4933)] = 134140, + [SMALL_STATE(4934)] = 134153, + [SMALL_STATE(4935)] = 134166, + [SMALL_STATE(4936)] = 134179, + [SMALL_STATE(4937)] = 134192, + [SMALL_STATE(4938)] = 134203, + [SMALL_STATE(4939)] = 134216, + [SMALL_STATE(4940)] = 134229, + [SMALL_STATE(4941)] = 134242, + [SMALL_STATE(4942)] = 134255, + [SMALL_STATE(4943)] = 134268, + [SMALL_STATE(4944)] = 134281, + [SMALL_STATE(4945)] = 134294, + [SMALL_STATE(4946)] = 134307, + [SMALL_STATE(4947)] = 134320, + [SMALL_STATE(4948)] = 134333, + [SMALL_STATE(4949)] = 134343, + [SMALL_STATE(4950)] = 134353, + [SMALL_STATE(4951)] = 134363, + [SMALL_STATE(4952)] = 134373, + [SMALL_STATE(4953)] = 134383, + [SMALL_STATE(4954)] = 134393, + [SMALL_STATE(4955)] = 134403, + [SMALL_STATE(4956)] = 134413, + [SMALL_STATE(4957)] = 134423, + [SMALL_STATE(4958)] = 134433, + [SMALL_STATE(4959)] = 134443, + [SMALL_STATE(4960)] = 134453, + [SMALL_STATE(4961)] = 134463, + [SMALL_STATE(4962)] = 134473, + [SMALL_STATE(4963)] = 134483, + [SMALL_STATE(4964)] = 134493, + [SMALL_STATE(4965)] = 134503, + [SMALL_STATE(4966)] = 134513, + [SMALL_STATE(4967)] = 134523, + [SMALL_STATE(4968)] = 134533, + [SMALL_STATE(4969)] = 134543, + [SMALL_STATE(4970)] = 134553, + [SMALL_STATE(4971)] = 134563, + [SMALL_STATE(4972)] = 134573, + [SMALL_STATE(4973)] = 134583, + [SMALL_STATE(4974)] = 134593, + [SMALL_STATE(4975)] = 134603, + [SMALL_STATE(4976)] = 134613, + [SMALL_STATE(4977)] = 134623, + [SMALL_STATE(4978)] = 134633, + [SMALL_STATE(4979)] = 134643, + [SMALL_STATE(4980)] = 134653, + [SMALL_STATE(4981)] = 134663, + [SMALL_STATE(4982)] = 134673, + [SMALL_STATE(4983)] = 134683, + [SMALL_STATE(4984)] = 134693, + [SMALL_STATE(4985)] = 134703, + [SMALL_STATE(4986)] = 134713, + [SMALL_STATE(4987)] = 134723, + [SMALL_STATE(4988)] = 134733, + [SMALL_STATE(4989)] = 134743, + [SMALL_STATE(4990)] = 134753, + [SMALL_STATE(4991)] = 134763, + [SMALL_STATE(4992)] = 134773, + [SMALL_STATE(4993)] = 134783, + [SMALL_STATE(4994)] = 134793, + [SMALL_STATE(4995)] = 134803, + [SMALL_STATE(4996)] = 134813, + [SMALL_STATE(4997)] = 134823, + [SMALL_STATE(4998)] = 134833, + [SMALL_STATE(4999)] = 134843, + [SMALL_STATE(5000)] = 134853, + [SMALL_STATE(5001)] = 134863, + [SMALL_STATE(5002)] = 134873, + [SMALL_STATE(5003)] = 134883, + [SMALL_STATE(5004)] = 134893, + [SMALL_STATE(5005)] = 134903, + [SMALL_STATE(5006)] = 134913, + [SMALL_STATE(5007)] = 134923, + [SMALL_STATE(5008)] = 134933, + [SMALL_STATE(5009)] = 134943, + [SMALL_STATE(5010)] = 134953, + [SMALL_STATE(5011)] = 134963, + [SMALL_STATE(5012)] = 134973, + [SMALL_STATE(5013)] = 134983, + [SMALL_STATE(5014)] = 134993, + [SMALL_STATE(5015)] = 135003, + [SMALL_STATE(5016)] = 135013, + [SMALL_STATE(5017)] = 135023, + [SMALL_STATE(5018)] = 135033, + [SMALL_STATE(5019)] = 135043, + [SMALL_STATE(5020)] = 135053, + [SMALL_STATE(5021)] = 135063, + [SMALL_STATE(5022)] = 135073, + [SMALL_STATE(5023)] = 135083, + [SMALL_STATE(5024)] = 135093, + [SMALL_STATE(5025)] = 135103, + [SMALL_STATE(5026)] = 135113, + [SMALL_STATE(5027)] = 135123, + [SMALL_STATE(5028)] = 135133, + [SMALL_STATE(5029)] = 135143, + [SMALL_STATE(5030)] = 135153, + [SMALL_STATE(5031)] = 135163, + [SMALL_STATE(5032)] = 135173, + [SMALL_STATE(5033)] = 135183, + [SMALL_STATE(5034)] = 135193, + [SMALL_STATE(5035)] = 135203, + [SMALL_STATE(5036)] = 135213, + [SMALL_STATE(5037)] = 135223, + [SMALL_STATE(5038)] = 135233, + [SMALL_STATE(5039)] = 135243, + [SMALL_STATE(5040)] = 135253, + [SMALL_STATE(5041)] = 135263, + [SMALL_STATE(5042)] = 135273, + [SMALL_STATE(5043)] = 135283, + [SMALL_STATE(5044)] = 135293, + [SMALL_STATE(5045)] = 135303, + [SMALL_STATE(5046)] = 135313, + [SMALL_STATE(5047)] = 135323, + [SMALL_STATE(5048)] = 135333, + [SMALL_STATE(5049)] = 135343, + [SMALL_STATE(5050)] = 135353, + [SMALL_STATE(5051)] = 135363, + [SMALL_STATE(5052)] = 135373, + [SMALL_STATE(5053)] = 135383, + [SMALL_STATE(5054)] = 135393, + [SMALL_STATE(5055)] = 135403, + [SMALL_STATE(5056)] = 135413, + [SMALL_STATE(5057)] = 135423, + [SMALL_STATE(5058)] = 135433, + [SMALL_STATE(5059)] = 135443, + [SMALL_STATE(5060)] = 135453, + [SMALL_STATE(5061)] = 135463, + [SMALL_STATE(5062)] = 135473, + [SMALL_STATE(5063)] = 135483, + [SMALL_STATE(5064)] = 135493, + [SMALL_STATE(5065)] = 135503, + [SMALL_STATE(5066)] = 135513, + [SMALL_STATE(5067)] = 135523, + [SMALL_STATE(5068)] = 135533, + [SMALL_STATE(5069)] = 135543, + [SMALL_STATE(5070)] = 135553, + [SMALL_STATE(5071)] = 135563, + [SMALL_STATE(5072)] = 135573, + [SMALL_STATE(5073)] = 135583, + [SMALL_STATE(5074)] = 135593, + [SMALL_STATE(5075)] = 135603, + [SMALL_STATE(5076)] = 135613, + [SMALL_STATE(5077)] = 135623, + [SMALL_STATE(5078)] = 135633, + [SMALL_STATE(5079)] = 135643, + [SMALL_STATE(5080)] = 135653, + [SMALL_STATE(5081)] = 135663, + [SMALL_STATE(5082)] = 135673, + [SMALL_STATE(5083)] = 135683, + [SMALL_STATE(5084)] = 135693, + [SMALL_STATE(5085)] = 135703, + [SMALL_STATE(5086)] = 135713, + [SMALL_STATE(5087)] = 135723, + [SMALL_STATE(5088)] = 135733, + [SMALL_STATE(5089)] = 135743, + [SMALL_STATE(5090)] = 135753, + [SMALL_STATE(5091)] = 135763, + [SMALL_STATE(5092)] = 135773, + [SMALL_STATE(5093)] = 135783, + [SMALL_STATE(5094)] = 135793, + [SMALL_STATE(5095)] = 135803, + [SMALL_STATE(5096)] = 135813, + [SMALL_STATE(5097)] = 135823, + [SMALL_STATE(5098)] = 135833, + [SMALL_STATE(5099)] = 135843, + [SMALL_STATE(5100)] = 135853, + [SMALL_STATE(5101)] = 135863, + [SMALL_STATE(5102)] = 135873, + [SMALL_STATE(5103)] = 135883, + [SMALL_STATE(5104)] = 135893, + [SMALL_STATE(5105)] = 135903, + [SMALL_STATE(5106)] = 135913, + [SMALL_STATE(5107)] = 135923, + [SMALL_STATE(5108)] = 135933, + [SMALL_STATE(5109)] = 135943, + [SMALL_STATE(5110)] = 135953, + [SMALL_STATE(5111)] = 135963, + [SMALL_STATE(5112)] = 135973, + [SMALL_STATE(5113)] = 135983, + [SMALL_STATE(5114)] = 135993, + [SMALL_STATE(5115)] = 136003, + [SMALL_STATE(5116)] = 136013, + [SMALL_STATE(5117)] = 136023, + [SMALL_STATE(5118)] = 136033, + [SMALL_STATE(5119)] = 136043, + [SMALL_STATE(5120)] = 136053, + [SMALL_STATE(5121)] = 136063, + [SMALL_STATE(5122)] = 136073, + [SMALL_STATE(5123)] = 136083, + [SMALL_STATE(5124)] = 136093, + [SMALL_STATE(5125)] = 136103, + [SMALL_STATE(5126)] = 136113, + [SMALL_STATE(5127)] = 136123, + [SMALL_STATE(5128)] = 136133, + [SMALL_STATE(5129)] = 136143, + [SMALL_STATE(5130)] = 136153, + [SMALL_STATE(5131)] = 136163, + [SMALL_STATE(5132)] = 136173, + [SMALL_STATE(5133)] = 136183, + [SMALL_STATE(5134)] = 136193, + [SMALL_STATE(5135)] = 136203, + [SMALL_STATE(5136)] = 136213, + [SMALL_STATE(5137)] = 136223, + [SMALL_STATE(5138)] = 136233, + [SMALL_STATE(5139)] = 136243, + [SMALL_STATE(5140)] = 136253, + [SMALL_STATE(5141)] = 136263, + [SMALL_STATE(5142)] = 136273, + [SMALL_STATE(5143)] = 136283, + [SMALL_STATE(5144)] = 136293, + [SMALL_STATE(5145)] = 136303, + [SMALL_STATE(5146)] = 136313, + [SMALL_STATE(5147)] = 136323, + [SMALL_STATE(5148)] = 136333, + [SMALL_STATE(5149)] = 136343, + [SMALL_STATE(5150)] = 136353, + [SMALL_STATE(5151)] = 136363, + [SMALL_STATE(5152)] = 136373, + [SMALL_STATE(5153)] = 136383, + [SMALL_STATE(5154)] = 136393, + [SMALL_STATE(5155)] = 136403, + [SMALL_STATE(5156)] = 136413, + [SMALL_STATE(5157)] = 136423, + [SMALL_STATE(5158)] = 136433, + [SMALL_STATE(5159)] = 136443, + [SMALL_STATE(5160)] = 136453, + [SMALL_STATE(5161)] = 136463, + [SMALL_STATE(5162)] = 136473, + [SMALL_STATE(5163)] = 136483, + [SMALL_STATE(5164)] = 136493, + [SMALL_STATE(5165)] = 136503, + [SMALL_STATE(5166)] = 136513, + [SMALL_STATE(5167)] = 136523, + [SMALL_STATE(5168)] = 136533, + [SMALL_STATE(5169)] = 136543, + [SMALL_STATE(5170)] = 136553, + [SMALL_STATE(5171)] = 136563, + [SMALL_STATE(5172)] = 136573, + [SMALL_STATE(5173)] = 136583, + [SMALL_STATE(5174)] = 136593, + [SMALL_STATE(5175)] = 136603, + [SMALL_STATE(5176)] = 136613, + [SMALL_STATE(5177)] = 136623, + [SMALL_STATE(5178)] = 136633, + [SMALL_STATE(5179)] = 136643, + [SMALL_STATE(5180)] = 136653, + [SMALL_STATE(5181)] = 136663, + [SMALL_STATE(5182)] = 136673, + [SMALL_STATE(5183)] = 136683, + [SMALL_STATE(5184)] = 136693, + [SMALL_STATE(5185)] = 136703, + [SMALL_STATE(5186)] = 136713, + [SMALL_STATE(5187)] = 136723, + [SMALL_STATE(5188)] = 136733, + [SMALL_STATE(5189)] = 136743, + [SMALL_STATE(5190)] = 136753, + [SMALL_STATE(5191)] = 136763, + [SMALL_STATE(5192)] = 136773, + [SMALL_STATE(5193)] = 136783, + [SMALL_STATE(5194)] = 136793, + [SMALL_STATE(5195)] = 136803, + [SMALL_STATE(5196)] = 136813, + [SMALL_STATE(5197)] = 136823, + [SMALL_STATE(5198)] = 136833, + [SMALL_STATE(5199)] = 136843, + [SMALL_STATE(5200)] = 136853, + [SMALL_STATE(5201)] = 136863, + [SMALL_STATE(5202)] = 136873, + [SMALL_STATE(5203)] = 136883, + [SMALL_STATE(5204)] = 136893, + [SMALL_STATE(5205)] = 136903, + [SMALL_STATE(5206)] = 136913, + [SMALL_STATE(5207)] = 136923, + [SMALL_STATE(5208)] = 136933, + [SMALL_STATE(5209)] = 136943, + [SMALL_STATE(5210)] = 136953, + [SMALL_STATE(5211)] = 136963, + [SMALL_STATE(5212)] = 136973, + [SMALL_STATE(5213)] = 136983, + [SMALL_STATE(5214)] = 136993, + [SMALL_STATE(5215)] = 137003, + [SMALL_STATE(5216)] = 137013, + [SMALL_STATE(5217)] = 137023, + [SMALL_STATE(5218)] = 137033, + [SMALL_STATE(5219)] = 137043, + [SMALL_STATE(5220)] = 137053, + [SMALL_STATE(5221)] = 137063, + [SMALL_STATE(5222)] = 137073, + [SMALL_STATE(5223)] = 137083, + [SMALL_STATE(5224)] = 137093, + [SMALL_STATE(5225)] = 137103, + [SMALL_STATE(5226)] = 137113, + [SMALL_STATE(5227)] = 137123, + [SMALL_STATE(5228)] = 137133, + [SMALL_STATE(5229)] = 137143, + [SMALL_STATE(5230)] = 137153, + [SMALL_STATE(5231)] = 137163, + [SMALL_STATE(5232)] = 137173, + [SMALL_STATE(5233)] = 137183, + [SMALL_STATE(5234)] = 137193, + [SMALL_STATE(5235)] = 137203, + [SMALL_STATE(5236)] = 137213, + [SMALL_STATE(5237)] = 137223, + [SMALL_STATE(5238)] = 137233, + [SMALL_STATE(5239)] = 137243, + [SMALL_STATE(5240)] = 137253, + [SMALL_STATE(5241)] = 137263, + [SMALL_STATE(5242)] = 137273, + [SMALL_STATE(5243)] = 137283, + [SMALL_STATE(5244)] = 137293, + [SMALL_STATE(5245)] = 137303, + [SMALL_STATE(5246)] = 137313, + [SMALL_STATE(5247)] = 137323, + [SMALL_STATE(5248)] = 137333, + [SMALL_STATE(5249)] = 137343, + [SMALL_STATE(5250)] = 137353, + [SMALL_STATE(5251)] = 137363, + [SMALL_STATE(5252)] = 137373, + [SMALL_STATE(5253)] = 137383, + [SMALL_STATE(5254)] = 137393, + [SMALL_STATE(5255)] = 137403, + [SMALL_STATE(5256)] = 137413, + [SMALL_STATE(5257)] = 137423, + [SMALL_STATE(5258)] = 137433, + [SMALL_STATE(5259)] = 137443, + [SMALL_STATE(5260)] = 137453, + [SMALL_STATE(5261)] = 137463, + [SMALL_STATE(5262)] = 137473, + [SMALL_STATE(5263)] = 137483, + [SMALL_STATE(5264)] = 137493, + [SMALL_STATE(5265)] = 137503, + [SMALL_STATE(5266)] = 137513, + [SMALL_STATE(5267)] = 137523, + [SMALL_STATE(5268)] = 137533, + [SMALL_STATE(5269)] = 137543, + [SMALL_STATE(5270)] = 137553, + [SMALL_STATE(5271)] = 137563, + [SMALL_STATE(5272)] = 137573, + [SMALL_STATE(5273)] = 137583, + [SMALL_STATE(5274)] = 137593, + [SMALL_STATE(5275)] = 137603, + [SMALL_STATE(5276)] = 137613, + [SMALL_STATE(5277)] = 137623, + [SMALL_STATE(5278)] = 137633, + [SMALL_STATE(5279)] = 137643, + [SMALL_STATE(5280)] = 137653, + [SMALL_STATE(5281)] = 137663, + [SMALL_STATE(5282)] = 137673, + [SMALL_STATE(5283)] = 137683, + [SMALL_STATE(5284)] = 137693, + [SMALL_STATE(5285)] = 137703, + [SMALL_STATE(5286)] = 137713, + [SMALL_STATE(5287)] = 137723, + [SMALL_STATE(5288)] = 137733, + [SMALL_STATE(5289)] = 137743, + [SMALL_STATE(5290)] = 137753, + [SMALL_STATE(5291)] = 137763, + [SMALL_STATE(5292)] = 137773, + [SMALL_STATE(5293)] = 137783, + [SMALL_STATE(5294)] = 137793, + [SMALL_STATE(5295)] = 137803, + [SMALL_STATE(5296)] = 137813, + [SMALL_STATE(5297)] = 137823, + [SMALL_STATE(5298)] = 137833, + [SMALL_STATE(5299)] = 137843, + [SMALL_STATE(5300)] = 137853, + [SMALL_STATE(5301)] = 137863, + [SMALL_STATE(5302)] = 137873, + [SMALL_STATE(5303)] = 137883, + [SMALL_STATE(5304)] = 137893, + [SMALL_STATE(5305)] = 137903, + [SMALL_STATE(5306)] = 137913, + [SMALL_STATE(5307)] = 137923, + [SMALL_STATE(5308)] = 137933, + [SMALL_STATE(5309)] = 137943, + [SMALL_STATE(5310)] = 137953, + [SMALL_STATE(5311)] = 137963, + [SMALL_STATE(5312)] = 137973, + [SMALL_STATE(5313)] = 137983, + [SMALL_STATE(5314)] = 137993, + [SMALL_STATE(5315)] = 138003, + [SMALL_STATE(5316)] = 138013, + [SMALL_STATE(5317)] = 138023, + [SMALL_STATE(5318)] = 138033, + [SMALL_STATE(5319)] = 138043, + [SMALL_STATE(5320)] = 138053, + [SMALL_STATE(5321)] = 138063, + [SMALL_STATE(5322)] = 138073, + [SMALL_STATE(5323)] = 138083, + [SMALL_STATE(5324)] = 138093, + [SMALL_STATE(5325)] = 138103, + [SMALL_STATE(5326)] = 138113, + [SMALL_STATE(5327)] = 138123, + [SMALL_STATE(5328)] = 138133, + [SMALL_STATE(5329)] = 138143, + [SMALL_STATE(5330)] = 138153, + [SMALL_STATE(5331)] = 138163, + [SMALL_STATE(5332)] = 138173, + [SMALL_STATE(5333)] = 138183, + [SMALL_STATE(5334)] = 138193, + [SMALL_STATE(5335)] = 138203, + [SMALL_STATE(5336)] = 138213, + [SMALL_STATE(5337)] = 138223, + [SMALL_STATE(5338)] = 138233, + [SMALL_STATE(5339)] = 138243, + [SMALL_STATE(5340)] = 138253, + [SMALL_STATE(5341)] = 138263, + [SMALL_STATE(5342)] = 138273, + [SMALL_STATE(5343)] = 138283, + [SMALL_STATE(5344)] = 138293, + [SMALL_STATE(5345)] = 138303, + [SMALL_STATE(5346)] = 138313, + [SMALL_STATE(5347)] = 138323, + [SMALL_STATE(5348)] = 138333, + [SMALL_STATE(5349)] = 138343, + [SMALL_STATE(5350)] = 138353, + [SMALL_STATE(5351)] = 138363, + [SMALL_STATE(5352)] = 138373, + [SMALL_STATE(5353)] = 138383, + [SMALL_STATE(5354)] = 138393, + [SMALL_STATE(5355)] = 138403, + [SMALL_STATE(5356)] = 138413, + [SMALL_STATE(5357)] = 138423, + [SMALL_STATE(5358)] = 138433, + [SMALL_STATE(5359)] = 138443, + [SMALL_STATE(5360)] = 138453, + [SMALL_STATE(5361)] = 138463, + [SMALL_STATE(5362)] = 138473, + [SMALL_STATE(5363)] = 138483, + [SMALL_STATE(5364)] = 138493, + [SMALL_STATE(5365)] = 138503, + [SMALL_STATE(5366)] = 138513, + [SMALL_STATE(5367)] = 138523, + [SMALL_STATE(5368)] = 138533, + [SMALL_STATE(5369)] = 138543, + [SMALL_STATE(5370)] = 138553, + [SMALL_STATE(5371)] = 138563, + [SMALL_STATE(5372)] = 138573, + [SMALL_STATE(5373)] = 138583, + [SMALL_STATE(5374)] = 138593, + [SMALL_STATE(5375)] = 138603, + [SMALL_STATE(5376)] = 138613, + [SMALL_STATE(5377)] = 138623, + [SMALL_STATE(5378)] = 138633, + [SMALL_STATE(5379)] = 138643, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3722), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1775), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3876), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3877), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3878), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2897), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1680), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1897), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4447), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1767), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1768), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4023), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4468), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1230), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1259), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4472), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1349), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1112), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1113), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1114), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4954), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(367), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(33), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5159), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3537), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2268), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3547), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(119), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(695), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4920), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3955), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5096), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5097), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3913), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3781), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1454), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5094), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3725), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1753), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3881), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3882), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3815), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2897), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1680), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1897), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4447), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1767), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1768), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4023), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4468), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1230), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(963), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3920), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1349), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1112), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1113), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1114), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4954), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(367), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(33), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5159), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3537), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2259), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3547), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(119), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(695), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4920), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3955), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5096), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5097), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3913), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3781), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1453), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5094), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3886), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1785), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4037), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4038), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4039), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2928), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1709), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1918), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4675), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1762), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1773), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4050), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4600), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1141), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(918), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5198), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4164), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1360), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5198), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1119), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1120), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1121), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5195), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(340), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(28), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3746), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5318), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3667), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2295), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3530), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3689), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(103), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(103), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(117), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(681), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5068), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(946), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4054), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5255), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5256), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4108), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3939), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1461), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5253), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3883), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1781), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4033), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4034), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4035), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2928), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1709), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1918), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4675), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1762), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1773), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4050), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4600), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1141), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1269), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5198), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4531), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1360), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5198), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1119), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1120), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1121), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5195), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(340), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(28), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3746), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5318), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3667), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2297), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3530), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3689), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(103), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(103), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(117), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(681), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5068), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(946), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4054), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5255), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5256), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4108), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3939), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1458), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5253), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 30), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 30), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 30), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 30), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2897), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4472), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5159), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2268), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5096), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5097), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1454), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5094), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2897), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(962), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3920), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5159), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2259), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5096), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5097), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1453), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5094), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 20), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 20), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 20), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 20), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 28), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 28), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 29), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 29), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3415), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 45), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 45), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 32), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 32), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 32), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 32), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4087), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2928), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4164), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1360), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1120), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3762), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5318), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3667), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2295), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(136), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5068), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5255), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), + [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4108), + [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3939), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1461), + [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5253), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), + [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4087), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2928), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1268), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4531), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1360), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1120), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3762), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5318), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3667), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(136), + [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5068), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5255), + [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4108), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3939), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1458), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5253), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 22), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 22), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3601), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3617), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 22), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 22), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 31), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 31), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3574), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 30), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 30), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 98), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 98), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(691), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3904), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4262), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4584), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(347), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(30), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3586), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(7), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3409), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3410), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4862), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3360), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4163), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3903), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5058), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4263), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3966), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5108), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5109), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3956), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3819), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(376), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4284), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5106), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 74), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 74), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 72), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 72), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 73), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 73), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 75), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 75), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 21), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 21), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 28), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 28), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 45), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 45), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 113), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 113), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 114), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 114), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 121), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 121), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 98), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 98), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 154), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 154), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 3), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 3), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2829), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5100), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4700), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(51), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4193), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4833), - [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4862), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1912), - [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(695), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4036), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4921), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4922), - [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3913), - [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3781), - [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(456), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4916), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2829), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5100), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4700), - [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(51), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4313), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4833), - [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4862), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1912), - [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(695), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4036), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4921), - [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4922), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3913), - [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3781), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(456), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4916), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(691), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(965), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 111), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 111), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 57), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 57), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 71), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 71), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 111), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 111), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 57), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 57), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 29), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 29), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(966), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 188), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 188), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), SHIFT(691), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), SHIFT(691), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), SHIFT(691), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), SHIFT(691), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [2924] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2928] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1359), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3936), - [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), - [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(971), - [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4254), - [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4593), - [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3405), - [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), - [3116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), - [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), - [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [3131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4921), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), - [3146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4916), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1380), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4969), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1939), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4969), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1939), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 48), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 48), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 101), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 101), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(696), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 79), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 79), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4161), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4318), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4760), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(344), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(31), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3784), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3648), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(35), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3650), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5117), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3384), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3384), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3534), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4383), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4148), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5212), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4320), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4069), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5264), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5265), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4055), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3967), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(399), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4300), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5262), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3591), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 75), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 75), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 77), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 77), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 78), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 78), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 105), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 105), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 105), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 105), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 30), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 30), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 48), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 48), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 124), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 124), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 101), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 101), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4940), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4940), + [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2926), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5355), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4833), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(51), + [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4394), + [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5336), + [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(35), + [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5117), + [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1905), + [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1905), + [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1920), + [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(699), + [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4056), + [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5069), + [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5070), + [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4108), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3939), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(459), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5064), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4940), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4940), + [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2926), + [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5355), + [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4833), + [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(51), + [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4463), + [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5336), + [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(35), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5117), + [2476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1905), + [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1905), + [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1920), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(699), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4056), + [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5069), + [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5070), + [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4108), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3939), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(459), + [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5064), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(696), + [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1114), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 60), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 60), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 119), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 119), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 114), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 114), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 164), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 164), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 60), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 60), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 31), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 31), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1132), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 114), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 114), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), SHIFT(696), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), SHIFT(696), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), SHIFT(696), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), SHIFT(696), + [2944] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2948] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1376), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4084), + [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4085), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4159), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(973), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4325), + [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4668), + [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3572), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3573), + [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3414), + [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3414), + [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), + [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [3237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5068), + [3243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4169), + [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), + [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), + [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5070), + [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5064), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(696), + [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1397), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5129), + [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5129), + [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5126), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1934), + [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1934), + [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1960), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5129), + [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5129), + [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5126), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1934), + [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1934), + [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1960), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1416), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), + [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3904), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4262), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4584), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1125), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(30), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4193), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(458), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3409), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3410), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3360), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4163), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3903), - [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5058), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4685), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3966), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5108), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5109), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4284), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5106), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 10), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3653] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 32), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 47), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), REDUCE(sym_record_body, 2, 0, 18), - [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 48), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 103), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1489), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 18), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 103), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), REDUCE(sym_record_body, 3, 0, 47), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 48), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3483), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4978), - [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4978), - [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4454), - [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1893), - [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1939), - [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(3966), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5108), - [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5109), - [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5106), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [4064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(3888), - [4067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(3739), - [4070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(3740), - [4073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(4795), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(4306), - [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(3924), - [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(3925), - [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(5189), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1903), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 88), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 88), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 83), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 88), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 171), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 88), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 83), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 171), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), - [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 202), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 202), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [4313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 90), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), - [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2134), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 20), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 20), - [4369] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 174), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 103), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 18), - [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2113), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2112), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 47), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 48), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 137), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 138), - [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), - [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2136), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 85), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 85), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 86), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 86), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 87), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 87), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 34), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 34), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2219), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2239), - [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), - [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2244), - [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), - [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 103), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), - [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 18), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 47), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 48), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2251), - [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2248), - [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), - [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5062), - [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(4927), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(4861), - [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3841), - [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3842), - [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3611), - [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3611), - [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3723), - [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(4928), - [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3966), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5108), - [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5109), - [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3964), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5106), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2385), - [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 165), - [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 218), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 165), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 198), - [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 165), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 197), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2439), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [5091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 71), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 39), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 39), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 4), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 4), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 39), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 39), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 72), - [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 20), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 20), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3422), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 110), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 110), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 52), - [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 52), - [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 62), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 62), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 110), - [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 110), - [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), - [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 52), - [5386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 52), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 212), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 182), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 183), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 212), - [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), - [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), - [5430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 212), SHIFT(691), - [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), SHIFT(691), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), - [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 146), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), - [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), - [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), - [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 148), - [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(691), - [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), SHIFT(691), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 213), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 188), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 182), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), - [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 117), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 118), - [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 182), SHIFT(691), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), SHIFT(691), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 105), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 106), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), - [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), - [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), SHIFT(691), - [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 24), - [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(691), - [5534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(691), - [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), SHIFT(691), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 23), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 24), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), - [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), - [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), SHIFT(691), - [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), SHIFT(691), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), - [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), - [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 119), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 71), - [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(691), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [5579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 23), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), SHIFT(691), - [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 24), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 105), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 106), - [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 23), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [5615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(691), - [5620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 20), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 20), - [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 117), - [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 118), - [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), SHIFT(691), - [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 119), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 71), - [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(691), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 215), - [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 215), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), - [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5103), - [5670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4783), - [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5166), - [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5171), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 26), - [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 27), - [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(691), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), - [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(103), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 190), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 190), - [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 61), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 151), - [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 151), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 131), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 131), - [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 61), - [5787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(691), - [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), SHIFT(691), - [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), - [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(128), - [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [5806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(201), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), SHIFT(691), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), - [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), SHIFT(691), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [5835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), SHIFT(691), - [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), - [5854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 85), - [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 85), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 61), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 26), - [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(265), - [5873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3736), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), SHIFT(691), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), - [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 123), - [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 123), - [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 63), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 63), - [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), - [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), - [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(691), - [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 13), - [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 82), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 82), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 20), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 20), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 27), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 170), - [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 170), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 179), SHIFT(691), - [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 179), - [5955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 26), - [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 27), - [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), SHIFT(691), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), SHIFT(691), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), SHIFT(691), - [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), - [5988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(120), - [5991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(120), - [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 179), SHIFT(691), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 179), - [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(205), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3789), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 83), - [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 83), - [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(198), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3104), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), SHIFT(691), - [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), SHIFT(691), - [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), - [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 34), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 34), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 43), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 168), - [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 168), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 169), - [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 169), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 92), - [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 93), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [6095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 51), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 51), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 96), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 84), - [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 84), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 142), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 195), - [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 195), - [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 199), - [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 199), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 200), - [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 200), - [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 131), - [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 131), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 219), - [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 219), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 96), - [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 141), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 93), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(242), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(246), - [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(248), - [6200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(251), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [6207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 142), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 92), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 150), - [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 150), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 228), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 229), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 50), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 108), - [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 108), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 167), - [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 167), - [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 109), - [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 109), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 20), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 20), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 20), - [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 20), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 232), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 233), - [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 180), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), - [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), - [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), - [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), - [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 19), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 240), - [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 242), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), - [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 181), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 243), - [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 201), - [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 201), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), - [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), - [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 248), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 249), - [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 132), - [6371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 132), - [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3356), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 220), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 204), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 205), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 221), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 53), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 53), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), - [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(217), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(221), - [6414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(223), - [6417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(226), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), - [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), - [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), - [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 210), - [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 211), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 141), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), - [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3417), - [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 52), - [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 52), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 110), - [6530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 110), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 5), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [6944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [6947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [6953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 176), - [6965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3402), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [7048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3403), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [7165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [7179] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7183] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [7202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 176), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 78), - [7272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 153), - [7311] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 47), - [7317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), SHIFT(2248), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [7328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [7332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [7337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [7339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [7360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(81), - [7363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4195), - [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [7390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 12), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 15), - [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), - [7442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 18), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 33), - [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 40), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [7554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(80), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), - [7559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4530), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [7572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 107), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 107), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [7582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4268), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [7589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 152), - [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 152), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [7633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 112), - [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 112), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [7651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), - [7654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 177), - [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 177), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [7662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 178), - [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 178), - [7666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3844), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 193), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), - [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [7687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 89), - [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 136), - [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 192), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [7706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [7708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4502), - [7711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 216), - [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 217), - [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 91), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 83), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 83), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 230), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 231), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 162), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 241), - [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 163), - [7753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 203), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [7767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4612), - [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 103), - [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [7792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 46), - [7794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 46), - [7796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 44), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), - [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [7808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), - [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), - [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 71), - [7818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(194), - [7821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 176), - [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 129), - [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [7833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), - [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 103), - [7845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 99), - [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 173), - [7849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 100), - [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [7853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 166), - [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 166), - [7857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 8), - [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 8), - [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 8), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 11), - [7871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 11), - [7875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), - [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 140), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 77), - [7885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 14), - [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4532), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [7892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 175), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 176), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 79), - [7904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 95), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 80), - [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 48), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [7916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), - [7918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 48), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 94), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 81), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 31), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 128), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 130), - [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 35), - [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 36), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 37), - [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 133), - [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 134), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 191), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 42), - [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [7962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), - [7965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 135), - [7972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 143), - [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 7), - [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 8), - [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [7990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 138), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [8002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 47), - [8004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 48), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 8), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 58), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [8022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 197), - [8024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 198), - [8026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 218), - [8028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 202), - [8030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), REDUCE(sym_record_body, 2, 0, 47), - [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), - [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 71), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [8047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 84), - [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 84), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), - [8057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), SHIFT_REPEAT(4411), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [8066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 175), - [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 176), - [8070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 83), - [8072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 171), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [8078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 88), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [8094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 203), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [8098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 176), - [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 94), - [8102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 90), - [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 202), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 97), - [8112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 165), - [8114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4640), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [8119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), REDUCE(sym_record_body, 1, 0, 18), - [8122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 88), - [8124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), - [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), - [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 103), - [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), - [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 83), - [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 18), - [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 171), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 174), - [8142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 99), - [8144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 143), - [8146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 46), - [8148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 100), - [8150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 47), - [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), - [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 80), - [8156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 48), - [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 101), SHIFT_REPEAT(380), - [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 81), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [8169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 103), - [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 31), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [8185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [8193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 137), - [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 128), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 133), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 8), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4683), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [8230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4642), - [8233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 132), - [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 132), - [8237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [8241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 16), - [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 16), - [8257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [8265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 196), - [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 196), - [8269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 5), - [8271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), - [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [8282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [8290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4788), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [8295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 69), - [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 69), - [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [8313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 177), - [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 177), - [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 120), - [8321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 178), - [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 178), - [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 172), - [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 172), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 83), - [8643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 88), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [8729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 83), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [8955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [8957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [8963] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [8971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1422), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4161), + [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4318), + [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4760), + [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1134), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(31), + [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4394), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(480), + [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3648), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3650), + [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3384), + [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3384), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3534), + [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4383), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4148), + [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5212), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4901), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4069), + [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5264), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5265), + [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4300), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5262), + [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 12), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 34), + [3669] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1510), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 20), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 51), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 106), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 106), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 50), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), + [3742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), REDUCE(sym_record_body, 2, 0, 20), + [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), REDUCE(sym_record_body, 3, 0, 50), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1521), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5047), + [4057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5047), + [4060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(4546), + [4063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(1934), + [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(1960), + [4069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(4069), + [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5264), + [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5265), + [4078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5262), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3612), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [4144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [4153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 174), SHIFT_REPEAT(2582), + [4156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 174), SHIFT_REPEAT(2511), + [4159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 174), SHIFT_REPEAT(2512), + [4162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 174), SHIFT_REPEAT(5338), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [4183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 174), SHIFT_REPEAT(4215), + [4186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 174), SHIFT_REPEAT(4096), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 174), SHIFT_REPEAT(4100), + [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 174), SHIFT_REPEAT(5366), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1915), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 91), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 205), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2135), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 86), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 91), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 91), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 174), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 91), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 205), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 86), + [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 174), + [4403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 177), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), + [4424] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2152), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2149), + [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 50), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 140), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 93), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 141), + [4522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 106), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 22), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 22), + [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2148), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), + [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 20), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [4597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2200), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2192), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2246), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [4680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 37), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 37), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 88), + [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 88), + [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 90), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 90), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), + [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2273), + [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2267), + [4802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), + [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 106), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), + [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 20), + [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 50), + [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 51), + [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2279), + [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2284), + [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(4958), + [4828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5169), + [4831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5033), + [4834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(3959), + [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(3960), + [4840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(3739), + [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(3739), + [4846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(3835), + [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5170), + [4852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(4069), + [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5264), + [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5265), + [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(4102), + [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5262), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [4913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3644), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 168), + [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 221), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 168), + [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2435), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 200), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 201), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 168), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3657), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [5122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2489), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3614), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 74), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 42), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 85), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 5), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3603), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 42), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 58), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [5306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 58), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 75), + [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [5340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 22), + [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 22), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 202), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 203), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [5370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3611), + [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 134), + [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 222), + [5381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3615), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 198), + [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 87), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 113), + [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 113), + [5454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [5465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 65), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 65), + [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), + [5477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), + [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), + [5481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [5499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 113), + [5501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 113), + [5503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 58), + [5505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 58), + [5507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 151), + [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), + [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 74), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), + [5523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(696), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), + [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), + [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), + [5552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), SHIFT(696), + [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), SHIFT(696), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), + [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 149), + [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 217), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), + [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(696), + [5577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 217), SHIFT(696), + [5580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), SHIFT(696), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 149), + [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 122), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 74), + [5597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(696), + [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 149), SHIFT(696), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 122), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 215), + [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 216), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 217), + [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 191), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 151), + [5629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(696), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 151), SHIFT(696), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 109), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 8), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 2, 0, 10), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 25), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 26), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 109), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 120), + [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 25), + [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), + [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 120), SHIFT(696), + [5704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), SHIFT(696), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), + [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), SHIFT(696), + [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), SHIFT(696), + [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 26), + [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1345), + [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), + [5729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), + [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), + [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 120), + [5742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 71), + [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 71), + [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(696), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 120), + [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), + [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 25), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 22), + [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 22), + [5767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(696), + [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 26), + [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 86), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 134), + [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 173), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 28), + [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 171), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 218), + [5790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 218), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 172), + [5798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(696), + [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 5), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 154), + [5837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 154), + [5839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3360), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [5844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5026), + [5847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4904), + [5850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5357), + [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), + [5856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 64), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(696), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 42), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 42), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 193), + [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 193), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), + [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(115), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [5954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 29), + [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(260), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 37), + [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 37), + [5965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3324), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), SHIFT(696), + [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [5981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 107), SHIFT(696), + [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 107), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), SHIFT(696), + [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 134), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [5999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), SHIFT(696), + [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 28), + [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 86), + [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 29), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [6012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 85), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 15), + [6020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(696), + [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 147), SHIFT(696), + [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 147), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), SHIFT(696), + [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), SHIFT(696), + [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 182), SHIFT(696), + [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 182), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 147), SHIFT(696), + [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 147), + [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 126), + [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 126), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [6066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 107), SHIFT(696), + [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 107), + [6071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3998), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), SHIFT(696), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), + [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), + [6087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(130), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 173), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 135), + [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 105), + [6096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 105), + [6098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(254), + [6115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 64), + [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 29), + [6123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(696), + [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [6128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3918), + [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 28), + [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 64), + [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), + [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), + [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 170), + [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 88), + [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 88), + [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 22), + [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 22), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 182), SHIFT(696), + [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 182), + [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(263), + [6193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(129), + [6196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(129), + [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), + [6201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(258), + [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 204), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 105), + [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 105), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 3, 0, 36), + [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 145), + [6230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [6241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 96), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 46), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 99), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 95), + [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 96), + [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 99), + [6275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [6277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [6279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), + [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 198), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 202), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 203), + [6301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 134), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 222), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [6319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 87), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [6333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(231), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(235), + [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(237), + [6344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(240), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), + [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 3), + [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 144), + [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [6375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 172), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 3), + [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), + [6391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 21), + [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), + [6395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 57), + [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 57), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), + [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 248), + [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 111), + [6419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 111), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 59), + [6429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 59), + [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 249), + [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 53), + [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 112), + [6437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 112), + [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), + [6441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), + [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [6445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [6447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 153), + [6449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 153), + [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 214), + [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 183), + [6455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3532), + [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 184), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 250), + [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 251), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [6481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 170), + [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 252), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 212), + [6521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), + [6523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 204), + [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), + [6527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 171), + [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), + [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(208), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [6558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(212), + [6561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(213), + [6564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(216), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), + [6569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 135), + [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), + [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), + [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), + [6577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), + [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), + [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 228), + [6587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), + [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 230), + [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 231), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 232), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), + [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 240), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 213), + [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 241), + [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 242), + [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 243), + [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), + [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), + [6635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3598), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), + [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 58), + [6662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 58), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 113), + [6704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 113), + [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3643), + [6711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [7113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 179), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [7133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [7169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [7236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [7338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3616), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [7351] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7355] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [7367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [7406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 179), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [7436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 50), + [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), SHIFT(2284), + [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 156), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [7447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [7451] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3594), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [7462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5195), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [7469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(81), + [7472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4414), + [7475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [7479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), + [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [7502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [7504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [7542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [7544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [7552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [7562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 20), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 35), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 43), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 81), + [7658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [7701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 180), + [7716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 180), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [7720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 181), + [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 181), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [7742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3963), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [7753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 110), + [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 110), + [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [7777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4322), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [7808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 155), + [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 155), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [7824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 115), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 115), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [7838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(77), + [7841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), + [7843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4586), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 132), + [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 139), + [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 143), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [7866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 47), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [7870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 49), + [7872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 49), + [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 206), + [7876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 16), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [7886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 106), + [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 165), + [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 166), + [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 167), + [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 179), + [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3610), + [7899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 106), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 176), + [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [7909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 169), + [7911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 169), + [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), + [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 9), + [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 9), + [7931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 9), + [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), + [7935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 194), + [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), + [7941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 196), + [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 178), + [7945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 179), + [7947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 51), + [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 197), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [7955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), + [7957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 105), + [7959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 105), + [7961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 51), + [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(5173), + [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), + [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 219), + [7975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 146), + [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 220), + [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 233), + [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 33), + [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 234), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 244), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 39), + [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 40), + [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 41), + [8001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 44), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 45), + [8015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [8021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 131), + [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [8029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 133), + [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [8037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4568), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [8042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), + [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [8050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(194), + [8053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4528), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 136), + [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 74), + [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 137), + [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 80), + [8092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 82), + [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 83), + [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 84), + [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 102), + [8102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 103), + [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 105), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 105), + [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 92), + [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 97), + [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 94), + [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [8124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 86), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 86), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 98), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [8144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4574), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [8153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 20), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 50), + [8159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [8163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 91), + [8165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [8169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 200), + [8171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 201), + [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 9), + [8175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 86), + [8177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 106), + [8179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 178), + [8181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 174), + [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 9), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 33), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [8195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), + [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 100), + [8211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 179), + [8213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), REDUCE(sym_record_body, 2, 0, 50), + [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), + [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), + [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 205), + [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), + [8230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 61), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [8238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 102), + [8240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 86), + [8242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 91), + [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 174), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [8252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 177), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [8258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 140), + [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 141), + [8262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 93), + [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 9), + [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [8280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4890), + [8283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 104), SHIFT_REPEAT(382), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 74), + [8298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 87), + [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 87), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [8304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 205), + [8306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [8310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 20), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [8316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 49), + [8318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 106), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [8324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 146), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [8330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 206), + [8332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 179), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [8336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 103), + [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 83), + [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 84), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [8348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 97), + [8350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), REDUCE(sym_record_body, 1, 0, 20), + [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 131), + [8357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 136), + [8359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 168), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [8363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 221), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [8373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 125), + [8375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 125), SHIFT_REPEAT(4598), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [8384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 50), + [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 180), + [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 180), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 181), + [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 181), + [8398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [8402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 72), + [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 72), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 123), + [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [8422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [8427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4815), + [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 135), + [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 135), + [8434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 175), + [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 175), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [8442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), + [8444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [8462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [8470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 19), + [8472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 19), + [8474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4831), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [8495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4791), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [8500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 199), + [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 199), + [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [8526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), + [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 91), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [8746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 86), + [8748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [8828] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 86), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [8856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [8890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [8896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [8904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [8954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [9234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/stmt/let.nu b/test/corpus/stmt/let.nu index 101e210f..254c3738 100644 --- a/test/corpus/stmt/let.nu +++ b/test/corpus/stmt/let.nu @@ -100,3 +100,26 @@ let y: oneof> = 1 value: (pipeline (pipe_element (val_number))))) + +===== +let-006-shortcut +===== + +1 | let foo: int +let bar + +----- + +(nu_script + (pipeline + (pipe_element + (val_number)) + (pipe_element + (stmt_let + var_name: (identifier) + type: (param_type + type: (flat_type))))) + (pipeline + (pipe_element + (stmt_let + var_name: (identifier)))))